From a897a0b0a53621e5c03504c964350a0142bd87b3 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Mon, 10 Feb 2025 00:09:08 +0100 Subject: [PATCH] HUB - Main Page design wip --- apps/hub/app/layout.tsx | 15 +++- apps/hub/app/page.tsx | 160 +++++++++++++++++++++++++++++++++------- 2 files changed, 146 insertions(+), 29 deletions(-) diff --git a/apps/hub/app/layout.tsx b/apps/hub/app/layout.tsx index fb573531..5d3dea17 100644 --- a/apps/hub/app/layout.tsx +++ b/apps/hub/app/layout.tsx @@ -32,7 +32,20 @@ export default async function RootLayout({ - {children} +
+
+
+
+ {children} +
+
+
diff --git a/apps/hub/app/page.tsx b/apps/hub/app/page.tsx index 0e93079a..bc16e11f 100644 --- a/apps/hub/app/page.tsx +++ b/apps/hub/app/page.tsx @@ -1,39 +1,143 @@ import Link from 'next/link'; import { PrismaClient } from '@repo/db'; import { PaginatedTable } from './_components/PaginatedTable'; +import { ExitIcon } from "@radix-ui/react-icons" export default async function Home() { const prisma = new PrismaClient(); return ( -
-

Hub

- - - - +
+
+ +
+
    +
  • +
  • +
+
+
+
+ + + +
+
); }