Update src/app/about/page.tsx
This commit is contained in:
@@ -26,34 +26,22 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "/"},
|
||||||
id: "/",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About Us",
|
name: "About Us", id: "/about"},
|
||||||
id: "/about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Services",
|
name: "Services", id: "/services"},
|
||||||
id: "/services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Portfolio",
|
name: "Portfolio", id: "/portfolio"},
|
||||||
id: "/portfolio",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Blog",
|
name: "Blog", id: "/blog"},
|
||||||
id: "/blog",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "FAQ",
|
name: "FAQ", id: "/faq"},
|
||||||
id: "/faq",
|
{
|
||||||
},
|
name: "Pricing", id: "/pricing"},
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Contact Us",
|
text: "Contact Us", href: "/contact"}}
|
||||||
href: "/contact",
|
|
||||||
}}
|
|
||||||
brandName="Lawyer & Associates"
|
brandName="Lawyer & Associates"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -66,26 +54,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
members={[
|
members={[
|
||||||
{
|
{
|
||||||
id: "lawyer-1",
|
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"},
|
||||||
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",
|
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"},
|
||||||
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",
|
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"},
|
||||||
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"
|
title="Our Dedicated Legal Team"
|
||||||
description="Meet the professionals committed to delivering exceptional legal services."
|
description="Meet the professionals committed to delivering exceptional legal services."
|
||||||
@@ -99,34 +72,16 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "cases-handled",
|
id: "cases-handled", value: "1000+", title: "Cases Handled", items: [
|
||||||
value: "1000+",
|
"Successfully resolved cases", "Complex litigation expertise", "Diverse legal challenges"],
|
||||||
title: "Cases Handled",
|
|
||||||
items: [
|
|
||||||
"Successfully resolved cases",
|
|
||||||
"Complex litigation expertise",
|
|
||||||
"Diverse legal challenges",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "client-satisfaction",
|
id: "client-satisfaction", value: "98%", title: "Client Satisfaction", items: [
|
||||||
value: "98%",
|
"Positive client feedback", "Repeat client engagements", "Trusted legal advisor"],
|
||||||
title: "Client Satisfaction",
|
|
||||||
items: [
|
|
||||||
"Positive client feedback",
|
|
||||||
"Repeat client engagements",
|
|
||||||
"Trusted legal advisor",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "awards-recognitions",
|
id: "awards-recognitions", value: "10+", title: "Awards & Recognitions", items: [
|
||||||
value: "10+",
|
"Industry accolades", "Peer recognition", "Legal excellence awards"],
|
||||||
title: "Awards & Recognitions",
|
|
||||||
items: [
|
|
||||||
"Industry accolades",
|
|
||||||
"Peer recognition",
|
|
||||||
"Legal excellence awards",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Our Journey of Excellence"
|
title="Our Journey of Excellence"
|
||||||
@@ -138,66 +93,41 @@ export default function LandingPage() {
|
|||||||
<FooterBase
|
<FooterBase
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Services",
|
title: "Services", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Corporate Law",
|
label: "Corporate Law", href: "/services#corporate"},
|
||||||
href: "/services#corporate",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Family Law",
|
label: "Family Law", href: "/services#family"},
|
||||||
href: "/services#family",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Real Estate",
|
label: "Real Estate", href: "/services#realestate"},
|
||||||
href: "/services#realestate",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Civil Litigation",
|
label: "Civil Litigation", href: "/services#litigation"},
|
||||||
href: "/services#litigation",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company",
|
title: "Company", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "About Us",
|
label: "About Us", href: "/about"},
|
||||||
href: "/about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Our Team",
|
label: "Our Team", href: "/about#team"},
|
||||||
href: "/about#team",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Case Portfolio",
|
label: "Case Portfolio", href: "/portfolio"},
|
||||||
href: "/portfolio",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Blog",
|
label: "Blog", href: "/blog"},
|
||||||
href: "/blog",
|
{
|
||||||
},
|
label: "Pricing", href: "/pricing"},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support",
|
title: "Support", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Contact Us",
|
label: "Contact Us", href: "/contact"},
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "FAQ",
|
label: "FAQ", href: "/faq"},
|
||||||
href: "/faq",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Privacy Policy",
|
label: "Privacy Policy", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Terms of Service",
|
label: "Terms of Service", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user