diff --git a/src/app/page.tsx b/src/app/page.tsx
index d0c5443..3fc9f52 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -103,7 +103,7 @@ export default function SitePage() {
members={[
{id: '1', name: 'Marcus Richter', role: 'Team Principal', imageSrc: 'https://img.b2bpic.net/free-photo/handsome-man-women-mechanics-autoservice-posing_7502-4436.jpg', imageAlt: 'Portrait of Marcus Richter, Team Principal'},
{id: '2', name: 'Lena Schmidt', role: 'Chief Aerodynamicist', imageSrc: 'https://img.b2bpic.net/free-photo/top-view-hard-drive-with-blue-light_23-2149413376.jpg', imageAlt: 'Portrait of Lena Schmidt, Chief Aerodynamicist'},
- {id: '3', name: 'Dr. Klaus Weber', role: 'Head of Powertrain', imageSrc: 'https://img.b2bpic.net/free-photo/young-car-repairman-talking-with-his-coworker-while-checking-engine-performance-with-diagnostic-tools-auto-repair-shop_637285-4277.jpg?_wi=1', imageAlt: 'Portrait of Dr. Klaus Weber, Head of Powertrain'},
+ {id: '3', name: 'Dr. Klaus Weber', role: 'Head of Powertrain', imageSrc: 'https://img.b2bpic.net/free-photo/young-car-repairman-talking-with-his-coworker-while-checking-engine-performance-with-diagnostic-tools-auto-repair-shop_637285-4277.jpg', imageAlt: 'Portrait of Dr. Klaus Weber, Head of Powertrain'},
{id: '4', name: 'Dr. Anya Sharma', role: 'Lead Race Strategist', imageSrc: 'https://img.b2bpic.net/free-photo/factory-management-industrial-facility-looking-data-mockup-laptop_482257-126905.jpg', imageAlt: 'Portrait of Dr. Anya Sharma, Lead Race Strategist'}
]}
carouselMode="buttons"
@@ -121,12 +121,12 @@ export default function SitePage() {
({ ...link, icon: iconMap[link.icon] }));
-
- const themeProviderProps = {
- defaultButtonVariant: "directional-hover", defaultTextAnimation: "background-highlight", borderRadius: "soft", contentWidth: "compact", sizing: "mediumLarge", background: "aurora", cardStyle: "layered-gradient", primaryButtonStyle: "double-inset", secondaryButtonStyle: "solid", headingFontWeight: "normal"};
+ { 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" }
+ ];
const navbarProps = {
navItems: navItems,
@@ -102,7 +98,18 @@ function ProductPageContent({ params }: ProductPageProps) {
if (isLoading) {
return (
-
+
@@ -120,7 +127,18 @@ function ProductPageContent({ params }: ProductPageProps) {
if (!product) {
return (
-
+
@@ -145,7 +163,18 @@ function ProductPageContent({ params }: ProductPageProps) {
}
return (
-
+
diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx
index 7e6b0cb..ed69e01 100644
--- a/src/app/shop/page.tsx
+++ b/src/app/shop/page.tsx
@@ -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 (