This commit is contained in:
mauro 🤙
2024-08-31 11:24:51 +00:00
parent 7b2fe6168a
commit d84b2dbc26
4 changed files with 24 additions and 2 deletions

15
src/app/not-found.tsx Normal file
View File

@@ -0,0 +1,15 @@
import { BrandingAssets } from "@/components/branding-assets";
import Footer from "@/components/footer";
import { Navigation } from "@/components/navigation";
export const runtime = 'edge'
export default function NotFoundPage() {
return (
<main className="flex min-h-screen flex-col items-center justify-start">
<h1>404</h1>
<Footer />
<Navigation /> {/* At the bottom of the page */}
</main>
);
}