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

- - - - +
+
+
+ Virtual Air Rescue - HUB +
+
+
    +
  • +
  • +
+
+
+
+ + + +
+
); }