Update src/app/page.tsx
This commit is contained in:
@@ -3,17 +3,17 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
|
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
|
||||||
import ContactText from '@/components/sections/contact/ContactText';
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||||
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
|
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
|
||||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
|
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
|
||||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
|
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
|
||||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||||
import { Award, Sparkles, Star } from "lucide-react";
|
import { Award, Sparkles, Star, MessageSquare } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -236,7 +236,7 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
<div id="faq" data-section="faq">
|
||||||
<FaqBase
|
<FaqSplitMedia
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
@@ -252,26 +252,33 @@ export default function LandingPage() {
|
|||||||
title="Your Questions, Our Expertise"
|
title="Your Questions, Our Expertise"
|
||||||
description="Find answers to common inquiries about ZANURI services, bookings, products, and our unique approach to luxury pet care. We're here to provide clarity and peace of mind."
|
description="Find answers to common inquiries about ZANURI services, bookings, products, and our unique approach to luxury pet care. We're here to provide clarity and peace of mind."
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
|
imageSrc="http://img.b2bpic.net/free-photo/beautiful-cute-girl-her-companion_23-2148797403.jpg"
|
||||||
|
imageAlt="Happy golden retriever being pampered at a luxury spa"
|
||||||
|
mediaAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactText
|
<ContactSplit
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{
|
background={{
|
||||||
variant: "radial-gradient"}}
|
variant: "radial-gradient"}}
|
||||||
text="Ready to pamper your pet with the ZANURI experience? Contact us today to schedule an appointment, inquire about our services, or explore our exquisite boutique collection."
|
tag="Connect with Us"
|
||||||
buttons={[
|
tagIcon={MessageSquare}
|
||||||
{
|
title="Schedule Your Pet's Luxury Experience"
|
||||||
text: "Book an Appointment", href: "#"},
|
description="Ready to pamper your pet with the ZANURI experience? Contact us today to schedule an appointment, inquire about our services, or explore our exquisite boutique collection."
|
||||||
{
|
inputPlaceholder="Your Email Address"
|
||||||
text: "Send an Inquiry", href: "#"},
|
buttonText="Book Now"
|
||||||
]}
|
termsText="By booking, you agree to our Terms and Conditions."
|
||||||
|
onSubmit={(email) => console.log('Booking requested for:', email)}
|
||||||
|
imageSrc="http://img.b2bpic.net/free-photo/woman-with-chihuahua-dog_52683-110310.jpg"
|
||||||
|
imageAlt="Woman lovingly holding a chihuahua, symbolizing connection and care"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterSimple
|
<FooterBaseReveal
|
||||||
|
logoText="ZANURI"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "ZANURI", items: [
|
title: "ZANURI", items: [
|
||||||
@@ -314,8 +321,8 @@ export default function LandingPage() {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
bottomLeftText="© 2024 ZANURI. All rights reserved."
|
copyrightText="© 2024 ZANURI. All rights reserved."
|
||||||
bottomRightText="Privacy Policy"
|
onPrivacyClick={() => console.log('Privacy Policy clicked')}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
Reference in New Issue
Block a user