import Link from 'next/link'; import { HomeLayout } from 'fumadocs-ui/layouts/home'; import { baseOptions } from '@/lib/layout.shared'; import { BookOpen, Braces, GraduationCap, Wrench } from 'lucide-react'; import type { Metadata } from 'next'; export const metadata: Metadata = { title: 'Page not found', robots: { index: false }, }; const sections = [ { href: '/guides/mailboxes/', icon: BookOpen, title: 'Guides', description: 'How every part of the product works.', }, { href: '/learn/email-warmup/', icon: GraduationCap, title: 'Learn', description: 'Cold email and deliverability fundamentals.', }, { href: '/api/', icon: Braces, title: 'API Reference', description: 'Authenticate and drive Warmbly programmatically.', }, { href: '/development/architecture/', icon: Wrench, title: 'Development', description: 'Self-host, deploy, and develop Warmbly.', }, ]; export default function NotFound() { return (

404

Page not found

The page you are looking for does not exist or has moved. Try the search (press /) or jump back into a section.

{sections.map((section) => (

{section.title}

{section.description}

))}
); }