From dbbb64b8ca5a9af601375565ad6091f3286d5080 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 6 Jun 2026 14:55:02 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 465 +++++++++++------------------------------------ 1 file changed, 103 insertions(+), 362 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 656acfa..84a4914 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,6 +13,53 @@ import TeamCardOne from '@/components/sections/team/TeamCardOne'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import { Home } from "lucide-react"; +const commonNavItems = [ + { name: "Home", id: "/" }, + { name: "Properties", id: "/properties" }, + { name: "New Projects", id: "/new-projects" }, + { name: "Commercial", id: "/commercial" }, + { name: "Agents", id: "/agents" }, + { name: "Agencies", id: "/agencies" }, + { name: "Area Guides", id: "/area-guides" }, + { name: "Market Insights", id: "/market-insights" }, + { name: "Blog", id: "/blog" }, + { name: "Contact Us", id: "/contact" } +]; + +const commonFooterColumns = [ + { + title: "Quick Links", items: [ + { label: "Home", href: "/" }, + { label: "Properties", href: "/properties" }, + { label: "New Projects", href: "/new-projects" }, + { label: "Commercial", href: "/commercial" } + ] + }, + { + title: "About Us", items: [ + { label: "Agents", href: "/agents" }, + { label: "Agencies", href: "/agencies" }, + { label: "Market Insights", href: "/market-insights" }, + { label: "Contact Us", href: "/contact" } + ] + }, + { + title: "Resources", items: [ + { label: "Blog", href: "/blog" }, + { label: "Area Guides", href: "/area-guides" }, + { label: "FAQs", href: "/contact#faqs" }, + { label: "Privacy Policy", href: "/privacy-policy" } + ] + }, + { + title: "Contact", items: [ + { label: "info@brokersofbengaluru.com", href: "mailto:info@brokersofbengaluru.com" }, + { label: "+91 98765 43210", href: "tel:+919876543210" }, + { label: "Bengaluru, India", href: "#" } + ] + } +]; + export default function LandingPage() { return ( @@ -468,71 +273,7 @@ export default function LandingPage() { logoSrc="http://img.b2bpic.net/free-vector/business-card-with-abstract-shapes_23-2147593267.jpg" logoAlt="Brokers of Bengaluru Logo" logoText="Brokers of Bengaluru" - columns={[ - { - title: "Quick Links", - items: [ - { - label: "Home", - href: "/", - }, - { - label: "Properties", - href: "/properties", - }, - { - label: "New Projects", - href: "/new-projects", - }, - { - label: "Commercial", - href: "/commercial", - }, - ], - }, - { - title: "About Us", - items: [ - { - label: "Agents", - href: "/agents", - }, - { - label: "Agencies", - href: "/agencies", - }, - { - label: "Market Insights", - href: "/market-insights", - }, - { - label: "Contact Us", - href: "/contact", - }, - ], - }, - { - title: "Resources", - items: [ - { - label: "Blog", - href: "/blog", - }, - { - label: "Area Guides", - href: "/area-guides", - }, - { - label: "FAQs", - href: "/contact#faqs", - }, - { - label: "Privacy Policy", - href: "#", - }, - ], - }, - ]} + columns={commonFooterColumns} copyrightText="© 2024 Brokers of Bengaluru. All rights reserved." /> From 719f2a82c50626dd2b523afc0e979f31e9413d42 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 6 Jun 2026 14:55:03 +0000 Subject: [PATCH 2/3] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index be35e85..efe6053 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-manrope), sans-serif; + font-family: var(--font-inter), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-manrope), sans-serif; + font-family: var(--font-libre-baskerville), serif; } From 2cdab5ec2fe7608efaee152f66d82f493f5a9977 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 6 Jun 2026 14:55:03 +0000 Subject: [PATCH 3/3] Update src/app/styles/variables.css --- src/app/styles/variables.css | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 938ba93..b7afc67 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #0a0a0a; - --card: #1a1a1a; - --foreground: #ffffff; - --primary-cta: #FFD700; - --primary-cta-text: #0a0a0a; - --secondary-cta: #ffffff; - --secondary-cta-text: #0a0a0a; - --accent: #B8860B; - --background-accent: #594b29; + --background: #f5f4ef; + --card: #dad6cd; + --foreground: #2a2928; + --primary-cta: #2a2928; + --primary-cta-text: #f5f4ef; + --secondary-cta: #ecebea; + --secondary-cta-text: #2a2928; + --accent: #ffffff; + --background-accent: #c6b180; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);