feat: add base styles

This commit is contained in:
Daniel Soares
2021-12-11 01:48:15 -03:00
parent db839b267a
commit a96d6126a8
4 changed files with 497 additions and 2 deletions

View File

@@ -1,7 +1,31 @@
import { Button } from '../components/Button'
export default function Home() {
const links = [
{
label: 'Home',
href: '#'
},
{
label: 'About',
href: '/about'
},
{
label: 'Contact',
href: '/contact'
}
]
return (
<div>
<h1>Hello</h1>
{links.map(link => (
<>
<Button color="sky" schema="square" key={link.href}>
{link.label}
</Button>
<br />
</>
))}
</div>
)
}