Skip to content
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
7 changes: 4 additions & 3 deletions app/not-found.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@ import { Metadata } from "next";
import Image from "next/image";
import Link from "next/link";

import { Button } from "@/components/ui/button";
import { Button } from "@/components/ui/8bit/button";
import "@/components/ui/8bit/styles/retro.css";

export const metadata: Metadata = {
title: "404 | 8bitcn/ui",
};

export default function NotFound() {
return (
<div className="grid h-screen w-full place-content-center gap-5 bg-background px-4 text-center">
<div className="retro grid h-screen w-full place-content-center gap-5 bg-background px-4 text-center">
<Image
src={"/images/404/pixel-orc.webp"}
width={300}
Expand All @@ -22,7 +23,7 @@ export default function NotFound() {

<p className="text-gray-500">You are lost.</p>
<Link href={"/"}>
<Button variant={"outline"}>Return to Home Page</Button>
<Button>Return to Home Page</Button>
</Link>
</div>
);
Expand Down