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

16 lines
370 B
TypeScript
Raw Normal View History

2020-09-23 15:49:04 -03:00
import { Featurebar, Button } from "ui";
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 (
<div>
<main>
2020-09-23 15:49:04 -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-23 15:19:36 -03:00
<Button>Click Me!</Button>
</main>
</div>
);
2020-09-21 14:54:16 -05:00
}