import type { RiftPattern } from "@/components/brand/rift-patterns"; import { cn } from "@/lib/utils"; type Props = { pattern: RiftPattern; inverse?: boolean; }; /** Light section-local accent — does not compete with page spine */ export function RiftSectionAccent({ pattern, inverse }: Props) { if (pattern === "none") return null; const mainStroke = inverse ? "rgba(255,255,255,0.25)" : "rgba(26,92,56,0.2)"; const softStroke = inverse ? "rgba(255,255,255,0.12)" : "rgba(26,92,56,0.1)"; if (pattern === "whisper") { return (
); } if (pattern === "vein-left") { return ( ); } if (pattern === "vein-right") { return ( ); } if (pattern === "arc-top") { return ( ); } if (pattern === "arc-bottom") { return ( ); } if (pattern === "fork") { return ( ); } return null; }