import Link from "next/link"; import { ArrowRight } from "lucide-react"; import { site } from "@/content/site"; import { Button } from "@/components/ui/button"; import { cn } from "@/lib/utils"; type Props = { className?: string; /** Full-width style for mobile sheet */ fullWidth?: boolean; }; export function NavTicketsCta({ className, fullWidth }: Props) { return ( ); }