12 lines
267 B
TypeScript
12 lines
267 B
TypeScript
import Image from "next/image";
|
|
import MainLogo from "./components/ui/MainLogo";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="flex min-h-screen items-center justify-center bg-zinc-50 font-sans dark:bg-black">
|
|
<MainLogo />
|
|
|
|
</div>
|
|
);
|
|
}
|