Files
brief-07-front/src/app/page.tsx
Mathis d624ac6ab2 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.
2024-06-07 14:34:31 +02:00

10 lines
200 B
TypeScript

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