76 lines
3.7 KiB
TypeScript
76 lines
3.7 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
|
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
|
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-stagger"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="pill"
|
|
contentWidth="smallMedium"
|
|
sizing="largeSizeMediumTitles"
|
|
background="fluid"
|
|
cardStyle="solid"
|
|
primaryButtonStyle="diagonal-gradient"
|
|
secondaryButtonStyle="layered"
|
|
headingFontWeight="light"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleCentered
|
|
navItems={[
|
|
{ name: "Home", id: "/" },
|
|
{ name: "Collections", id: "/collections" },
|
|
{ name: "Gallery", id: "/gallery" },
|
|
{ name: "Custom Orders", id: "/custom" },
|
|
{ name: "About", id: "/about" },
|
|
{ name: "Contact", id: "/contact" },
|
|
{ name: "Help", id: "/help" }
|
|
]}
|
|
brandName="EverBloom Bridal"
|
|
/>
|
|
</div>
|
|
|
|
<div id="gallery-grid" data-section="gallery-grid">
|
|
<TestimonialCardTen
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
testimonials={[
|
|
{ id: "1", title: "Bridal Bouquet", quote: "Stunning ivory roses.", name: "Anjali V.", role: "Bride", imageSrc: "http://img.b2bpic.net/free-photo/white-surface-with-several-flowers-romantic-heart_23-2147601282.jpg" },
|
|
{ id: "2", title: "Flower Crown", quote: "Beautifully handcrafted.", name: "Sonia R.", role: "Bride", imageSrc: "http://img.b2bpic.net/free-photo/wedding-day-details-bridal-bouquet-shoes-accessories_23-2151976648.jpg" },
|
|
{ id: "3", title: "Ring Cushion", quote: "Exquisite details.", name: "Meera K.", role: "Bride", imageSrc: "http://img.b2bpic.net/free-photo/still-life-ruler-crown_23-2150248847.jpg" },
|
|
{ id: "4", title: "Boutonniere", quote: "Perfect accent.", name: "Kiran S.", role: "Groom", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=g22xro" },
|
|
{ id: "5", title: "Coordinated Set", quote: "Loved the matching set.", name: "Neha P.", role: "Bride", imageSrc: "http://img.b2bpic.net/free-photo/still-life-ruler-crown_23-2150248845.jpg" }
|
|
]}
|
|
title="Wedding Gallery"
|
|
description="Moments of beauty captured with our forever floral collection."
|
|
/>
|
|
</div>
|
|
|
|
<div id="metric" data-section="metric">
|
|
<MetricCardEleven
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
title="Impact"
|
|
description="Numbers that speak for our quality."
|
|
metrics={[{ id: "m1", value: "500+", title: "Happy Brides", description: "Satisfied customers in Bangalore.", imageSrc: "http://img.b2bpic.net/free-photo/wrapped-gift-boxes-with-baby-s-breath-flowers-tag-with-candles-scissor-wedding-rings_23-2147936485.jpg" }]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterLogoEmphasis
|
|
columns={[{ items: [{ label: "Home", href: "/" }, { label: "Collections", href: "/collections" }, { label: "Gallery", href: "/gallery" }] }, { items: [{ label: "Custom Orders", href: "/custom" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }, { items: [{ label: "Instagram", href: "https://instagram.com" }, { label: "Help", href: "/help" }] }]}
|
|
logoText="EverBloom Bridal"
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
} |