pelita-webtournament/app/page.tsx

18 lines
372 B
TypeScript
Raw Normal View History

2024-07-05 11:41:32 +02:00
import Image from "next/image";
2024-07-19 18:00:43 +02:00
import Pelita from "./pelita";
2024-07-05 11:41:32 +02:00
export default function Home() {
return (
<main className="flex min-h-screen flex-col items-center justify-between p-24">
<div className="z-10 w-full max-w-5xl items-center justify-between font-mono text-sm lg:flex">
2024-07-19 18:00:43 +02:00
<Pelita>
2024-07-05 11:41:32 +02:00
2024-07-19 18:00:43 +02:00
</Pelita>
2024-07-05 11:41:32 +02:00
</div>
</main>
);
}