diff --git a/app/layout.tsx b/app/layout.tsx index f3b78ea..80d4e48 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -14,7 +14,7 @@ export const metadata: Metadata = { export default function RootLayout({ children }: { children: React.ReactNode }) { return ( -
+ {children} diff --git a/app/not-found.tsx b/app/not-found.tsx new file mode 100644 index 0000000..8763573 --- /dev/null +++ b/app/not-found.tsx @@ -0,0 +1,13 @@ +import { Link } from '$shared/ui'; + +/** + * Custom 404 page — shown for any unmatched route. + */ +export default function NotFound() { + return ( +