Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement 404-error page #74

Merged
merged 2 commits into from
Nov 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion src/app/not-found.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
const NotFound = () => {
return <div>404 Page Not Found</div>;
return (
<div className="flex h-screen flex-col items-center justify-center">
<div className="text-9xl font-bold leading-tight text-starlight-blue">
404
</div>
<div className="text-5xl font-bold leading-tight text-black">
Page Not Found
</div>
<div className="text-3xl font-bold leading-loose text-starlight-blue">
Uh oh! You have stumbled on a page that does not exist!
</div>
</div>
);
};

export default NotFound;
Loading