diff --git a/src/app/page.tsx b/src/app/page.tsx index ea836ef..47593e4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,14 +2,14 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; +import FooterBase from '@/components/sections/footer/FooterBase'; import HeroOverlay from '@/components/sections/hero/HeroOverlay'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; +import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; import { Award, Calendar, Smile } from "lucide-react"; export default function LandingPage() { @@ -30,14 +30,10 @@ export default function LandingPage() {
@@ -91,26 +74,11 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={true} features={[ - { - id: "f1", title: "Wedding Events", tags: [ - "Premium", "Floral"], - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-provance-living-room-with-brown-sofa-near-fireplace-with-flowers-candles_8353-8450.jpg"}, - { - id: "f2", title: "Corporate Events", tags: [ - "Elegant", "Professional"], - imageSrc: "http://img.b2bpic.net/free-photo/cheerful-tanned-brunette-shorthaired-woman-floral-vneck-dress-chatting-phone-sits-desk-poses-cozy-fashion-designer-office_197531-29849.jpg"}, - { - id: "f3", title: "Special Occasions", tags: [ - "Unique", "Personalized"], - imageSrc: "http://img.b2bpic.net/free-photo/fancy-wedding-table-decorated-with-flowers_181624-27069.jpg"}, - { - id: "f4", title: "Boutique Bouquets", tags: [ - "Fresh", "Hand-tied"], - imageSrc: "http://img.b2bpic.net/free-photo/greenery-bouquet-with-roses-stand-feast-table_8353-11476.jpg"}, - { - id: "f5", title: "Installation Art", tags: [ - "Grand", "Immersive"], - imageSrc: "http://img.b2bpic.net/free-photo/pink-chrysanthemums-hang-threads-from-ceiling-dinner-hall_1304-3325.jpg"}, + { id: "f1", title: "Wedding Events", tags: ["Premium", "Floral"], imageSrc: "http://img.b2bpic.net/free-photo/beautiful-provance-living-room-with-brown-sofa-near-fireplace-with-flowers-candles_8353-8450.jpg" }, + { id: "f2", title: "Corporate Events", tags: ["Elegant", "Professional"], imageSrc: "http://img.b2bpic.net/free-photo/cheerful-tanned-brunette-shorthaired-woman-floral-vneck-dress-chatting-phone-sits-desk-poses-cozy-fashion-designer-office_197531-29849.jpg" }, + { id: "f3", title: "Special Occasions", tags: ["Unique", "Personalized"], imageSrc: "http://img.b2bpic.net/free-photo/fancy-wedding-table-decorated-with-flowers_181624-27069.jpg" }, + { id: "f4", title: "Boutique Bouquets", tags: ["Fresh", "Hand-tied"], imageSrc: "http://img.b2bpic.net/free-photo/greenery-bouquet-with-roses-stand-feast-table_8353-11476.jpg" }, + { id: "f5", title: "Installation Art", tags: ["Grand", "Immersive"], imageSrc: "http://img.b2bpic.net/free-photo/pink-chrysanthemums-hang-threads-from-ceiling-dinner-hall_1304-3325.jpg" }, ]} title="Our Signature Floral Services" description="Exquisite floral decor for every milestone." @@ -123,15 +91,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} metrics={[ - { - id: "m1", icon: Award, - title: "Years Experience", value: "45+"}, - { - id: "m2", icon: Smile, - title: "Satisfied Clients", value: "3535+"}, - { - id: "m3", icon: Calendar, - title: "Events Celebrated", value: "2689+"}, + { id: "m1", icon: Award, title: "Years Experience", value: "45+" }, + { id: "m2", icon: Smile, title: "Satisfied Clients", value: "3535+" }, + { id: "m3", icon: Calendar, title: "Events Celebrated", value: "2689+" }, ]} title="Our Floral Milestones" description="Creating excellence in every petal." @@ -139,66 +101,47 @@ export default function LandingPage() {