feat: add 404 page with centered layout

not-found.tsx renders oversized Fraunces heading with a back link.
Body gets flex flex-col min-h-screen so main can flex-1 to fill
available height without pushing the footer off screen.
This commit is contained in:
Ilia Mashkov
2026-05-18 20:46:22 +03:00
parent b88263a65a
commit 540df57f8d
2 changed files with 14 additions and 1 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ export const metadata: Metadata = {
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body className={`${fraunces.variable} ${publicSans.variable}`}>
<body className={`${fraunces.variable} ${publicSans.variable} flex flex-col min-h-screen`}>
{children}
<Footer />
</body>