import CurvyRect from "@/components/shared/layout/curvy-rect"; import { cn } from "@/utils/cn"; import { ArrowUpRight } from "lucide-react"; interface Props { navigationItems: { label: string; items: { icon: React.ReactNode; label: string; description: string; href: string; target?: string; big?: boolean; ctas?: { label: string; href: string; target?: string }[]; sectionLabel?: string; iconClassName?: string; }[]; }[]; sideLabel: string; sideContent: React.ReactNode; sideItem: { icon: React.ReactNode; label: string; description: string; href: string; target?: string; }; } export default function HeaderDropdownContent({ navigationItems, sideLabel, sideContent, sideItem, }: Props) { return (