Skip to content

Commit bca3a54

Browse files
not found nit
1 parent e3558a8 commit bca3a54

4 files changed

Lines changed: 14 additions & 118 deletions

File tree

packages/web/src/app/(app)/components/meControlDropdownMenu.tsx

Lines changed: 0 additions & 82 deletions
This file was deleted.

packages/web/src/app/(app)/components/notFound.tsx

Lines changed: 0 additions & 25 deletions
This file was deleted.

packages/web/src/app/(app)/components/pageNotFound.tsx

Lines changed: 0 additions & 9 deletions
This file was deleted.

packages/web/src/app/not-found.tsx

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
1-
import { PageNotFound } from "./(app)/components/pageNotFound";
1+
import { cn } from "@/lib/utils"
2+
import { Separator } from "@/components/ui/separator"
23

34
export default function NotFoundPage() {
45
return (
5-
<PageNotFound />
6+
<div className="flex h-screen">
7+
<div className={cn("m-auto")}>
8+
<div className="flex flex-row items-center gap-2">
9+
<h1 className="text-xl">404</h1>
10+
<Separator
11+
orientation="vertical"
12+
className="h-5"
13+
/>
14+
<p className="text-sm">Page not found</p>
15+
</div>
16+
</div>
17+
</div>
618
)
719
}

0 commit comments

Comments
 (0)