Update src/app/about/page.tsx

This commit is contained in:
2026-03-09 20:49:46 +00:00
parent b2cebd53f5
commit aa16e105fb

View File

@@ -11,35 +11,32 @@ import { Home, Users, TrendingUp, Award } from "lucide-react";
export default function AboutPage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "Properties", id: "properties" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "FAQ", id: "faq" },
{ name: "Home", id: "/" },
{ name: "Properties", id: "/properties" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
{ name: "FAQ", id: "/faq" },
];
const footerColumns = [
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Our Team", href: "/about" },
{ label: "Properties", href: "/" },
{ label: "Properties", href: "/properties" },
{ label: "Blog", href: "https://blog.telavivrealty.com" },
],
},
{
title: "Services",
items: [
{ label: "Buy Property", href: "/" },
title: "Services", items: [
{ label: "Buy Property", href: "/properties" },
{ label: "Sell Property", href: "/contact" },
{ label: "Investment", href: "/contact" },
{ label: "Consultation", href: "/contact" },
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms & Conditions", href: "#" },
{ label: "Contact", href: "/contact" },
@@ -66,9 +63,7 @@ export default function AboutPage() {
brandName="TelAviv Realty"
navItems={navItems}
button={{
text: "Schedule Viewing",
href: "/contact",
}}
text: "Schedule Viewing", href: "/contact"}}
/>
</div>
@@ -76,24 +71,16 @@ export default function AboutPage() {
<InlineImageSplitTextAbout
heading={[
{
type: "text",
content: "20+ Years of Excellence in",
},
type: "text", content: "20+ Years of Excellence in"},
{
type: "text",
content: "Tel-Aviv Real Estate",
},
type: "text", content: "Tel-Aviv Real Estate"},
]}
useInvertedBackground={false}
buttons={[
{
text: "Learn Our Story",
href: "/about",
},
text: "Learn Our Story", href: "/about"},
{
text: "Meet Our Team",
href: "/contact",
},
text: "Meet Our Team", href: "/contact"},
]}
ariaLabel="Company overview and mission"
/>
@@ -103,29 +90,17 @@ export default function AboutPage() {
<MetricCardThree
metrics={[
{
id: "1",
icon: Home,
title: "Properties Sold",
value: "850+",
},
id: "1", icon: Home,
title: "Properties Sold", value: "850+"},
{
id: "2",
icon: Users,
title: "Happy Clients",
value: "2,400+",
},
id: "2", icon: Users,
title: "Happy Clients", value: "2,400+"},
{
id: "3",
icon: TrendingUp,
title: "Market Growth",
value: "35%",
},
id: "3", icon: TrendingUp,
title: "Market Growth", value: "35%"},
{
id: "4",
icon: Award,
title: "Industry Awards",
value: "18",
},
id: "4", icon: Award,
title: "Industry Awards", value: "18"},
]}
title="Our Track Record"
description="Proven success in connecting clients with their perfect properties"
@@ -142,34 +117,16 @@ export default function AboutPage() {
<FeatureCardTwelve
features={[
{
id: "buying",
label: "Buying",
title: "Expert Guidance Through Purchase",
items: [
"Property search and viewing coordination",
"Market analysis and price negotiation",
"Legal documentation and closing support",
],
id: "buying", label: "Buying", title: "Expert Guidance Through Purchase", items: [
"Property search and viewing coordination", "Market analysis and price negotiation", "Legal documentation and closing support"],
},
{
id: "selling",
label: "Selling",
title: "Maximize Your Property Value",
items: [
"Professional property valuation",
"Marketing and buyer matching",
"Fast closing and settlement services",
],
id: "selling", label: "Selling", title: "Maximize Your Property Value", items: [
"Professional property valuation", "Marketing and buyer matching", "Fast closing and settlement services"],
},
{
id: "investing",
label: "Investing",
title: "Build Your Real Estate Portfolio",
items: [
"Investment opportunity analysis",
"ROI projections and market trends",
"Portfolio management and growth strategy",
],
id: "investing", label: "Investing", title: "Build Your Real Estate Portfolio", items: [
"Investment opportunity analysis", "ROI projections and market trends", "Portfolio management and growth strategy"],
},
]}
animationType="slide-up"