Files
FictionArchive/fictionarchive-web/src/pages/NotFoundPage.tsx
2025-11-24 13:25:29 -05:00

18 lines
495 B
TypeScript

import { Card, CardContent, CardHeader, CardTitle } from '../components/ui/card'
export function NotFoundPage() {
return (
<Card className="shadow-md shadow-primary/10">
<CardHeader>
<CardTitle>Page not found</CardTitle>
</CardHeader>
<CardContent>
<p className="text-sm text-muted-foreground">
The page you are looking for does not exist. Head back to the novels
list to continue.
</p>
</CardContent>
</Card>
)
}