Skip to content

Commit

Permalink
add not found page
Browse files Browse the repository at this point in the history
  • Loading branch information
SutuSebastian committed Aug 26, 2024
1 parent fa664cb commit 7386929
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions apps/web/app/not-found.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { HomeNavbar } from "~/components/homepage";
import { MainFooter } from "~/components/main-footer";

export default function NotFoundPage() {
return (
<div className="relative flex min-h-screen flex-col">
<HomeNavbar />
<div className="mx-auto flex max-w-screen-sm flex-1 flex-col justify-center px-4 py-8 text-center sm:py-16 lg:px-6 xl:px-0">
<h1 className="mb-4 text-4xl font-extrabold text-primary-600">404 - Page Not Found</h1>

Check warning on line 9 in apps/web/app/not-found.tsx

View workflow job for this annotation

GitHub Actions / 🕵 Lint

Classname 'text-primary-600' is not a Tailwind CSS class!
<p className="text-gray-500 md:text-xl dark:text-gray-400">
Whoops! That page doesn’t exist. But do not fret, check out our other resources to get started.
</p>
</div>
<MainFooter />
</div>
);
}

0 comments on commit 7386929

Please sign in to comment.