"use client"; import { Socials } from "@/components/data/Socials"; import { Icon } from "@/components/Icon"; import React, { memo } from "react"; import { motion } from "framer-motion"; export const SocialLayout = memo(() => { return ( {Socials.map(({ id, ref, copyValue, icon: IconComponent, ariaLabel }) => ( ))} ); }); SocialLayout.displayName = "SocialLayout";