Files
5d18e1eb-8163-473b-a213-324…/src/app/services/page.tsx

158 lines
5.7 KiB
TypeScript

"use client";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve";
import ProductCardOne from "@/components/sections/product/ProductCardOne";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import Link from "next/link";
export default function ServicesPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
title: "Company",
items: [
{ label: "About Us", href: "/about" },
{ label: "Our Services", href: "/services" },
{ label: "Contact Us", href: "/contact" },
{ label: "Careers", href: "#" },
],
},
{
title: "Properties",
items: [
{ label: "Residential", href: "#" },
{ label: "Commercial", href: "#" },
{ label: "Investment", href: "#" },
{ label: "Featured Listings", href: "#" },
],
},
{
title: "Legal",
items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Disclaimer", href: "#" },
{ label: "Contact", href: "/contact" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="mediumSmall"
sizing="mediumLarge"
background="noiseDiagonalGradient"
cardStyle="gradient-radial"
primaryButtonStyle="shadow"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarStyleApple brandName="Hemangi Realty" navItems={navItems} />
</div>
<div id="services" data-section="services">
<FeatureCardTwelve
title="Our Services"
description="Comprehensive real estate solutions tailored to your needs, whether you're buying, selling, or investing."
features={[
{
id: "buying",
label: "Buying",
title: "Property Buying Assistance",
items: [
"Expert market analysis and property evaluation",
"Personalized property matching and site visits",
"Negotiation support for best pricing",
"Legal documentation and compliance guidance",
],
},
{
id: "selling",
label: "Selling",
title: "Property Selling Support",
items: [
"Professional property valuation and listing strategy",
"High-quality photography and virtual tours",
"Active buyer sourcing and marketing campaigns",
"Smooth transaction management and closing",
],
},
{
id: "investing",
label: "Investing",
title: "Real Estate Investment Guidance",
items: [
"Investment opportunity analysis and ROI projections",
"Residential and commercial portfolio diversification",
"Market trends and growth potential assessment",
"Long-term wealth building strategy consultation",
],
},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
/>
</div>
<div id="properties" data-section="properties">
<ProductCardOne
title="Featured Properties"
description="Explore our current collection of premium residential and commercial properties available in Nagpur."
products={[
{
id: "1",
name: "Luxury Residential Apartment",
price: "₹85 Lakhs",
imageSrc:
"http://img.b2bpic.net/free-photo/plates-brown-wooden-table_417767-541.jpg?_wi=2",
imageAlt: "Modern luxury residential apartment",
},
{
id: "2",
name: "Commercial Office Space",
price: "₹2.5 Cr",
imageSrc:
"http://img.b2bpic.net/free-photo/experienced-colleagues-standing-office-room-looking-each-other-professional-content-ceo-pretty-businesswomen-discussing-work-project-business-communication-corporation-concept_74855-11683.jpg?_wi=2",
imageAlt: "Modern commercial office space interior",
},
{
id: "3",
name: "Family Home with Garden",
price: "₹1.2 Cr",
imageSrc:
"http://img.b2bpic.net/free-photo/front-view-front-door-with-blue-wall_23-2149360642.jpg?_wi=2",
imageAlt: "Residential family home property",
},
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/company-managers-reporting-female-boss-businesspeople-sitting-meeting-table-with-holding-paper-talking-business-discussion-teamwork-concept_74855-11624.jpg?_wi=3"
imageAlt="Hemangi Realty Office Interior"
logoText="Hemangi Realty"
copyrightText="© 2025 Hemangi Realty. All rights reserved. | Nagpur, Maharashtra"
columns={footerColumns}
/>
</div>
</ThemeProvider>
);
}