[FA-18] Frontend bootstrapped
This commit is contained in:
17
fictionarchive-web/src/pages/NotFoundPage.tsx
Normal file
17
fictionarchive-web/src/pages/NotFoundPage.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user