From 259bc40bd181ae46dfea5fef08c78b9aba6faafe Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 12:22:04 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 134 +++++++++++++++++---------------------- 1 file changed, 59 insertions(+), 75 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 86c853e..5923b25 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -3,24 +3,21 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { Sparkles, Phone } from "lucide-react"; +import { Phone, Mail, MapPin } from "lucide-react"; export default function ContactPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "Properties", id: "properties" }, - { name: "About", id: "about" }, - { name: "Team", id: "team" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "Properties", id: "/properties" }, + { name: "About", id: "/about" }, + { name: "Team", id: "/team" }, + { name: "Contact", id: "/contact" }, ]; const navButton = { - text: "Schedule Tour", - href: "/contact", - }; + text: "Schedule Tour", href: "/contact"}; return ( -
- -
- -
+
+
+
+
+
+
+ +
+

Phone

+

+91 (98765) 43210

+
+
+
+ +
+

Email

+

info@dreamintorealty.com

+
+
+
+ +
+

Location

+

Greater Noida & Jewar, UP

+
+
+
+
+ ); -} \ No newline at end of file +}