From 51b6ca572b1c8b88f42e6051a36cfba2548bffbc Mon Sep 17 00:00:00 2001 From: development Date: Thu, 22 Jan 2026 10:43:59 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index aa8b14d..5cc4264 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,23 +5,16 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], + variable: "--font-open-sans", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Lavanda Flowers Studio | Premium Floral Arrangements", - description: "Handcrafted floral arrangements for weddings, events, and special occasions. Lavanda offers premium blooms and same-day delivery.", - keywords: "flowers, florist, arrangements, bouquet, wedding flowers, event flowers", - metadataBase: new URL("https://lavandastudio.com"), + title: "Lavanda Flowers Studio | Premium Floral Arrangements", description: "Handcrafted floral arrangements for weddings, events, and special occasions. Lavanda offers premium blooms and same-day delivery.", keywords: "flowers, florist, arrangements, bouquet, wedding flowers, event flowers", metadataBase: new URL("https://lavandastudio.com"), alternates: { canonical: "https://lavandastudio.com" }, openGraph: { - title: "Lavanda Flowers Studio", - description: "Handcrafted floral arrangements for every moment", - siteName: "Lavanda", - type: "website" + title: "Lavanda Flowers Studio", description: "Handcrafted floral arrangements for every moment", siteName: "Lavanda", type: "website" }, robots: { index: true, -- 2.49.1 From 66411b625d1ab00a768da00ecc19dee3070fc5e0 Mon Sep 17 00:00:00 2001 From: development Date: Thu, 22 Jan 2026 10:44:00 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 172 ++++++++++++++++++++++------------------------- 1 file changed, 79 insertions(+), 93 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index bc946e0..873f28c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,9 +7,9 @@ import MediaSplitTabsAbout from '@/components/sections/about/MediaSplitTabsAbout import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; +import ContactText from '@/components/sections/contact/ContactText'; import FooterBase from '@/components/sections/footer/FooterBase'; import { Sparkles, Leaf, Heart, Shield } from 'lucide-react'; -import Link from 'next/link'; export default function HomePage() { return ( @@ -35,8 +35,7 @@ export default function HomePage() { ]} brandName="Lavanda" button={{ - text: "Order Now", - href: "#" + text: "Order Now", href: "#" }} /> @@ -64,25 +63,41 @@ export default function HomePage() { description="Discover the art and passion behind every arrangement" tabs={[ { - id: "mission", - label: "Our Mission", - description: "At Lavanda, we believe flowers are more than decoration—they're a language of emotion. We craft each arrangement with intention, selecting the finest blooms and combining them into stunning compositions that tell your story." + id: "mission", label: "Our Mission", description: "At Lavanda, we believe flowers are more than decoration—they're a language of emotion. We craft each arrangement with intention, selecting the finest blooms and combining them into stunning compositions that tell your story." }, { - id: "craft", - label: "Our Craft", - description: "With over a decade of experience, our master florists blend traditional techniques with contemporary design. Every stem is chosen, every color considered, and every arrangement is a masterpiece created just for you." + id: "craft", label: "Our Craft", description: "With over a decade of experience, our master florists blend traditional techniques with contemporary design. Every stem is chosen, every color considered, and every arrangement is a masterpiece created just for you." }, { - id: "sustainability", - label: "Sustainability", - description: "We source flowers from local and ethical growers whenever possible. Our commitment to sustainability means beautiful arrangements that don't compromise the environment." + id: "sustainability", label: "Sustainability", description: "We source flowers from local and ethical growers whenever possible. Our commitment to sustainability means beautiful arrangements that don't compromise the environment." } ]} imageSrc="https://img.b2bpic.net/free-photo/white-basket-with-lavander-greenery_8353-12.jpg" imageAlt="Lavanda flower studio workspace" imagePosition="right" - useInvertedBackground="invertDefault" + useInvertedBackground="noInvert" + /> + + +
+
@@ -91,25 +106,21 @@ export default function HomePage() { features={[ { icon: Sparkles, - title: "Handcrafted Excellence", - description: "Every arrangement is individually designed by our master florists, ensuring unique beauty tailored to your occasion." + title: "Handcrafted Excellence", description: "Every arrangement is individually designed by our master florists, ensuring unique beauty tailored to your occasion." }, { icon: Leaf, - title: "Premium Blooms", - description: "We source the freshest, highest-quality flowers from trusted growers, guaranteeing longevity and radiance." + title: "Premium Blooms", description: "We source the freshest, highest-quality flowers from trusted growers, guaranteeing longevity and radiance." }, { icon: Heart, - title: "Personalized Service", - description: "From consultation to delivery, we work closely with you to create arrangements that capture your vision." + title: "Personalized Service", description: "From consultation to delivery, we work closely with you to create arrangements that capture your vision." }, { icon: Shield, - title: "Same-Day Delivery", - description: "Need flowers today? Our local delivery service ensures your arrangement arrives fresh and on time." + title: "Same-Day Delivery", description: "Need flowers today? Our local delivery service ensures your arrangement arrives fresh and on time." } - ] + ]} title="Why Choose Lavanda" description="Experience the difference that expertise, passion, and premium quality make" animationType="slide-up" @@ -122,91 +133,66 @@ export default function HomePage() { - +
+ +
+ + ); } \ No newline at end of file -- 2.49.1