diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx index 03a02df..5543678 100644 --- a/src/app/not-found.tsx +++ b/src/app/not-found.tsx @@ -3,6 +3,11 @@ import { cn } from "@/lib/utils"; import ILink from "@/components/ilink"; import Image from "next/image"; +const quote = `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.`; + const NotFound = () => (
- 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. +
+ {quote.split("\n").map((line, i) => ( + + {'>'} {line} + + ))}