diff --git a/apps/www/src/app/page.tsx b/apps/www/src/app/page.tsx index e789905..905659d 100644 --- a/apps/www/src/app/page.tsx +++ b/apps/www/src/app/page.tsx @@ -1,44 +1,11 @@ -import { Suspense } from 'react'; - -import { api, HydrateClient } from '~/trpc/server'; -import { AuthShowcase } from './_components/auth-showcase'; -import { - CreatePostForm, - PostCardSkeleton, - PostList, -} from './_components/posts'; - -export const runtime = 'edge'; - -export default function HomePage() { - // You can await this here if you don't want to show Suspense fallback below - void api.post.all.prefetch(); +import type { NextPage } from "next"; +const Home: NextPage = () => { return ( - -
-
-

- Create T3 Turbo -

- - - -
- - - - -
- } - > - - -
- -
-
+
+

home page

+
); -} +}; + +export default Home;