'use client'; import { Menu, X } from 'lucide-react'; import Link from 'next/link'; import { useState } from 'react'; const LINKS = [ { href: '/#how', label: 'How it works' }, { href: '/templates', label: 'Templates' }, { href: '/pricing', label: 'Pricing' }, { href: '/docs', label: 'Docs' }, { href: '/changelog', label: 'Changelog' }, ]; /** Hamburger menu shown below the md breakpoint, where the inline nav is hidden. */ export function MarketingMobileMenu() { const [open, setOpen] = useState(false); return (