From b315020416627e06add12e8097e07093095939fc Mon Sep 17 00:00:00 2001 From: Maze Winther Date: Thu, 28 May 2026 00:51:29 +0200 Subject: [PATCH] feat: add hello world to home page --- apps/web/src/routes/index.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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!

+
+ ) }