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

18 lines
449 B
TypeScript
Raw Normal View History

2020-09-23 16:51:06 -03:00
import { Featurebar, Button, Container } from "ui";
import { Navbar } 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-23 16:57:17 -03:00
<Container className="py-12">
2020-09-23 15:19:36 -03:00
<Button>Click Me!</Button>
2020-09-23 16:51:06 -03:00
</Container>
</>
2020-09-23 15:19:36 -03:00
);
2020-09-21 14:54:16 -05:00
}