diff --git a/src/app/page.tsx b/src/app/page.tsx index 221a4b6..c3161b6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,17 +2,17 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FaqDouble from '@/components/sections/faq/FaqDouble'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FaqBase from '@/components/sections/faq/FaqBase'; +import FooterBase from '@/components/sections/footer/FooterBase'; import HeroSplit from '@/components/sections/hero/HeroSplit'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; +import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import TextAbout from '@/components/sections/about/TextAbout'; -import { Globe, Layers, Users } from "lucide-react"; +import { Globe, Layers, Users, Star } from "lucide-react"; export default function LandingPage() { return ( @@ -32,14 +32,10 @@ export default function LandingPage() {
@@ -103,18 +68,9 @@ export default function LandingPage() { animationType="slide-up" useInvertedBackground={true} products={[ - { - id: "1", name: "Obsidian Sneaker", price: "$340", imageSrc: "http://img.b2bpic.net/free-photo/handsome-black-man-outdoor_624325-3549.jpg"}, - { - id: "2", name: "Architectural Hoodie", price: "$220", imageSrc: "http://img.b2bpic.net/free-photo/fashion-portrait-young-elegant-woman_1328-2744.jpg"}, - { - id: "3", name: "Tactical Utility Pant", price: "$280", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-young-man-posing-outdoors_23-2151038555.jpg"}, - { - id: "4", name: "Minimalist Tee", price: "$85", imageSrc: "http://img.b2bpic.net/free-vector/happy-new-year-2025-text-typography-design-element-flyer-banner-poster-design_460848-18792.jpg"}, - { - id: "5", name: "Cargo Tech Vest", price: "$190", imageSrc: "http://img.b2bpic.net/free-photo/soldier-russian-s-war-ukraine-side-view_23-2149437803.jpg"}, - { - id: "6", name: "Matte Accessory", price: "$60", imageSrc: "http://img.b2bpic.net/free-photo/skater-wearing-trucker-hat_23-2149431180.jpg"}, + { id: "1", name: "Obsidian Sneaker", price: "$340", imageSrc: "http://img.b2bpic.net/free-photo/handsome-black-man-outdoor_624325-3549.jpg" }, + { id: "2", name: "Architectural Hoodie", price: "$220", imageSrc: "http://img.b2bpic.net/free-photo/fashion-portrait-young-elegant-woman_1328-2744.jpg" }, + { id: "3", name: "Tactical Utility Pant", price: "$280", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-young-man-posing-outdoors_23-2151038555.jpg" } ]} title="Current Collection" description="Each piece is limited. Once they are gone, they remain gone." @@ -125,10 +81,9 @@ export default function LandingPage() {