···11import { createFileRoute } from '@tanstack/react-router'
2233export const Route = createFileRoute('/about')({
44- component: About,
44+ component: About,
55})
6677function About() {
88- return (
99- <main className="page-wrap px-4 py-12">
1010- <section className="island-shell rounded-2xl p-6 sm:p-8">
1111- <p className="island-kicker mb-2">About</p>
1212- <h1 className="display-title mb-3 text-4xl font-bold text-[var(--sea-ink)] sm:text-5xl">
1313- A small starter with room to grow.
1414- </h1>
1515- <p className="m-0 max-w-3xl text-base leading-8 text-[var(--sea-ink-soft)]">
1616- TanStack Start gives you type-safe routing, server functions, and
1717- modern SSR defaults. Use this as a clean foundation, then layer in
1818- your own routes, styling, and add-ons.
1919- </p>
2020- </section>
2121- </main>
2222- )
88+ return (
99+ <main className="page-wrap px-4 py-12">
1010+ <section className="island-shell rounded-2xl p-6 sm:p-8">
1111+ <p className="island-kicker mb-2">About</p>
1212+ <h1 className="display-title mb-3 text-4xl font-bold text-[var(--sea-ink)] sm:text-5xl">
1313+ A small starter with room to grow.
1414+ </h1>
1515+ <p className="m-0 max-w-3xl text-base leading-8 text-[var(--sea-ink-soft)]">
1616+ TanStack Start gives you type-safe routing, server functions, and
1717+ modern SSR defaults. Use this as a clean foundation, then layer in
1818+ your own routes, styling, and add-ons.
1919+ </p>
2020+ </section>
2121+ </main>
2222+ )
2323}