blob: b53f48abea71bffa89bb73d705d76ddb4675f98c (
plain) (
blame)
1
2
3
4
5
6
7
|
export default function Home() {
return (
<main className="flex flex-col justify-between p-2">
<h1 className="text-2xl font-bold">Welcome to Alure Regions</h1>
</main>
)
}
|