diff --git a/src/app/home/page.tsx b/src/app/home/page.tsx index 1fcea30..8d83ee4 100644 --- a/src/app/home/page.tsx +++ b/src/app/home/page.tsx @@ -1,5 +1,4 @@ import { Activity, ShieldCheck, Users, Clock3 } from "lucide-react"; -import Image from "next/image"; import { AppShell } from "@/components/layout/app-shell"; import { GlassCard } from "@/components/ui/glass-card"; import { prisma } from "@/lib/prisma"; @@ -28,22 +27,10 @@ export default async function HomePage() { return (
-
-
- 4TECH logo -
-
-

Dashboard

-

Welcome, {user?.fullName}

-

4TECH user access and account overview.

-
+
+

Dashboard

+

Welcome, {user?.fullName}

+

4TECH user access and account overview.

{cards.map((card) => ( diff --git a/src/components/layout/app-shell.tsx b/src/components/layout/app-shell.tsx index 6811b64..c2a4866 100644 --- a/src/components/layout/app-shell.tsx +++ b/src/components/layout/app-shell.tsx @@ -23,21 +23,17 @@ export async function AppShell({ children }: { children: React.ReactNode }) {