Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c05b4bb764 | |||
| d982577bdc | |||
| 30181b432b |
@@ -1,4 +1,4 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
@@ -7,6 +7,7 @@ import AboutMetric from '@/components/sections/about/AboutMetric';
|
|||||||
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
|
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
|
||||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||||
|
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
|
||||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
import { Award, Clock, Flower, Gift, Globe, Heart, Leaf, Mail, Sparkles, Star, Truck } from 'lucide-react';
|
import { Award, Clock, Flower, Gift, Globe, Heart, Leaf, Mail, Sparkles, Star, Truck } from 'lucide-react';
|
||||||
@@ -36,7 +37,6 @@ export default function LandingPage() {
|
|||||||
button={{
|
button={{
|
||||||
text: "Order Now", href: "#products"
|
text: "Order Now", href: "#products"
|
||||||
}}
|
}}
|
||||||
animateOnLoad={true}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -185,6 +185,31 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="team" data-section="team">
|
||||||
|
<TeamCardTwo
|
||||||
|
title="Meet Our Team"
|
||||||
|
description="The talented florists behind every beautiful arrangement."
|
||||||
|
members={[
|
||||||
|
{
|
||||||
|
id: "1", name: "Maria Gonzalez", role: "Head Florist", description: "Maria brings 15 years of experience in floral design and leads our creative team.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-dentist-dentistry-concept-dental-treatment_169016-67131.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "2", name: "James Patterson", role: "Floral Designer", description: "James specializes in modern arrangements and sustainable floral practices.", imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "3", name: "Emma Wilson", role: "Event Specialist", description: "Emma coordinates our large-scale event florals and custom wedding arrangements.", imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "4", name: "David Chen", role: "Floral Curator", description: "David sources our premium blooms and ensures quality across all our arrangements.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-woman-black-jacket-happy-short-haired-girl-dark-suit-widely-sincerely-smiles-isolated-background_197531-18508.jpg"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
gridVariant="uniform-all-items-equal"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCenter
|
<ContactCenter
|
||||||
tag="Get In Touch"
|
tag="Get In Touch"
|
||||||
@@ -214,7 +239,7 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
title: "About", items: [
|
title: "About", items: [
|
||||||
{ label: "Our Story", href: "#about" },
|
{ label: "Our Story", href: "#about" },
|
||||||
{ label: "Meet Our Florists", href: "#features" },
|
{ label: "Meet Our Florists", href: "#team" },
|
||||||
{ label: "Blog", href: "#" }
|
{ label: "Blog", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user