Update src/app/shop/page.tsx

This commit is contained in:
2026-02-21 12:48:16 +00:00
parent b13ff99b0a
commit ba16ef7446

View File

@@ -43,13 +43,12 @@ function ShopPageContent() {
{ name: "Shop", id: "/shop" },
];
const iconMap = { Twitter, Instagram, Youtube, Facebook };
const socialLinks = [
{ icon: "Twitter", href: "https://twitter.com/audisport", ariaLabel: "Twitter" },
{ icon: "Instagram", href: "https://www.instagram.com/audisport", ariaLabel: "Instagram" },
{ icon: "Youtube", href: "https://www.youtube.com/audisport", ariaLabel: "YouTube" },
{ icon: "Facebook", href: "https://www.facebook.com/audisport", ariaLabel: "Facebook" }
].map(link => ({ ...link, icon: iconMap[link.icon] }));
{ icon: Twitter, href: "https://twitter.com/audisport", ariaLabel: "Twitter" },
{ icon: Instagram, href: "https://www.instagram.com/audisport", ariaLabel: "Instagram" },
{ icon: Youtube, href: "https://www.youtube.com/audisport", ariaLabel: "YouTube" },
{ icon: Facebook, href: "https://www.facebook.com/audisport", ariaLabel: "Facebook" }
];
return (