diff --git a/public/404.jpg b/public/404.jpg new file mode 100644 index 0000000..b600330 Binary files /dev/null and b/public/404.jpg differ diff --git a/public/next.svg b/public/next.svg deleted file mode 100644 index 5174b28..0000000 --- a/public/next.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/vercel.svg b/public/vercel.svg deleted file mode 100644 index d2f8422..0000000 --- a/public/vercel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx new file mode 100644 index 0000000..03a02df --- /dev/null +++ b/src/app/not-found.tsx @@ -0,0 +1,26 @@ +import fonts from "@/components/fonts"; +import { cn } from "@/lib/utils"; +import ILink from "@/components/ilink"; +import Image from "next/image"; + +const NotFound = () => ( +
+ Error 404\nNot Found +

+ Hello, friend. Hello, friend? That's lame. Maybe I should give you a name. + But that's a slippery slope. You're only in my 404 page. We have to + remember that. +

+
+ Stay + Leave +
+
+); + +export default NotFound; diff --git a/src/app/page.tsx b/src/app/page.tsx index 5d77dfd..cdc28c3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -41,16 +41,16 @@ export default function Home() {

Currently working on{" "} - + ingenuity . Some of my projects are open-source (FOSS), and if you are interested, you can find them on my{" "} - + self-hosted git-server {" "} or{" "} - + GitHub . diff --git a/src/components/age.tsx b/src/components/age.tsx index c75c630..6147ead 100644 --- a/src/components/age.tsx +++ b/src/components/age.tsx @@ -1,7 +1,7 @@ "use client"; import { cn } from "@/lib/utils"; -import { useCallback, useEffect, useRef, useState } from "react"; +import { useEffect, useState } from "react"; const hydrogenLineFrequency_Hz = 1420.405751768 * 10 ** 6; @@ -95,7 +95,7 @@ const FormatBigNumber: React.FC = ({ ); } else { - return null; + return ---.------------; } }; diff --git a/src/components/ilink.tsx b/src/components/ilink.tsx index 8d898a1..c9a8afc 100644 --- a/src/components/ilink.tsx +++ b/src/components/ilink.tsx @@ -1,5 +1,5 @@ -import { cn } from "@/lib/utils"; import Link from "next/link"; +import { Button } from "./ui/button"; type ILinkProps = { href: string; @@ -14,15 +14,10 @@ const ILink: React.FC = ({ ...props }) => { return ( - - {children} + + ); };