"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { cn } from "@/lib/utils"; import { navForPortal, type BeautyPortalId } from "@/modules/beauty/constants/portals"; export function MobilePortalFrame({ portalId, children, }: { portalId: BeautyPortalId; children: React.ReactNode; }) { const pathname = usePathname(); const nav = navForPortal(portalId) .filter((g) => g.href) .slice(0, 5); return (
{children}
); }