trackevery-day/app/page.tsx
2024-09-03 20:43:54 +02:00

10 lines
287 B
TypeScript

import Image from "next/image";
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"></div>
</main>
);
}