SurfSense/surfsense_web/app/not-found.tsx
DESKTOP-RTLN3BA\$punk 7ea840dbb2
Some checks failed
Build and Push Docker Images / tag_release (push) Has been cancelled
Build and Push Docker Images / build (./surfsense_backend, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-24.04-arm, linux/arm64, arm64) (push) Has been cancelled
Build and Push Docker Images / build (./surfsense_backend, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-latest, linux/amd64, amd64) (push) Has been cancelled
Build and Push Docker Images / build (./surfsense_web, ./surfsense_web/Dockerfile, web, surfsense-web, ubuntu-24.04-arm, linux/arm64, arm64) (push) Has been cancelled
Build and Push Docker Images / build (./surfsense_web, ./surfsense_web/Dockerfile, web, surfsense-web, ubuntu-latest, linux/amd64, amd64) (push) Has been cancelled
Build and Push Docker Images / create_manifest (backend, surfsense-backend) (push) Has been cancelled
Build and Push Docker Images / create_manifest (web, surfsense-web) (push) Has been cancelled
feat: enhance SurfSense with new skills, blog section, and improve SEO metadata
- Added multiple new skills to skills-lock.json from the repository `aaron-he-zhu/seo-geo-claude-skills`.
- Introduced `fuzzy-search` dependency in package.json for improved search functionality.
- Updated pnpm-lock.yaml to include the new `fuzzy-search` package.
- Enhanced SEO metadata across various pages, including canonical links and descriptions for better search visibility.
- Improved layout and structure of several components, including the homepage and changelog, to enhance user experience.
2026-04-11 23:38:12 -07:00

54 lines
2.1 KiB
TypeScript

import type { Metadata } from "next";
import Link from "next/link";
export const metadata: Metadata = {
title: "Page Not Found | SurfSense",
description: "The page you're looking for doesn't exist. Explore SurfSense - open source enterprise AI search and knowledge management.",
};
export default function NotFound() {
return (
<div className="flex min-h-screen flex-col items-center justify-center px-4 text-center">
<h1 className="text-8xl font-bold tracking-tight text-neutral-900 dark:text-neutral-100">
404
</h1>
<p className="mt-4 text-xl text-neutral-600 dark:text-neutral-400">
The page you&apos;re looking for doesn&apos;t exist.
</p>
<p className="mt-2 text-base text-neutral-500 dark:text-neutral-500">
It may have been moved, or the URL might be incorrect.
</p>
<div className="mt-10 flex flex-col items-center gap-4 sm:flex-row">
<Link
href="/"
className="rounded-lg bg-black px-6 py-3 text-sm font-medium text-white transition hover:bg-neutral-800 dark:bg-white dark:text-black dark:hover:bg-neutral-200"
>
Go Home
</Link>
<Link
href="/docs"
className="rounded-lg border border-neutral-200 px-6 py-3 text-sm font-medium text-neutral-700 transition hover:bg-neutral-50 dark:border-neutral-700 dark:text-neutral-300 dark:hover:bg-neutral-800"
>
Browse Docs
</Link>
<Link
href="/blog"
className="rounded-lg border border-neutral-200 px-6 py-3 text-sm font-medium text-neutral-700 transition hover:bg-neutral-50 dark:border-neutral-700 dark:text-neutral-300 dark:hover:bg-neutral-800"
>
Read Blog
</Link>
</div>
<nav className="mt-16 flex flex-wrap justify-center gap-x-6 gap-y-2 text-sm text-neutral-500 dark:text-neutral-400">
<Link href="/pricing" className="hover:text-neutral-900 dark:hover:text-neutral-200">
Pricing
</Link>
<Link href="/contact" className="hover:text-neutral-900 dark:hover:text-neutral-200">
Contact
</Link>
<Link href="/changelog" className="hover:text-neutral-900 dark:hover:text-neutral-200">
Changelog
</Link>
</nav>
</div>
);
}