mirror of
https://github.com/vercel/commerce.git
synced 2025-03-16 07:22:32 +00:00
16 lines
370 B
TypeScript
16 lines
370 B
TypeScript
import { Featurebar, Button } from "ui";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div>
|
|
<main>
|
|
<Featurebar
|
|
title="Free Standard Shipping on orders over $99.99"
|
|
description="Due to COVID-19, some orders may experience processing and delivery delays."
|
|
/>
|
|
<Button>Click Me!</Button>
|
|
</main>
|
|
</div>
|
|
);
|
|
}
|