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