16 lines
585 B
TypeScript
16 lines
585 B
TypeScript
import Logo from "./logo";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="font-sans grid grid-rows-[20px_1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20">
|
|
<main className="flex flex-col gap-[32px] row-start-2 items-center sm:items-start">
|
|
<Logo />
|
|
<ol className="font-mono list-inside list-decimal text-sm/6 text-center sm:text-left">
|
|
<li className="mb-2 tracking-[-.01em]">try to load logo</li>
|
|
<li className="tracking-[-.01em]">see issue</li>
|
|
</ol>
|
|
</main>
|
|
</div>
|
|
);
|
|
}
|