Update src/app/services/page.tsx

This commit is contained in:
2026-04-01 06:49:51 +00:00
parent dc0e49d6cc
commit d0ec49e7ab

View File

@@ -7,37 +7,29 @@ import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
export default function LandingPage() {
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Properties",
id: "/properties",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Properties", id: "/properties" },
{ name: "Contact", id: "/contact" },
]}
brandName="Happy Homes"
/>
@@ -48,24 +40,9 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
features={[
{
id: 1,
title: "Buying Assistance",
description: "Find your dream home with our vetted listings.",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-holding-digital-tablet-standing-outdoor_23-2147862770.jpg?_wi=3",
},
{
id: 2,
title: "Selling Strategy",
description: "Maximize your property value in the current market.",
imageSrc: "http://img.b2bpic.net/free-vector/fairytale-collection-houses_23-2147781002.jpg?_wi=3",
},
{
id: 3,
title: "Investment Advisory",
description: "Smart real estate investment opportunities in Mumbai.",
imageSrc: "http://img.b2bpic.net/free-photo/luxury-bedroom-hotel_1150-10836.jpg?_wi=2",
},
{ id: 1, title: "Buying Assistance", description: "Find your dream home with our vetted listings.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-holding-digital-tablet-standing-outdoor_23-2147862770.jpg" },
{ id: 2, title: "Selling Strategy", description: "Maximize your property value in the current market.", imageSrc: "http://img.b2bpic.net/free-vector/fairytale-collection-houses_23-2147781002.jpg" },
{ id: 3, title: "Investment Advisory", description: "Smart real estate investment opportunities in Mumbai.", imageSrc: "http://img.b2bpic.net/free-photo/luxury-bedroom-hotel_1150-10836.jpg" }
]}
title="Our Expertise"
description="Comprehensive real estate solutions tailored to your needs."
@@ -81,38 +58,13 @@ export default function LandingPage() {
description="Expert advice for every budget."
plans={[
{
id: "basic",
badge: "Trial",
price: "₹10k",
subtitle: "Get started",
buttons: [
{
text: "Join",
href: "/contact",
},
],
features: [
"Consulting",
"Analysis",
],
id: "basic", badge: "Trial", price: "₹10k", subtitle: "Get started", buttons: [{ text: "Join", href: "/contact" }],
features: ["Consulting", "Analysis"]
},
{
id: "full",
badge: "Pro",
price: "₹50k",
subtitle: "Complete service",
buttons: [
{
text: "Join",
href: "/contact",
},
],
features: [
"Consulting",
"Documentation",
"Closing support",
],
},
id: "full", badge: "Pro", price: "₹50k", subtitle: "Complete service", buttons: [{ text: "Join", href: "/contact" }],
features: ["Consulting", "Documentation", "Closing support"]
}
]}
/>
</div>
@@ -120,45 +72,9 @@ export default function LandingPage() {
<div id="footer-main" data-section="footer-main">
<FooterBase
columns={[
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Services",
href: "/services",
},
],
},
{
title: "Properties",
items: [
{
label: "Buy",
href: "/properties",
},
{
label: "Rent",
href: "/properties",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Contact",
href: "/contact",
},
],
},
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Services", href: "/services" }] },
{ title: "Properties", items: [{ label: "Buy", href: "/properties" }, { label: "Rent", href: "/properties" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Contact", href: "/contact" }] }
]}
logoText="Happy Homes"
/>
@@ -166,4 +82,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}