diff --git a/src/app/page.tsx b/src/app/page.tsx index fbf3dea..6e77112 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,251 +1,120 @@ "use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; -import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern'; -import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; -import FaqBase from '@/components/sections/faq/FaqBase'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import { CheckCircle, Sparkles, Tag, Award, Star, HelpCircle, Shirt, Watch, Headphones } from 'lucide-react'; +import { ThemeProvider } from "@/components/providers/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import HeroBillboard from "@/components/sections/hero/HeroBillboard"; +import ProductCardThree from "@/components/sections/product/ProductCardThree"; +import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import { Zap, Users, Truck, Shield } from "lucide-react"; -export default function LandingPage() { +const navItems = [ + { name: "Home", id: "/" }, + { name: "Products", id: "#products" }, + { name: "About", id: "#about" }, + { name: "Contact", id: "#contact" }, +]; + +const products = [ + { + id: "1", name: "Premium Air Jordan 1 Retro", price: "$185.00", imageSrc: "https://images.unsplash.com/photo-1542291026-7eec264c27ff?w=500&h=500&fit=crop", imageAlt: "Air Jordan 1 Retro", onQuantityChange: (qty: number) => console.log("Quantity:", qty), + }, + { + id: "2", name: "Classic Nike Air Max 90", price: "$155.00", imageSrc: "https://images.unsplash.com/photo-1600181551650-5c6c4a3c1e3d?w=500&h=500&fit=crop", imageAlt: "Nike Air Max 90", onQuantityChange: (qty: number) => console.log("Quantity:", qty), + }, + { + id: "3", name: "Bold Adidas Ultraboost", price: "$195.00", imageSrc: "https://images.unsplash.com/photo-1579538481518-94d15cc3060w?w=500&h=500&fit=crop", imageAlt: "Adidas Ultraboost", onQuantityChange: (qty: number) => console.log("Quantity:", qty), + }, + { + id: "4", name: "Exclusive Yeezy 350 V2", price: "$225.00", imageSrc: "https://images.unsplash.com/photo-1552820728-8ac41f1ce891?w=500&h=500&fit=crop", imageAlt: "Yeezy 350 V2", onQuantityChange: (qty: number) => console.log("Quantity:", qty), + }, +]; + +const metrics = [ + { id: "1", icon: Zap, title: "Fast Shipping", value: "24-48hrs" }, + { id: "2", icon: Shield, title: "Verified Quality", value: "100%" }, + { id: "3", icon: Users, title: "Happy Customers", value: "50K+" }, + { id: "4", icon: Truck, title: "Global Reach", value: "190+" }, +]; + +export default function Home() { return ( - +
-
+
+ +
+ +
+ +
+ -
- -
- -
- -
- -
- -
- -
- -
- -
- -
diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index fd718b9..82647dc 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #ffffff; - --card: #f9f9f9; - --foreground: #000612e6; - --primary-cta: #106EFB; + --background: #000000; + --card: #1a1a1a; + --foreground: #ffffff; + --primary-cta: #ff0000; --primary-cta-text: #ffffff; - --secondary-cta: #f9f9f9; + --secondary-cta: #1a1a1a; --secondary-cta-text: #000612e6; - --accent: #e2e2e2; - --background-accent: #106EFB; + --accent: #ff0000; + --background-accent: #ff0000; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);