NotFoundPage.tsx
330 bytes
| 1 | import { Link } from "react-router-dom"; |
|---|---|
| 2 | |
| 3 | export function NotFoundPage() { |
| 4 | return ( |
| 5 | <main className="not-found-page"> |
| 6 | <span className="eyebrow">404, wrong gate</span> |
| 7 | <h1>This route is not on the itinerary.</h1> |
| 8 | <Link className="button button-primary" to="/">Return to Tasteprint</Link> |
| 9 | </main> |
| 10 | ); |
| 11 | } |
| 12 | |