commerce/pages/index.tsx

19 lines
525 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-24 10:47:42 -03:00
<Container className="px-4 py-5 border-black border-l border-r h-screen">
2020-09-23 15:19:36 -03:00
<Button>Click Me!</Button>
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
}