import { StackedMarqueeSection, type MarqueeRow } from "@/components/layout/stacked-marquee-section"; import { SectionHeading } from "./section-heading"; import type { MarqueeSectionCopy } from "./types"; type MarqueeSectionProps = { copy: MarqueeSectionCopy; rows: MarqueeRow[]; }; export function MarqueeSection({ copy, rows }: MarqueeSectionProps) { return (
{/* Full-bleed band: breaks out of the centered container to span the entire site width instead of sitting inside a card. */}
); }