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.
10 lines
200 B
TypeScript
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>
|
|
);
|
|
}
|