Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-03-11 18:09:19 +00:00

View File

@@ -10,8 +10,16 @@ import TestimonialCardSixteen from '@/components/sections/testimonial/Testimonia
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { Sparkles, Zap } from 'lucide-react';
import Image from 'next/image';
export default function LandingPage() {
const handleProductClick = (productId: string, productName: string) => {
// Open WhatsApp with product details
const message = `Hi! I'm interested in: ${productName}`;
const encodedMessage = encodeURIComponent(message);
window.open(`https://wa.me/?text=${encodedMessage}`, '_blank');
};
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -41,6 +49,16 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<div className="flex items-center justify-center gap-3 mb-4">
<Image
src="http://img.b2bpic.net/free-photo/medium-shot-underground-hip-hop-musicians_23-2150932942.jpg?_wi=1"
alt="PlayBoOK Logo"
width={40}
height={40}
className="rounded-full"
/>
<span className="text-xl font-bold">PlayBoOK</span>
</div>
<HeroBillboardGallery
title="New Drops. Bold Impact."
description="Limited edition streetwear for those who move different. Premium quality. Exclusive releases."
@@ -78,13 +96,13 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{
id: "1", name: "Represent X Puma Graphic T-Shirt", price: "₹1,999", variant: "Black, White, Grey • 3 Colors", imageSrc: "http://img.b2bpic.net/free-psd/cyber-monday-template-design_23-2151905241.jpg", imageAlt: "Represent Puma graphic tee", isFavorited: false
id: "1", name: "Represent X Puma Graphic T-Shirt", price: "₹1,999", variant: "Black, White, Grey • 3 Colors", imageSrc: "http://img.b2bpic.net/free-psd/cyber-monday-template-design_23-2151905241.jpg", imageAlt: "Represent Puma graphic tee", isFavorited: false, onProductClick: () => handleProductClick("1", "Represent X Puma Graphic T-Shirt")
},
{
id: "2", name: "Urban Oversized Hoodie", price: "₹3,499", variant: "Black • XS to XXL", imageSrc: "http://img.b2bpic.net/free-photo/people-grandstands_52683-100553.jpg?_wi=1", imageAlt: "Urban oversized hoodie", isFavorited: false
id: "2", name: "Urban Oversized Hoodie", price: "₹3,499", variant: "Black • XS to XXL", imageSrc: "http://img.b2bpic.net/free-photo/people-grandstands_52683-100553.jpg?_wi=1", imageAlt: "Urban oversized hoodie", isFavorited: false, onProductClick: () => handleProductClick("2", "Urban Oversized Hoodie")
},
{
id: "3", name: "Streetwear Bomber Jacket", price: "₹5,999", variant: "Black • S to XL", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-standing-near-wall-pose_1328-4310.jpg", imageAlt: "Streetwear bomber jacket", isFavorited: false
id: "3", name: "Streetwear Bomber Jacket", price: "₹5,999", variant: "Black • S to XL", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-standing-near-wall-pose_1328-4310.jpg", imageAlt: "Streetwear bomber jacket", isFavorited: false, onProductClick: () => handleProductClick("3", "Streetwear Bomber Jacket")
}
]}
/>