"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { cn } from "@/lib/utils"; import { YaltopiaFooter } from "./YaltopiaFooter"; import type { LucideIcon } from "lucide-react"; import { Shield } from "lucide-react"; export function PortalShell({ brand, navItems, children, }: { brand: string; navItems: { href: string; label: string; icon: LucideIcon }[]; children: React.ReactNode; }) { const pathname = usePathname(); return (
{children}
); }