import Link from 'next/link'; const docsLinks = [ { href: '/docs/overview', label: 'Product Overview' }, { href: '/docs/installation', label: 'Installation Guide' }, { href: '/docs/first-service', label: 'Deploy Your First Service' }, { href: '/docs/integrations', label: 'Infrastructure Integrations' }, { href: '/docs/premium', label: 'Premium Features' }, { href: '/docs/api', label: 'API and Automation' }, { href: '/docs/troubleshooting', label: 'Troubleshooting' }, ]; export default function DocsLayout({ title, intro, children, }: { title: string; intro: string; children: React.ReactNode; }) { return (

DashCaddy Documentation

{title}

{intro}

{children}
); }