Files
ee90a499-158d-406a-84f8-ccf…/src/app/services/page.tsx

179 lines
7.5 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import MetricCardTen from "@/components/sections/metrics/MetricCardTen";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import Link from "next/link";
import { Leaf, MapPin, Sparkles } from "lucide-react";
export default function ServicesPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "#about" },
{ name: "Reviews", id: "#testimonials" },
{ name: "Contact", id: "#contact" },
];
const footerColumns = [
{
title: "Services",
items: [
{ label: "Garden Design", href: "/services" },
{ label: "Landscaping", href: "/services" },
{ label: "Lawn Care", href: "/services" },
{ label: "Plant Nursery", href: "/services" },
],
},
{
title: "Company",
items: [
{ label: "About Us", href: "#about" },
{ label: "Reviews", href: "#testimonials" },
{ label: "Contact", href: "#contact" },
{ label: "Service Area", href: "#metrics" },
],
},
{
title: "Contact Info",
items: [
{ label: "Phone: 081275 72001", href: "tel:08127572001" },
{ label: "Email: info@rahulassociate.com", href: "mailto:info@rahulassociate.com" },
{ label: "Address: Kaleshwar Complex, Pipersand Road, Lucknow 226008", href: "#" },
{ label: "Hours: 24/7 Available", href: "#" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="smallMedium"
sizing="mediumLargeSizeMediumTitles"
background="grid"
cardStyle="inset"
primaryButtonStyle="flat"
secondaryButtonStyle="solid"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={navItems}
brandName="Rahul Associate"
bottomLeftText="Lucknow, Uttar Pradesh"
bottomRightText="081275 72001"
/>
</div>
<div id="services-detail" data-section="services-detail">
<FeatureCardOne
title="Our Complete Service Offerings"
description="Explore all the professional landscaping and gardening services we provide to transform your outdoor spaces"
tag="Full Service Menu"
tagIcon={Leaf}
tagAnimation="slide-up"
textboxLayout="default"
features={[
{
title: "Garden Design & Decorating",
description: "We create custom garden designs that reflect your style and personality. From decorative plantings to water features, we bring your vision to life with expert attention to detail.",
imageSrc: "http://img.b2bpic.net/free-photo/woman-standing-outside-flower-shop_53876-71005.jpg?_wi=2",
imageAlt: "Beautiful garden design and decoration",
button: { text: "Get Your Design", href: "tel:08127572001" },
},
{
title: "Professional Landscaping Design",
description: "Our landscaping experts design and install beautiful outdoor spaces for homes and businesses. We handle everything from site assessment to installation using quality materials and plants.",
imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-man-s-hand-digging-soil-with-hoe_23-2148165180.jpg?_wi=2",
imageAlt: "Professional landscaping installation",
button: { text: "Start Project", href: "tel:08127572001" },
},
{
title: "Expert Lawn Care & Maintenance",
description: "Keep your lawn looking pristine year-round with our comprehensive lawn care services. We offer mowing, grass installation, fertilization, and seasonal maintenance tailored to Lucknow's climate.",
imageSrc: "http://img.b2bpic.net/free-photo/view-robot-tending-maintaining-gardens_23-2151803951.jpg?_wi=2",
imageAlt: "Professional lawn care and maintenance",
button: { text: "Book Service", href: "tel:08127572001" },
},
{
title: "Plant Nursery & Horticultural Services",
description: "Browse our extensive selection of plants, trees, and flowering varieties. We provide expert advice on plant selection, care, and horticultural services for all seasons.",
imageSrc: "http://img.b2bpic.net/free-photo/friends-having-sustainable-garden-indoors_23-2148999363.jpg?_wi=2",
imageAlt: "Plant nursery and horticulture",
button: { text: "View Nursery", href: "tel:08127572001" },
},
]}
gridVariant="two-columns-alternating-heights"
animationType="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="service-areas" data-section="service-areas">
<MetricCardTen
title="Service Coverage Areas"
description="We serve all major areas of Lucknow with same-day response and 24/7 emergency services available"
tag="Service Zones"
tagIcon={MapPin}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
metrics={[
{
id: "1",
title: "Gomti Nagar & Downtown",
subtitle: "Hazratganj, Lucknow Central - Same Day Service",
category: "Downtown",
value: "Available 24/7",
},
{
id: "2",
title: "East Lucknow Zones",
subtitle: "Alambagh, Aliganj, Vibhuti Khand - Quick Response",
category: "East Zone",
value: "Same Day",
},
{
id: "3",
title: "West & South Lucknow",
subtitle: "Charbagh, Aminabad, Thakurganj - On Demand Service",
category: "West Zone",
value: "24 Hours",
},
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
tag="Schedule Consultation"
title="Ready to Start Your Project?"
description="Get in touch with our team to discuss your landscaping and gardening needs. We offer free consultations and can provide detailed quotes for all projects."
tagIcon={Sparkles}
tagAnimation="slide-up"
useInvertedBackground={false}
inputPlaceholder="Enter your email"
buttonText="Get Free Quote"
termsText="We'll contact you within 24 hours with project details. Emergency services available anytime at 081275 72001."
background={{ variant: "rotated-rays-animated-grid" }}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/adult-going-date_23-2150168955.jpg?_wi=2"
imageAlt="Contact us footer banner"
logoText="Rahul Associate & Horticulture Landscape Garden"
copyrightText="© 2025 Rahul Associate & Horticulture Landscape Garden. All rights reserved."
columns={footerColumns}
/>
</div>
</ThemeProvider>
);
}