'use client' import { Icon } from "@iconify/react"; import Link from "next/link"; const sosmeds = [ { name: 'x', url: 'https://x.com/_nomi_nonsz', icon: 'pajamas:twitter', size: 'text-[28px]' }, { name: 'facebook', url: 'https://www.facebook.com/nominonsense/', icon: 'mdi:facebook' }, { name: 'github', url: 'https://github.com/nomi-nonsz/', icon: 'mdi:github' }, { name: 'reddit', url: 'https://www.reddit.com/user/_nomi_nonsz', icon: 'mdi:reddit' }, { name: 'itch', url: 'https://nomi-nonsense.itch.io/', icon: 'cib:itch-io', size: 'text-[30px]' }, ] export const Sosmed = () => { return (
{sosmeds.map((sosmed) => ( ))}
) }