mirror of
https://github.com/vercel/commerce.git
synced 2025-03-14 14:42:31 +00:00
14 lines
441 B
TypeScript
14 lines
441 B
TypeScript
import { Layout } from "@components/core";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<Layout>
|
|
<div className="h-full grid grid-cols-1 h-full lg:grid-cols-3 lg:grid-rows-2">
|
|
<div className="lg:row-span-2 lg:col-span-2 bg-violet h-full"></div>
|
|
<div className="lg:row-span-1 lg:col-span-1 bg-black h-full"></div>
|
|
<div className="lg:row-span-1 lg:col-span-1 bg-pink"></div>
|
|
</div>
|
|
</Layout>
|
|
);
|
|
}
|