import Link from "next/link"; import { Button } from "@mcpengine/ui"; import { Logo } from "../../components/shared/Logo"; const navLinks = [ { label: "Features", href: "#features" }, { label: "Pricing", href: "#pricing" }, { label: "Templates", href: "/templates" }, { label: "Docs", href: "/docs" }, ]; export default function MarketingLayout({ children, }: { children: React.ReactNode; }) { return (
{/* ─── NAVBAR ─── */}
{/* ─── CONTENT ─── */} {children}
); }