import { createFileRoute } from '@tanstack/react-router' export const Route = createFileRoute('/about')({ component: About, }) function About() { return (

About

A small starter with room to grow.

TanStack Start gives you type-safe routing, server functions, and modern SSR defaults. Use this as a clean foundation, then layer in your own routes, styling, and add-ons.

) }