profileShare

rasmusjy / tasteprint

Read-only snapshot

No repository description.

main default branch 169 files Expires Sep 13, 2026, 9:06 AM
Logo.tsx 397 bytes
1 import { Link } from "react-router-dom";
2
3 export function Logo({ to = "/" }: { to?: string }) {
4 return (
5 <Link className="brand" to={to} aria-label="Tasteprint home">
6 <span className="brand-mark" aria-hidden="true">
7 <span>TP</span>
8 </span>
9 <span className="brand-word">
10 <strong>Taste</strong>
11 <strong>print</strong>
12 </span>
13 </Link>
14 );
15 }
16