feat: add social links

This commit is contained in:
Daniel Soares
2021-12-11 13:42:11 -03:00
parent 54cab65e79
commit cd8259a0a5
10 changed files with 207 additions and 13 deletions

View File

@@ -1,5 +1,6 @@
import { Avatar } from '../components/Avatar'
import { Button } from '../components/Button'
import { SocialLinks } from '../components/SocialLinks'
export default function Home() {
const links = [
@@ -17,6 +18,33 @@ export default function Home() {
}
]
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={{
@@ -28,6 +56,7 @@ export default function Home() {
}}
>
<Avatar src="/avatar.jpeg" />
<SocialLinks socialLinks={socialLinks} color="rose" />
{links.map(link => (
<Button color="sky" schema="rounded" outline key={link.href}>
{link.label}