From 3a3ee4c27b0c1f7e740e7eb6e27d16c8ac34176f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 17:00:09 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a9f9843..46dc853 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,6 +13,10 @@ import FooterBase from '@/components/sections/footer/FooterBase'; import { Brain, Code, Crown, Cpu, Gamepad2, Award, RefreshCw, Shield, Sparkles, TrendingUp, Users, Zap } from 'lucide-react'; export default function LandingPage() { + const handleGameClick = (gameName: string) => { + console.log(`Playing: ${gameName}`); + }; + return ( handleGameClick("Elden Ring Supremacy") }, { - id: "2", name: "Dark Souls Trilogy", price: "Legend", imageSrc: "http://img.b2bpic.net/free-photo/various-spooky-halloween-pumpkin-carving_23-2149495183.jpg", imageAlt: "Dark Souls mastery" + id: "2", name: "Dark Souls Trilogy", price: "Legend", imageSrc: "http://img.b2bpic.net/free-photo/various-spooky-halloween-pumpkin-carving_23-2149495183.jpg", imageAlt: "Dark Souls mastery", onProductClick: () => handleGameClick("Dark Souls Trilogy") }, { - id: "3", name: "Final Fantasy XVI", price: "Warrior", imageSrc: "http://img.b2bpic.net/free-photo/berserk-stands-with-weapon-with-shield-his-back-surrounded-by-smoke-posing-dark-background_613910-3725.jpg", imageAlt: "Final Fantasy XVI adventure" + id: "3", name: "Final Fantasy XVI", price: "Warrior", imageSrc: "http://img.b2bpic.net/free-photo/berserk-stands-with-weapon-with-shield-his-back-surrounded-by-smoke-posing-dark-background_613910-3725.jpg", imageAlt: "Final Fantasy XVI adventure", onProductClick: () => handleGameClick("Final Fantasy XVI") }, { - id: "4", name: "Cyberpunk 2077", price: "Hacker", imageSrc: "http://img.b2bpic.net/free-photo/cyberpunk-city-street-night-with-neon-lights-futuristic-aesthetic_23-2151488722.jpg", imageAlt: "Cyberpunk 2077 chaos" + id: "4", name: "Cyberpunk 2077", price: "Hacker", imageSrc: "http://img.b2bpic.net/free-photo/cyberpunk-city-street-night-with-neon-lights-futuristic-aesthetic_23-2151488722.jpg", imageAlt: "Cyberpunk 2077 chaos", onProductClick: () => handleGameClick("Cyberpunk 2077") } ]} gridVariant="two-columns-alternating-heights" animationType="blur-reveal" useInvertedBackground={false} - buttons={[{ text: "View Full Collection", href: "#" }]} + buttons={[{ text: "Unlock All Games", href: "#" }]} buttonAnimation="blur-reveal" /> -- 2.49.1