From 36a9b883e9a5c70fdc22889249a7c9d09308f920 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 18:56:48 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 29 +++++++++++++++++------------ 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3aecb50..106b96e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,7 +11,7 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import ContactText from '@/components/sections/contact/ContactText'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { Sparkles, Ring, Heart, Cake, Briefcase, Users, Sun, MapPin, Star, Leaf } from 'lucide-react'; +import { Sparkles, Heart, Cake, Briefcase, Users, Sun, MapPin, Star, Leaf } from 'lucide-react'; export default function LandingPage() { return ( @@ -99,7 +99,7 @@ export default function LandingPage() { title="Perfect for Every Celebration" description="From intimate gatherings to grand celebrations, The Olivia Gardens offers versatile spaces designed to host your most cherished moments." features={[ - { icon: Ring, title: "Wedding Functions", description: "Elegant wedding ceremonies and receptions in our beautifully landscaped garden setting." }, + { icon: Heart, title: "Wedding Functions", description: "Elegant wedding ceremonies and receptions in our beautifully landscaped garden setting." }, { icon: Heart, title: "Engagement Ceremonies", description: "Celebrate your love with romantic engagement parties in our peaceful outdoor ambiance." }, { icon: Cake, title: "Birthday Celebrations", description: "Create unforgettable memories with birthday parties in our spacious garden lawns." }, { icon: Briefcase, title: "Corporate Gatherings", description: "Host professional events and team celebrations in our elegant outdoor venue." }, @@ -114,8 +114,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={true} containerClassName="py-20" - titleClassName="text-3xl md:text-4xl font-semibold mb-4" - descriptionClassName="text-lg text-gray-600 mb-12" + textBoxClassName="" + textBoxTitleClassName="text-3xl md:text-4xl font-semibold mb-4" + textBoxDescriptionClassName="text-lg text-gray-600 mb-12" cardClassName="p-8 rounded-xl border border-gray-200 hover:border-green-400 transition-colors" iconContainerClassName="mb-4" iconClassName="w-8 h-8 text-[var(--primary-cta)]" @@ -141,8 +142,9 @@ export default function LandingPage() { tag="Guest Reviews" tagAnimation="slide-up" containerClassName="py-20" - titleClassName="text-3xl md:text-4xl font-semibold mb-4" - descriptionClassName="text-lg text-gray-600 mb-12" + textBoxClassName="" + textBoxTitleClassName="text-3xl md:text-4xl font-semibold mb-4" + textBoxDescriptionClassName="text-lg text-gray-600 mb-12" quoteCardClassName="p-8 rounded-xl bg-white border border-gray-200 hover:shadow-lg transition-shadow" testimonialTitleClassName="text-lg font-semibold text-[var(--primary-cta)] mb-3" quoteClassName="text-gray-700 mb-6 leading-relaxed italic" @@ -169,8 +171,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={true} containerClassName="py-20" - titleClassName="text-3xl md:text-4xl font-semibold mb-4" - descriptionClassName="text-lg text-gray-600 mb-12" + textBoxClassName="" + textBoxTitleClassName="text-3xl md:text-4xl font-semibold mb-4" + textBoxDescriptionClassName="text-lg text-gray-600 mb-12" cardClassName="p-8 rounded-xl bg-white border border-gray-200 text-center hover:shadow-lg transition-shadow" iconContainerClassName="mb-4 flex justify-center" iconClassName="w-8 h-8 text-[var(--primary-cta)]" @@ -199,8 +202,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} containerClassName="py-20" - titleClassName="text-3xl md:text-4xl font-semibold mb-4" - descriptionClassName="text-lg text-gray-600 mb-12" + textBoxClassName="" + textBoxTitleClassName="text-3xl md:text-4xl font-semibold mb-4" + textBoxDescriptionClassName="text-lg text-gray-600 mb-12" cardClassName="rounded-xl overflow-hidden group cursor-pointer" imageClassName="w-full h-full object-cover group-hover:scale-105 transition-transform duration-300" cardBrandClassName="text-sm font-medium text-[var(--primary-cta)]" @@ -237,8 +241,9 @@ export default function LandingPage() { animationType="smooth" showCard={true} containerClassName="py-20" - titleClassName="text-3xl md:text-4xl font-semibold mb-4" - descriptionClassName="text-lg text-gray-600 mb-12" + textBoxClassName="" + textBoxTitleClassName="text-3xl md:text-4xl font-semibold mb-4" + textBoxDescriptionClassName="text-lg text-gray-600 mb-12" accordionClassName="space-y-4" accordionTitleClassName="font-semibold text-gray-900" accordionContentClassName="text-gray-600 leading-relaxed" -- 2.49.1