6 Commits

Author SHA1 Message Date
4b2ae5c2ef Merge version_4 into main
Merge version_4 into main
2026-03-04 05:48:29 +00:00
a21f8fa27f Update src/app/page.tsx 2026-03-04 05:48:25 +00:00
eb311dd95e Merge version_3 into main
Merge version_3 into main
2026-03-04 05:45:30 +00:00
937638bc08 Update src/app/page.tsx 2026-03-04 05:45:25 +00:00
291dfb0b0f Update src/app/layout.tsx 2026-03-04 05:45:25 +00:00
2100cafd3b Merge version_2 into main
Merge version_2 into main
2026-03-04 05:43:33 +00:00
2 changed files with 7 additions and 7 deletions

View File

@@ -1443,4 +1443,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -11,7 +11,7 @@ import TestimonialCardTwelve from '@/components/sections/testimonial/Testimonial
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Zap, Star, Sparkles, TrendingUp, Heart, Award, Twitter, Instagram, Facebook } from 'lucide-react';
import { Zap, Star, Sparkles, TrendingUp, Heart, Award, Twitter, Instagram, Facebook, ShoppingCart, Eye } from 'lucide-react';
const DirtBike3DBackground = () => {
const canvasRef = useRef<HTMLCanvasElement>(null);
@@ -328,7 +328,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroOverlay
title="Electric Fashion Redefined"
title="Turn Heads With 3D-Engineered Streetwear"
description="Step into the next dimension of streetwear. 3D designs, cutting-edge styles, and neon aesthetics that push the boundaries of fashion."
tag="Next Gen Collection"
tagIcon={Zap}
@@ -362,15 +362,15 @@ export default function LandingPage() {
products={[
{
id: "1", brand: "ONEWAY", name: "Electric Volt T-Shirt", price: "$49.99", rating: 5,
reviewCount: "342", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AT3OQAGjNifXrM4yFIwrMJit83/uploaded-1772602766355-1ntv1a1w.jpg?_wi=1", imageAlt: "Electric Volt T-Shirt"
reviewCount: "342", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AT3OQAGjNifXrM4yFIwrMJit83/uploaded-1772602766355-1ntv1a1w.jpg?_wi=1", imageAlt: "Electric Volt T-Shirt", onProductClick: () => window.open('https://example.com/add-to-cart?product=1', '_blank')
},
{
id: "2", brand: "ONEWAY", name: "Neon Pulse Hoodie", price: "$89.99", rating: 5,
reviewCount: "218", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AT3OQAGjNifXrM4yFIwrMJit83/uploaded-1772602766355-jzfsyezd.jpg?_wi=1", imageAlt: "Neon Pulse Hoodie"
reviewCount: "218", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AT3OQAGjNifXrM4yFIwrMJit83/uploaded-1772602766355-jzfsyezd.jpg?_wi=1", imageAlt: "Neon Pulse Hoodie", onProductClick: () => window.open('https://example.com/add-to-cart?product=2', '_blank')
},
{
id: "3", brand: "ONEWAY", name: "Cyber Street Jeans", price: "$79.99", rating: 5,
reviewCount: "156", imageSrc: "http://img.b2bpic.net/free-photo/blue-jeans-fabric-details_150588-48.jpg?_wi=1", imageAlt: "Cyber Street Jeans"
reviewCount: "156", imageSrc: "http://img.b2bpic.net/free-photo/blue-jeans-fabric-details_150588-48.jpg?_wi=1", imageAlt: "Cyber Street Jeans", onProductClick: () => window.open('https://example.com/add-to-cart?product=3', '_blank')
}
]}
buttons={[
@@ -515,4 +515,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}