From 5e5b901bf418ce62f1a89906b9596ba704ad05b4 Mon Sep 17 00:00:00 2001 From: Hannah Date: Wed, 4 Mar 2026 05:29:59 +0100 Subject: [PATCH] Updated App Layout using new Component --- app/layout.tsx | 4 +++- app/page.tsx | 10 ++++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index fdb7c84..9b5fcfd 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -18,7 +18,9 @@ export default function RootLayout({ {/* className=${geistSans.variable} ${geistMono.variable} */}
- {children} +
+ {children} +
); diff --git a/app/page.tsx b/app/page.tsx index a2dec80..e29ef3e 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,9 +1,11 @@ import Image from "next/image"; + import RoundedContainer from "@/components/ui/RoundedContainer"; + export default function Home() { return ( -
-
+
+
- - + + ); }