diff --git a/src/app/page.tsx b/src/app/page.tsx index aaa5177..b6c96f4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,8 +2,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FaqBase from '@/components/sections/faq/FaqBase'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FaqDouble from '@/components/sections/faq/FaqDouble'; import FooterCard from '@/components/sections/footer/FooterCard'; import HeroOverlay from '@/components/sections/hero/HeroOverlay'; import MediaAbout from '@/components/sections/about/MediaAbout'; @@ -11,7 +11,7 @@ import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; +import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import { Facebook, Instagram, Twitter } from "lucide-react"; export default function LandingPage() { @@ -32,22 +32,10 @@ export default function LandingPage() {
@@ -98,48 +59,10 @@ export default function LandingPage() { gridVariant="four-items-2x2-equal-grid" useInvertedBackground={false} products={[ - { - id: "1", - name: "Elegant Classic", - price: "From $1,200", - variant: "Classic Luxury", - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-decoration-children-s-baptism_58702-1505.jpg?_wi=1", - }, - { - id: "2", - name: "Vintage Charm", - price: "From $950", - variant: "Rustic Warmth", - imageSrc: "http://img.b2bpic.net/free-photo/golden-bottles-with-ribbons-pine-leaves_23-2148347375.jpg?_wi=1", - }, - { - id: "3", - name: "Boho Chic", - price: "From $850", - variant: "Free-spirited", - imageSrc: "http://img.b2bpic.net/free-photo/champagne-flutes-decorated-with-tiny-roses-stand-table_8353-611.jpg?_wi=1", - }, - { - id: "4", - name: "Industrial Bold", - price: "From $1,500", - variant: "Urban Modern", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-glassware_107420-74258.jpg?_wi=1", - }, - { - id: "5", - name: "Grand Gala", - price: "From $2,000", - variant: "Sophisticated", - imageSrc: "http://img.b2bpic.net/free-photo/closeup-photo-huge-bouquet-made-hydrangeas-standing-table-large-luxurious-room_627829-8201.jpg", - }, - { - id: "6", - name: "Bright Garden", - price: "From $1,100", - variant: "Fresh Airy", - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-decor-wedding-restaurant_8353-9097.jpg", - }, + { id: "1", name: "Elegant Classic", price: "From $1,200", variant: "Classic Luxury", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-decoration-children-s-baptism_58702-1505.jpg?_wi=1" }, + { id: "2", name: "Vintage Charm", price: "From $950", variant: "Rustic Warmth", imageSrc: "http://img.b2bpic.net/free-photo/golden-bottles-with-ribbons-pine-leaves_23-2148347375.jpg?_wi=1" }, + { id: "3", name: "Boho Chic", price: "From $850", variant: "Free-spirited", imageSrc: "http://img.b2bpic.net/free-photo/champagne-flutes-decorated-with-tiny-roses-stand-table_8353-611.jpg?_wi=1" }, + { id: "4", name: "Industrial Bold", price: "From $1,500", variant: "Urban Modern", imageSrc: "http://img.b2bpic.net/free-photo/close-up-glassware_107420-74258.jpg?_wi=1" } ]} title="Our Decoration Styles" description="Select from our signature design packages to craft the perfect atmosphere for your venue." @@ -161,36 +84,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} metrics={[ - { - id: "m1", - value: "500+", - title: "Events Styled", - items: [ - "Corporate galas", - "Private parties", - "Wedding celebrations", - ], - }, - { - id: "m2", - value: "98%", - title: "Client Satisfaction", - items: [ - "Referral-based", - "Trustworthy service", - "Quality assurance", - ], - }, - { - id: "m3", - value: "12", - title: "Signature Styles", - items: [ - "Classic", - "Modern", - "Custom tailored", - ], - }, + { id: "m1", value: "500+", title: "Events Styled", items: ["Corporate galas", "Private parties", "Wedding celebrations"] }, + { id: "m2", value: "98%", title: "Client Satisfaction", items: ["Referral-based", "Trustworthy service", "Quality assurance"] }, + { id: "m3", value: "12", title: "Signature Styles", items: ["Classic", "Modern", "Custom tailored"] }, ]} title="Our Impact in Numbers" description="Consistently delivering premium event styling for satisfied clients." @@ -198,68 +94,18 @@ export default function LandingPage() {