Add src/app/contact/page.tsx
This commit is contained in:
90
src/app/contact/page.tsx
Normal file
90
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,90 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { Phone, MessageCircle, MapPin, Mail } from "lucide-react";
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="compact"
|
||||
sizing="largeSmallSizeMediumTitles"
|
||||
background="fluid"
|
||||
cardStyle="inset"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Plants", id: "plants" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
button={{ text: "Call Now", href: "tel:+923139554161" }}
|
||||
brandName="OBAID Nursery"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
title="Get In Touch With OBAID Nursery"
|
||||
description="Have questions about our plants or services? We're here to help! Contact us via phone, WhatsApp, or email. Our team responds quickly to all inquiries."
|
||||
background={{ variant: "plain" }}
|
||||
tag="Contact Us"
|
||||
tagIcon={Mail}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Call Now", href: "tel:+923139554161" },
|
||||
{ text: "WhatsApp", href: "https://wa.me/923139554161" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-view-field-covered-green-grass-captured-canggu-bali_181624-7666.jpg"
|
||||
imageAlt="OBAID Nursery contact and location"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-form" data-section="contact-form">
|
||||
<ContactSplit
|
||||
tag="Newsletter"
|
||||
title="Stay Updated With Our Latest Plants"
|
||||
description="Subscribe to our newsletter to receive updates about new plant arrivals, seasonal offers, and expert gardening tips delivered to your inbox."
|
||||
tagIcon={Mail}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-shot-green-plants-with-waterdrops-leaves-garden_181624-14346.jpg"
|
||||
imageAlt="Green plants at OBAID Nursery"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Enter your email address"
|
||||
buttonText="Subscribe"
|
||||
termsText="We respect your privacy. Unsubscribe at any time. We send updates about new arrivals and special offers."
|
||||
onSubmit={(email) => console.log('Subscribed with email:', email)}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="OBAID Nursery"
|
||||
copyrightText="© 2025 OBAID Nursery Farm Baloo. All rights reserved."
|
||||
socialLinks={[
|
||||
{ icon: Phone, href: "tel:+923139554161", ariaLabel: "Call OBAID Nursery" },
|
||||
{ icon: MessageCircle, href: "https://wa.me/923139554161", ariaLabel: "WhatsApp OBAID Nursery" },
|
||||
{ icon: MapPin, href: "https://maps.google.com/?q=Baloo,+Tehsil+Nowshera,+KPK,+Pakistan", ariaLabel: "Get directions to OBAID Nursery" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user