From d624ac6ab26b13d8c9d2b0ead6cb323b76a90db8 Mon Sep 17 00:00:00 2001 From: Mathis Date: Fri, 7 Jun 2024 14:34:31 +0200 Subject: [PATCH] feat(page): update layout styling The structure of the main component in page.tsx has been adjusted to better accommodate its content. The div styling has been updated from full width with padding to half-width, full height, and content justified to the end. --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 50c5c64..c1d82a9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,7 @@ import Image from "next/image"; export default function Home() { return ( -
+

Hello world !

);