import Link from 'next/link' import { Github, Linkedin, Youtube, Mail } from 'lucide-react' import Discord from './icons/discord' import X from './icons/x' const menuItems: { heading: string items: { name: string; href: string }[] }[] = [ { heading: 'About', items: [ { name: 'About', href: '/about', }, { name: 'Contact Us', href: '/about#contact-us' }, { name: 'Features', href: '/docs/features', }, ], }, { heading: 'Resources', items: [ { name: 'Changelog', href: '/changelog', }, { name: 'Roadmap', href: '/blog/2026-02-18_2026_roadmap', }, { name: 'Demo', href: 'https://chat.librechat.ai/', }, { name: 'Status', href: 'https://status.librechat.ai/', }, ], }, { heading: 'Documentation', items: [ { name: 'Get Started', href: '/docs', }, { name: 'Local Install', href: '/docs/local', }, { name: 'Remote Install', href: '/docs/remote', }, ], }, { heading: 'Blog', items: [ { name: 'Blog', href: '/blog' }, { name: 'Blog Authors', href: '/authors' }, ], }, { heading: 'Newsletter', items: [ { name: 'Subscribe', href: '/subscribe', }, { name: 'Unsubscribe', href: '/unsubscribe', }, ], }, { heading: 'Legal', items: [ { name: 'Terms of services', href: '/tos', }, { name: 'Privacy policy', href: '/privacy', }, { name: 'Cookie policy', href: '/cookie', }, ], }, ] const socialLinks = [ { title: 'GitHub', icon: