4
0
forked from crowetic/commerce
commerce/pages/index.tsx

23 lines
788 B
TypeScript
Raw Normal View History

2020-09-23 16:51:06 -03:00
import { Featurebar, Button, Container } from "ui";
2020-09-24 10:47:42 -03:00
import { Navbar, Footer } from "components";
2020-09-23 15:19:36 -03:00
2020-09-21 14:54:16 -05:00
export default function Home() {
2020-09-23 15:19:36 -03:00
return (
2020-09-23 16:51:06 -03:00
<>
<Featurebar
title="Free Standard Shipping on orders over $99.99"
description="Due to COVID-19, some orders may experience processing and delivery delays."
/>
2020-09-24 08:29:36 -03:00
<Navbar />
2020-09-29 10:01:57 -03:00
<Container className="px-4 py-5 h-screen">
2020-09-29 14:17:53 -03:00
<div className="grid grid-cols-1 h-full lg:grid-cols-3 lg:grid-rows-2">
2020-09-29 10:01:57 -03:00
<div className="lg:row-span-2 lg:col-span-2 bg-indigo-700 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-red-500"></div>
</div>
2020-09-23 16:51:06 -03:00
</Container>
2020-09-24 10:47:42 -03:00
<Footer></Footer>
2020-09-23 16:51:06 -03:00
</>
2020-09-23 15:19:36 -03:00
);
2020-09-21 14:54:16 -05:00
}