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
|
|
|
<>
|
|
|
|
<Navbar />
|
|
|
|
<Featurebar
|
|
|
|
title="Free Standard Shipping on orders over $99.99"
|
|
|
|
description="Due to COVID-19, some orders may experience processing and delivery delays."
|
|
|
|
/>
|
|
|
|
<Container className="py-12 bg-black">
|
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
|
|
|
}
|