import { Switch, Route, useLocation } from "wouter"; import { Home } from "@/pages/Home"; import { Search } from "@/pages/Search"; import { Card, CardContent } from "@/components/ui/card"; import { AlertCircle } from "lucide-react"; import { AnimatePresence } from "framer-motion"; function App() { const [location] = useLocation(); return ( ); } function NotFound() { return (

404 Page Not Found

The page you're looking for doesn't exist.

); } export default App;