profileShare

rasmusjy / tasteprint

Read-only snapshot

No repository description.

main default branch 169 files Expires Sep 13, 2026, 9:06 AM
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