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.
This commit is contained in:
Mathis H (Avnyr) 2024-06-07 14:34:31 +02:00
parent 409926a97b
commit d624ac6ab2
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -2,7 +2,7 @@ import Image from "next/image";
export default function Home() { export default function Home() {
return ( return (
<main className="flex flex-col items-center justify-between p-24"> <main className="flex flex-col items-center justify-end h-full w-2/4">
<h1>Hello world !</h1> <h1>Hello world !</h1>
</main> </main>
); );