trackevery-day/app/page.tsx

10 lines
287 B
TypeScript
Raw Normal View History

2024-09-03 19:42:30 +02:00
import Image from "next/image";
export default function Home() {
return (
<main className="flex min-h-screen flex-col items-center justify-between p-24">
2024-09-03 20:43:54 +02:00
<div className="z-10 w-full max-w-5xl items-center justify-between font-mono text-sm lg:flex"></div>
2024-09-03 19:42:30 +02:00
</main>
);
}