diff --git a/apps/web/src/routes/index.tsx b/apps/web/src/routes/index.tsx index 235c2a82..12735992 100644 --- a/apps/web/src/routes/index.tsx +++ b/apps/web/src/routes/index.tsx @@ -3,5 +3,9 @@ import { createFileRoute } from '@tanstack/react-router' export const Route = createFileRoute('/')({ component: Home }) function Home() { - return null + return ( +
+

hello world!

+
+ ) }