4
0
forked from crowetic/commerce
commerce/pages/index.tsx
Belen Curcio 54cf948f56 navbar
2020-09-29 09:23:23 -03:00

19 lines
495 B
TypeScript

import { Featurebar, Button, Container } from "ui";
import { Navbar, Footer } from "components";
export default function Home() {
return (
<>
<Featurebar
title="Free Standard Shipping on orders over $99.99"
description="Due to COVID-19, some orders may experience processing and delivery delays."
/>
<Navbar />
<Container className="px-4 py-5 h-screen">
<Button>Click Me!</Button>
</Container>
<Footer></Footer>
</>
);
}