Merge version_3 into main #4

Merged
bender merged 1 commits from version_3 into main 2026-03-12 17:00:13 +00:00

View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -73,22 +77,22 @@ export default function LandingPage() {
textboxLayout="default"
products={[
{
id: "1", name: "Elden Ring Supremacy", price: "Conquerer", imageSrc: "http://img.b2bpic.net/free-photo/rendering-wizard-controlling-magic_23-2150608342.jpg", imageAlt: "Elden Ring conquest"
id: "1", name: "Elden Ring Supremacy", price: "Conquerer", imageSrc: "http://img.b2bpic.net/free-photo/rendering-wizard-controlling-magic_23-2150608342.jpg", imageAlt: "Elden Ring conquest", onProductClick: () => 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"
/>
</div>