Update src/app/about/page.tsx

This commit is contained in:
2026-06-09 22:37:18 +00:00
parent 6339a0a8b6
commit 0e9c2fe377

View File

@@ -26,34 +26,22 @@ export default function LandingPage() {
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "About Us",
id: "/about",
},
name: "About Us", id: "/about"},
{
name: "Services",
id: "/services",
},
name: "Services", id: "/services"},
{
name: "Portfolio",
id: "/portfolio",
},
name: "Portfolio", id: "/portfolio"},
{
name: "Blog",
id: "/blog",
},
name: "Blog", id: "/blog"},
{
name: "FAQ",
id: "/faq",
},
name: "FAQ", id: "/faq"},
{
name: "Pricing", id: "/pricing"},
]}
button={{
text: "Contact Us",
href: "/contact",
}}
text: "Contact Us", href: "/contact"}}
brandName="Lawyer & Associates"
/>
</div>
@@ -66,26 +54,11 @@ export default function LandingPage() {
useInvertedBackground={false}
members={[
{
id: "lawyer-1",
name: "Dr. Eleanor Vance",
role: "Founding Partner, Lead Attorney",
imageSrc: "http://img.b2bpic.net/free-photo/successful-senior-businesswoman-eyeglasses_1262-5856.jpg",
imageAlt: "Dr. Eleanor Vance",
},
id: "lawyer-1", name: "Dr. Eleanor Vance", role: "Founding Partner, Lead Attorney", imageSrc: "http://img.b2bpic.net/free-photo/successful-senior-businesswoman-eyeglasses_1262-5856.jpg", imageAlt: "Dr. Eleanor Vance"},
{
id: "lawyer-2",
name: "Mr. Arthur P. Jenkins",
role: "Senior Associate, Corporate Law",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-young-businesswoman-holding-disposable-coffee-cup-hand_23-2147943768.jpg",
imageAlt: "Mr. Arthur P. Jenkins",
},
id: "lawyer-2", name: "Mr. Arthur P. Jenkins", role: "Senior Associate, Corporate Law", imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-young-businesswoman-holding-disposable-coffee-cup-hand_23-2147943768.jpg", imageAlt: "Mr. Arthur P. Jenkins"},
{
id: "lawyer-3",
name: "Ms. Clara O'Connell",
role: "Paralegal & Client Relations",
imageSrc: "http://img.b2bpic.net/free-photo/happy-ethnic-executive-woman-looking-camera_1098-20037.jpg",
imageAlt: "Ms. Clara O'Connell",
},
id: "lawyer-3", name: "Ms. Clara O'Connell", role: "Paralegal & Client Relations", imageSrc: "http://img.b2bpic.net/free-photo/happy-ethnic-executive-woman-looking-camera_1098-20037.jpg", imageAlt: "Ms. Clara O'Connell"},
]}
title="Our Dedicated Legal Team"
description="Meet the professionals committed to delivering exceptional legal services."
@@ -99,34 +72,16 @@ export default function LandingPage() {
useInvertedBackground={false}
metrics={[
{
id: "cases-handled",
value: "1000+",
title: "Cases Handled",
items: [
"Successfully resolved cases",
"Complex litigation expertise",
"Diverse legal challenges",
],
id: "cases-handled", value: "1000+", title: "Cases Handled", items: [
"Successfully resolved cases", "Complex litigation expertise", "Diverse legal challenges"],
},
{
id: "client-satisfaction",
value: "98%",
title: "Client Satisfaction",
items: [
"Positive client feedback",
"Repeat client engagements",
"Trusted legal advisor",
],
id: "client-satisfaction", value: "98%", title: "Client Satisfaction", items: [
"Positive client feedback", "Repeat client engagements", "Trusted legal advisor"],
},
{
id: "awards-recognitions",
value: "10+",
title: "Awards & Recognitions",
items: [
"Industry accolades",
"Peer recognition",
"Legal excellence awards",
],
id: "awards-recognitions", value: "10+", title: "Awards & Recognitions", items: [
"Industry accolades", "Peer recognition", "Legal excellence awards"],
},
]}
title="Our Journey of Excellence"
@@ -138,66 +93,41 @@ export default function LandingPage() {
<FooterBase
columns={[
{
title: "Services",
items: [
title: "Services", items: [
{
label: "Corporate Law",
href: "/services#corporate",
},
label: "Corporate Law", href: "/services#corporate"},
{
label: "Family Law",
href: "/services#family",
},
label: "Family Law", href: "/services#family"},
{
label: "Real Estate",
href: "/services#realestate",
},
label: "Real Estate", href: "/services#realestate"},
{
label: "Civil Litigation",
href: "/services#litigation",
},
label: "Civil Litigation", href: "/services#litigation"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Our Team",
href: "/about#team",
},
label: "Our Team", href: "/about#team"},
{
label: "Case Portfolio",
href: "/portfolio",
},
label: "Case Portfolio", href: "/portfolio"},
{
label: "Blog",
href: "/blog",
},
label: "Blog", href: "/blog"},
{
label: "Pricing", href: "/pricing"},
],
},
{
title: "Support",
items: [
title: "Support", items: [
{
label: "Contact Us",
href: "/contact",
},
label: "Contact Us", href: "/contact"},
{
label: "FAQ",
href: "/faq",
},
label: "FAQ", href: "/faq"},
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
],
},
]}