refactor: imp some components

This commit is contained in:
Daniel Soares
2021-12-12 23:45:41 -03:00
parent 47bd52ffd7
commit 7b7e6b9cbd
13 changed files with 217 additions and 143 deletions

View File

@@ -1,67 +1,5 @@
import { Avatar } from '../components/Avatar'
import { Button } from '../components/Button'
import { SocialLinks } from '../components/SocialLinks'
import { Home } from '../components/Home'
export default function Home() {
const links = [
{
label: 'Home',
href: '#'
},
{
label: 'About',
href: '/about'
},
{
label: 'Contact',
href: '/contact'
}
]
const socialLinks = [
{
label: 'Email',
href: '1'
},
{
label: 'GitHub',
href: '2'
},
{
label: 'LinkedIn',
href: '3'
},
{
label: 'Dev',
href: '4'
},
{
label: 'Instagram',
href: '5'
},
{
label: 'WhatsApp',
href: '6'
}
]
return (
<div
style={{
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
height: '100vh',
gap: '1rem'
}}
>
<Avatar src="/avatar.jpeg" />
<SocialLinks socialLinks={socialLinks} color="rose" />
{links.map(link => (
<Button color="sky" schema="rounded" outline key={link.href}>
{link.label}
</Button>
))}
</div>
)
export default function HomePage() {
return <Home />
}