diff --git a/src/app/page.tsx b/src/app/page.tsx index b1063d7..9422050 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,15 +2,16 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; +import ContactFaq from '@/components/sections/contact/ContactFaq'; import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour'; import FooterCard from '@/components/sections/footer/FooterCard'; import HeroSplit from '@/components/sections/hero/HeroSplit'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; -import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; -import { Facebook, Instagram, Twitter } from "lucide-react"; +import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import { Facebook, Instagram, Twitter, Mail } from "lucide-react"; export default function LandingPage() { return ( @@ -31,29 +32,20 @@ export default function LandingPage() { @@ -62,38 +54,25 @@ export default function LandingPage() {
@@ -133,44 +106,17 @@ export default function LandingPage() { useInvertedBackground={false} features={[ { - id: "1", - title: "Uncompromised Quality", - author: "Crafted to Last", - description: "Every item is produced with the finest materials and meticulous attention to detail, ensuring exceptional durability and timeless elegance.", - tags: [ - "Durability", - "Materials", - "Craftsmanship", - ], - imageSrc: "http://img.b2bpic.net/free-photo/painted-leaf-texture_53876-88665.jpg", - imageAlt: "Close-up of luxury material texture", - }, + id: "1", title: "Uncompromised Quality", author: "Crafted to Last", description: "Every item is produced with the finest materials and meticulous attention to detail, ensuring exceptional durability and timeless elegance.", tags: [ + "Durability", "Materials", "Craftsmanship"], + imageSrc: "http://img.b2bpic.net/free-photo/painted-leaf-texture_53876-88665.jpg", imageAlt: "Close-up of luxury material texture"}, { - id: "2", - title: "Innovative Design", - author: "Future Forward", - description: "We blend classic aesthetics with cutting-edge design principles, creating pieces that are both functional and visually stunning, setting new standards for luxury.", - tags: [ - "Innovation", - "Modern", - "Aesthetics", - ], - imageSrc: "http://img.b2bpic.net/free-photo/painted-background-wallpaper-acrylic-paint-texture_53876-134375.jpg", - imageAlt: "Abstract innovative design concept", - }, + id: "2", title: "Innovative Design", author: "Future Forward", description: "We blend classic aesthetics with cutting-edge design principles, creating pieces that are both functional and visually stunning, setting new standards for luxury.", tags: [ + "Innovation", "Modern", "Aesthetics"], + imageSrc: "http://img.b2bpic.net/free-photo/painted-background-wallpaper-acrylic-paint-texture_53876-134375.jpg", imageAlt: "Abstract innovative design concept"}, { - id: "3", - title: "Exclusive Service", - author: "Personalized Care", - description: "Our dedicated team provides personalized service, from bespoke consultations to white-glove delivery, ensuring a seamless and delightful experience for every client.", - tags: [ - "Personalized", - "Support", - "White-glove", - ], - imageSrc: "http://img.b2bpic.net/free-photo/group-friends-reading-cell-phone-messages_23-2150409992.jpg", - imageAlt: "Customer service representative smiling", - }, + id: "3", title: "Exclusive Service", author: "Personalized Care", description: "Our dedicated team provides personalized service, from bespoke consultations to white-glove delivery, ensuring a seamless and delightful experience for every client.", tags: [ + "Personalized", "Support", "White-glove"], + imageSrc: "http://img.b2bpic.net/free-photo/group-friends-reading-cell-phone-messages_23-2150409992.jpg", imageAlt: "Customer service representative smiling"}, ]} title="Why Choose Premium Creations?" description="We are dedicated to delivering excellence in every aspect, from product conceptualization to customer satisfaction." @@ -185,72 +131,60 @@ export default function LandingPage() { useInvertedBackground={true} products={[ { - id: "1", - name: "The Timeless Chronograph", - price: "$2,500", - variant: "Steel & Leather", - imageSrc: "http://img.b2bpic.net/free-photo/abstract-ferromagnetic-mirrored-metal-upside-down_23-2148253662.jpg", - imageAlt: "Luxury watch with a leather strap", - }, + id: "1", name: "The Timeless Chronograph", price: "$2,500", variant: "Steel & Leather", imageSrc: "http://img.b2bpic.net/free-photo/abstract-ferromagnetic-mirrored-metal-upside-down_23-2148253662.jpg", imageAlt: "Luxury watch with a leather strap"}, { - id: "2", - name: "Elegant Carryall Tote", - price: "$1,800", - variant: "Italian Leather", - imageSrc: "http://img.b2bpic.net/free-photo/attractive-stylish-woman-posing-street-fashionable-outfit-suede-handbag-wearing-black-leather-jacket-white-lace-dress-spring-autumn-style_285396-6760.jpg", - imageAlt: "Designer handbag made of Italian leather", - }, + id: "2", name: "Elegant Carryall Tote", price: "$1,800", variant: "Italian Leather", imageSrc: "http://img.b2bpic.net/free-photo/attractive-stylish-woman-posing-street-fashionable-outfit-suede-handbag-wearing-black-leather-jacket-white-lace-dress-spring-autumn-style_285396-6760.jpg", imageAlt: "Designer handbag made of Italian leather"}, { - id: "3", - name: "The Bespoke Gentleman's Suit", - price: "$4,000", - variant: "Custom Tailored", - imageSrc: "http://img.b2bpic.net/free-photo/hands-creating-clothes-close-up_23-2149007421.jpg", - imageAlt: "Man in a perfectly tailored bespoke suit", - }, + id: "3", name: "The Bespoke Gentleman's Suit", price: "$4,000", variant: "Custom Tailored", imageSrc: "http://img.b2bpic.net/free-photo/hands-creating-clothes-close-up_23-2149007421.jpg", imageAlt: "Man in a perfectly tailored bespoke suit"}, ]} title="Our Exclusive Collection" description="Explore our limited edition products, each a testament to luxury and exceptional artistry. Crafted for distinction." /> +
+ +
+
-
-
@@ -286,19 +220,13 @@ export default function LandingPage() { socialLinks={[ { icon: Instagram, - href: "https://instagram.com", - ariaLabel: "Instagram", - }, + href: "https://instagram.com", ariaLabel: "Instagram"}, { icon: Facebook, - href: "https://facebook.com", - ariaLabel: "Facebook", - }, + href: "https://facebook.com", ariaLabel: "Facebook"}, { icon: Twitter, - href: "https://twitter.com", - ariaLabel: "Twitter", - }, + href: "https://twitter.com", ariaLabel: "Twitter"}, ]} />