diff --git a/frontend/app/not-found.tsx b/frontend/app/not-found.tsx index ac284ea..918f411 100644 --- a/frontend/app/not-found.tsx +++ b/frontend/app/not-found.tsx @@ -2,7 +2,7 @@ import Link from "next/link" import { Button } from "@/components/ui/button" -import { Home, Search, Shuffle, ArrowLeft, Music, Disc3 } from "lucide-react" +import { Home, Search, Shuffle, ArrowLeft, Music, Bird } from "lucide-react" import { useState, useEffect } from "react" const GOOSE_QUOTES = [ @@ -27,7 +27,7 @@ const SONG_SUGGESTIONS = [ ] export default function NotFound() { - const [quote, setQuote] = useState("") + const [quote, setQuote] = useState(GOOSE_QUOTES[0]) const [suggestion, setSuggestion] = useState(SONG_SUGGESTIONS[0]) const [isSpinning, setIsSpinning] = useState(false) @@ -48,14 +48,15 @@ export default function NotFound() { return (