import Link from "next/link"; import { cn } from "@/lib/utils"; import { buttonVariants } from "@/components/ui/button"; interface MarketingLayoutProps { children: React.ReactNode; } export default async function MarketingLayout({ children, }: MarketingLayoutProps) { return (
{children}
); }