This commit is contained in:
skidoodle 2024-01-02 03:14:59 +01:00
parent a65ed73814
commit dea0fbf9bd
8 changed files with 33 additions and 39 deletions

View file

@ -1,11 +1,11 @@
import { socials } from '@/components/data/Socials'
import { Socials } from '@/components/data/Socials'
import { Icon } from '@/components/Icon'
import React from 'react'
export const SocialLayout = () => {
return (
<div className='mt-3 grid w-48 grid-flow-col space-x-8 pl-1 text-2xl'>
{socials.map((social) => (
<div className='mt-3 grid w-48 grid-flow-col space-x-8 pl-1 text-[1.7rem] leading-none'>
{Socials.map((social) => (
<Icon
key={social.id}
reference={social.ref}