Merge version_1 into main #3
@@ -2,13 +2,26 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import { Facebook, Instagram, Mail, MapPin, Phone } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function BouquetsPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Bouquets", id: "/bouquets" },
|
||||
{ name: "Baskets", id: "/baskets" },
|
||||
{ name: "Flowers", id: "/flowers" },
|
||||
{ name: "Special Orders", id: "/special-orders" },
|
||||
{ name: "Events", id: "/events" },
|
||||
{ name: "Subscriptions", id: "/subscriptions" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
const commonAuthor = {
|
||||
authorName: "Karamvir's Team", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-portrait-happy-carefree-man-has-toothy-smile-shows-perfect-white-teeth-looks-gladfully_273609-33584.jpg", date: "July 24, 2024"
|
||||
};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
@@ -23,158 +36,39 @@ export default function LandingPage() {
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Bouquets",
|
||||
id: "/bouquets",
|
||||
},
|
||||
{
|
||||
name: "Baskets",
|
||||
id: "/baskets",
|
||||
},
|
||||
{
|
||||
name: "Flowers",
|
||||
id: "/flowers",
|
||||
},
|
||||
{
|
||||
name: "Special Orders",
|
||||
id: "/special-orders",
|
||||
},
|
||||
{
|
||||
name: "Events",
|
||||
id: "/events",
|
||||
},
|
||||
{
|
||||
name: "Subscriptions",
|
||||
id: "/subscriptions",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Karamvir's Flower Shop"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={navItems}
|
||||
brandName="Karamvir's Flower Shop"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="bouquet-blog" data-section="bouquet-blog">
|
||||
<BlogCardTwo
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
title="Our Exquisite Bouquet Collection"
|
||||
description="Hand-tied with love, our bouquets are designed to celebrate life's moments."
|
||||
blogs={[
|
||||
{
|
||||
id: "b1",
|
||||
category: "Spring Collection",
|
||||
title: "Vibrant Spring Blooms",
|
||||
excerpt: "A symphony of seasonal colors, perfect for brightening any day.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-holding-flower-arrangement-pumpkin_169016-5459.jpg",
|
||||
imageAlt: "Vibrant spring bouquet",
|
||||
},
|
||||
{
|
||||
id: "b2",
|
||||
category: "Classic Romance",
|
||||
title: "Timeless Red Roses",
|
||||
excerpt: "Symbolizing eternal love, our classic red rose bouquets speak volumes.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chrysanthemum-vase-with-red-background_23-2149307878.jpg",
|
||||
imageAlt: "Classic red rose bouquet",
|
||||
},
|
||||
{
|
||||
id: "b3",
|
||||
category: "Joyful Moments",
|
||||
title: "Sunny Sunflowers & Daisies",
|
||||
excerpt: "Bring cheer and warmth with our bright and happy sunflower arrangements.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/arrangement-dried-autumn-flowers_23-2151621976.jpg",
|
||||
imageAlt: "Sunflower and daisy bouquet",
|
||||
},
|
||||
{
|
||||
id: "b4",
|
||||
category: "Wedding Wonders",
|
||||
title: "Delicate Bridal Pastels",
|
||||
excerpt: "Soft hues and elegant designs to complement your perfect wedding day.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wedding-invitation-envelopes-table_23-2148461306.jpg",
|
||||
imageAlt: "Pastel wedding bouquet",
|
||||
},
|
||||
{
|
||||
id: "b5",
|
||||
category: "Exotic & Rare",
|
||||
title: "Majestic Orchid Bouquets",
|
||||
excerpt: "Experience the allure of the tropics with our stunning orchid creations.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/display-shiny-elegant-gold-chain_23-2149635327.jpg",
|
||||
imageAlt: "Exotic orchid bouquet",
|
||||
},
|
||||
{
|
||||
id: "b6",
|
||||
category: "Rustic Charm",
|
||||
title: "Wildflower Meadow Mix",
|
||||
excerpt: "Embrace natural beauty with our charming and organic wildflower bouquets.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/autumnal-background-with-foliage-flat-style_23-2147567865.jpg",
|
||||
imageAlt: "Wildflower meadow bouquet",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="bouquet-blog" data-section="bouquet-blog">
|
||||
<BlogCardTwo
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
title="Our Exquisite Bouquet Collection"
|
||||
description="Hand-tied with love, our bouquets are designed to celebrate life's moments."
|
||||
blogs={[
|
||||
{ id: "b1", category: "Spring Collection", title: "Vibrant Spring Blooms", excerpt: "A symphony of seasonal colors, perfect for brightening any day.", imageSrc: "http://img.b2bpic.net/free-photo/girl-holding-flower-arrangement-pumpkin_169016-5459.jpg", imageAlt: "Vibrant spring bouquet", ...commonAuthor },
|
||||
{ id: "b2", category: "Classic Romance", title: "Timeless Red Roses", excerpt: "Symbolizing eternal love, our classic red rose bouquets speak volumes.", imageSrc: "http://img.b2bpic.net/free-photo/chrysanthemum-vase-with-red-background_23-2149307878.jpg", imageAlt: "Classic red rose bouquet", ...commonAuthor },
|
||||
{ id: "b3", category: "Joyful Moments", title: "Sunny Sunflowers & Daisies", excerpt: "Bring cheer and warmth with our bright and happy sunflower arrangements.", imageSrc: "http://img.b2bpic.net/free-photo/arrangement-dried-autumn-flowers_23-2151621976.jpg", imageAlt: "Sunflower and daisy bouquet", ...commonAuthor },
|
||||
{ id: "b4", category: "Wedding Wonders", title: "Delicate Bridal Pastels", excerpt: "Soft hues and elegant designs to complement your perfect wedding day.", imageSrc: "http://img.b2bpic.net/free-photo/wedding-invitation-envelopes-table_23-2148461306.jpg", imageAlt: "Pastel wedding bouquet", ...commonAuthor },
|
||||
{ id: "b5", category: "Exotic & Rare", title: "Majestic Orchid Bouquets", excerpt: "Experience the allure of the tropics with our stunning orchid creations.", imageSrc: "http://img.b2bpic.net/free-photo/display-shiny-elegant-gold-chain_23-2149635327.jpg", imageAlt: "Exotic orchid bouquet", ...commonAuthor },
|
||||
{ id: "b6", category: "Rustic Charm", title: "Wildflower Meadow Mix", excerpt: "Embrace natural beauty with our charming and organic wildflower bouquets.", imageSrc: "http://img.b2bpic.net/free-vector/autumnal-background-with-foliage-flat-style_23-2147567865.jpg", imageAlt: "Wildflower meadow bouquet", ...commonAuthor }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="bouquets-social-proof" data-section="bouquets-social-proof">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Wedding Planners Guild",
|
||||
"Luxury Event Organizers",
|
||||
"Agra Celebrations",
|
||||
"Grand Hotel Flora",
|
||||
"Festive Decor India",
|
||||
"Elite Parties Co.",
|
||||
"Blissful Events",
|
||||
]}
|
||||
title="Trusted by Events & Celebrations"
|
||||
description="Our bouquets have adorned countless special occasions, earning praise for their beauty and quality."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoSrc="http://img.b2bpic.net/free-vector/set-hand-drawn-botanical-elements-vector_53876-61965.jpg"
|
||||
logoAlt="Karamvir's Flower Shop Logo"
|
||||
logoText="Karamvir's Flower Shop"
|
||||
copyrightText="© 2024 Karamvir's Flower Shop. All rights reserved."
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "https://instagram.com",
|
||||
ariaLabel: "Instagram",
|
||||
},
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "https://facebook.com",
|
||||
ariaLabel: "Facebook",
|
||||
},
|
||||
{
|
||||
icon: MapPin,
|
||||
href: "https://www.google.com/maps/place/Karamvir's+Flower+Shop",
|
||||
ariaLabel: "Location on Google Maps",
|
||||
},
|
||||
{
|
||||
icon: Phone,
|
||||
href: "tel:8979072122",
|
||||
ariaLabel: "Call Us",
|
||||
},
|
||||
{
|
||||
icon: Mail,
|
||||
href: "mailto:p8009427@gmail.com",
|
||||
ariaLabel: "Email Us",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="bouquets-social-proof" data-section="bouquets-social-proof">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={["Wedding Planners Guild", "Luxury Event Organizers", "Agra Celebrations", "Grand Hotel Flora", "Festive Decor India", "Elite Parties Co.", "Blissful Events"]}
|
||||
title="Trusted by Events & Celebrations"
|
||||
description="Our bouquets have adorned countless special occasions, earning praise for their beauty and quality."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user