import { createFileRoute } from '@tanstack/react-router' import { ThemeToggle } from '~/components/theme-toggle' import { siteConfig } from '~/lib/site-config' export const Route = createFileRoute('/')({ component: Home }) function Home() { return (
{siteConfig.name}

Ready when you are

A clear place to start.

Your application is ready for its first real feature. Replace this screen with the part of your product you want to build next.

Open{' '} src/routes/index.tsx {' '} and make the first change.

) }