Merge version_2 into main #2

Merged
bender merged 4 commits from version_2 into main 2026-04-15 23:53:53 +00:00
4 changed files with 227 additions and 527 deletions

View File

@@ -2,149 +2,68 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="small"
sizing="mediumSizeLargeTitles"
background="circleGradient"
cardStyle="gradient-mesh"
primaryButtonStyle="double-inset"
secondaryButtonStyle="solid"
headingFontWeight="extrabold"
>
<ThemeProvider>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Blog",
id: "/blog",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Harrison & Cole"
/>
</div>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "/contact" },
]}
brandName="Harrison & Cole"
/>
<div id="history" data-section="about">
<SplitAbout
title="Our Firm History"
description="Founded in 2008, Harrison & Cole has grown from a boutique practice to a leading London law firm, consistently delivering excellence for our clients in sensitive and complex matters."
textboxLayout="split"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=br8cjx"
bulletPoints={[
{ title: "Establishment", description: "Founded in London to provide accessible legal excellence." },
{ title: "Growth", description: "Expanded service areas into Family and Immigration law." },
{ title: "Values", description: "Commitment to integrity, privacy, and client success." }
]}
/>
</div>
<div id="about" data-section="about">
<SplitAbout
textboxLayout="split"
useInvertedBackground={false}
title="Your Trusted Legal Partner"
description="Based in London, Harrison & Cole Solicitors is committed to providing clear, authoritative legal advice."
bulletPoints={[
{
title: "Authoritative Advice",
description: "Years of experience in high-stakes UK litigation.",
},
{
title: "Client-Centric",
description: "Always accessible and transparent communication.",
},
{
title: "Proven Success",
description: "A track record of successful case outcomes.",
},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=4kod5k&_wi=1"
mediaAnimation="slide-up"
/>
</div>
<div id="team" data-section="team">
<TeamCardEleven
title="Meet Our Attorneys"
description="Our dedicated team of solicitors brings decades of combined experience across various legal sectors."
textboxLayout="default"
animationType="slide-up"
groups={[
{
id: "g1", groupTitle: "Senior Partners", members: [
{ id: "m1", title: "Eleanor Cole", subtitle: "Senior Partner, Family Law", detail: "Specializes in complex custody cases with 20+ years of experience.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gz01tl" },
{ id: "m2", title: "David Harrison", subtitle: "Senior Partner, Criminal Defense", detail: "Expert in appellate litigation and white-collar defense.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=f700kp" },
{ id: "m3", title: "Sarah Jenkins", subtitle: "Lead Counsel, Immigration", detail: "Recognized specialist in complex visa appeals and citizenship cases.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=knv36y" }
]
}
]}
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardSeven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Our Vision"
description="A commitment to fair justice."
features={[
{
title: "Integrity",
description: "We always put the client first.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=o2gibc&_wi=1",
},
{
title: "Efficiency",
description: "Swift resolution.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=us6qgq&_wi=1",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Practice Areas",
items: [
{
label: "Family Law",
href: "/services",
},
{
label: "Criminal Defense",
href: "/services",
},
],
},
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms",
href: "#",
},
],
},
]}
bottomLeftText="© 2024 Harrison & Cole Solicitors, London."
bottomRightText="Authorised and Regulated by the SRA."
/>
</div>
<FooterSimple
columns={[
{ title: "Practice Areas", items: [{ label: "Family Law", href: "/services" }, { label: "Criminal Defense", href: "/services" }] },
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Contact", href: "/contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
]}
bottomLeftText="© 2024 Harrison & Cole Solicitors, London."
bottomRightText="Authorised and Regulated by the SRA."
/>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -2,123 +2,55 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function LandingPage() {
export default function BlogPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="small"
sizing="mediumSizeLargeTitles"
background="circleGradient"
cardStyle="gradient-mesh"
primaryButtonStyle="double-inset"
secondaryButtonStyle="solid"
headingFontWeight="extrabold"
>
<ThemeProvider>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Blog",
id: "/blog",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Harrison & Cole"
/>
</div>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "/contact" },
]}
brandName="Harrison & Cole"
/>
<div id="blog" data-section="blog">
<BlogCardThree
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Recent Insights"
description="Legal trends."
blogs={[
{
id: "b1",
category: "Family",
title: "Divorce Trends",
excerpt: "What to expect in 2024.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gz01tl&_wi=2",
authorName: "Alice Law",
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=12l2pz",
date: "Jan 2024",
},
]}
/>
</div>
<div className="pt-32 pb-20">
<BlogCardOne
title="UK Legal Insights & Updates"
description="Expert commentary on evolving UK legislation and legal practice."
animationType="slide-up"
textboxLayout="default"
blogs={[
{
id: "1", category: "Family Law", title: "Navigating Divorce Proceedings in 2024", excerpt: "Understanding the latest changes in UK family law processes and mediation requirements.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gz01tl", authorName: "Sarah Jenkins", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gz01tl", date: "March 12, 2024"
},
{
id: "2", category: "Criminal Defense", title: "Know Your Rights: Police Interviews", excerpt: "Crucial guidance on what to expect and how to prepare for police interviews in the UK.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=f700kp", authorName: "Mark Thompson", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=f700kp", date: "February 28, 2024"
},
{
id: "3", category: "Immigration", title: "Updates to UK Visa Requirements", excerpt: "A breakdown of the recent amendments to visa eligibility criteria for international applicants.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=knv36y", authorName: "Elise Dubois", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=knv36y", date: "February 15, 2024"
}
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Practice Areas",
items: [
{
label: "Family Law",
href: "/services",
},
{
label: "Criminal Defense",
href: "/services",
},
],
},
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms",
href: "#",
},
],
},
]}
bottomLeftText="© 2024 Harrison & Cole Solicitors, London."
bottomRightText="Authorised and Regulated by the SRA."
/>
</div>
<FooterSimple
columns={[
{ title: "Practice Areas", items: [{ label: "Family Law" }, { label: "Criminal Defense" }] },
{ title: "Company", items: [{ label: "About Us" }, { label: "Contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy" }, { label: "Terms" }] },
]}
bottomLeftText="© 2024 Harrison & Cole Solicitors, London."
bottomRightText="Authorised and Regulated by the SRA."
/>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -30,25 +30,15 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "About",
id: "/about",
},
name: "About", id: "/about"},
{
name: "Services",
id: "/services",
},
name: "Services", id: "/services"},
{
name: "Blog",
id: "/blog",
},
name: "Blog", id: "/blog"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="Harrison & Cole"
/>
@@ -57,65 +47,40 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroCentered
background={{
variant: "gradient-bars",
}}
variant: "gradient-bars"}}
title="Excellence in London Legal Counsel"
description="Harrison & Cole Solicitors provide expert representation in Family Law, Criminal Defense, and Immigration matters. Your trusted partners for justice in the UK."
avatars={[
{
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=12l2pz",
alt: "Solicitor",
},
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=12l2pz", alt: "Solicitor"},
{
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=m0targ",
alt: "Solicitor",
},
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=m0targ", alt: "Solicitor"},
{
src: "asset://team-1-a",
alt: "Solicitor",
},
src: "asset://team-1-a", alt: "Solicitor"},
{
src: "asset://team-2-a",
alt: "Solicitor",
},
src: "asset://team-2-a", alt: "Solicitor"},
{
src: "asset://team-1-b",
alt: "Solicitor",
},
src: "asset://team-1-b", alt: "Solicitor"},
]}
avatarText="Our expert legal team"
buttons={[
{
text: "Book Consultation",
href: "/contact",
},
text: "Book Consultation", href: "/contact"},
{
text: "Our Services",
href: "/services",
},
text: "Our Services", href: "/services"},
]}
buttonAnimation="slide-up"
marqueeItems={[
{
type: "text",
text: "Family Law",
},
type: "text", text: "Family Law"},
{
type: "text",
text: "Criminal Defense",
},
type: "text", text: "Criminal Defense"},
{
type: "text",
text: "Immigration",
},
type: "text", text: "Immigration"},
{
type: "text",
text: "Litigation Support",
},
type: "text", text: "Litigation Support"},
{
type: "text",
text: "Legal Advice",
},
type: "text", text: "Legal Advice"},
]}
/>
</div>
@@ -125,30 +90,15 @@ export default function LandingPage() {
useInvertedBackground={false}
testimonials={[
{
id: "t1",
name: "Sarah Miller",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gz01tl&_wi=1",
},
id: "t1", name: "Sarah Miller", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gz01tl&_wi=1"},
{
id: "t2",
name: "John Doe",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=f700kp",
},
id: "t2", name: "John Doe", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=f700kp"},
{
id: "t3",
name: "James Smith",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=bnt74l",
},
id: "t3", name: "James Smith", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=bnt74l"},
{
id: "t4",
name: "Emily Watson",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=pch8mg",
},
id: "t4", name: "Emily Watson", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=pch8mg"},
{
id: "t5",
name: "David Brown",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=knv36y",
},
id: "t5", name: "David Brown", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=knv36y"},
]}
cardTitle="Client Success Stories"
cardTag="Testimonials"
@@ -166,25 +116,13 @@ export default function LandingPage() {
description="We are proud of the results we achieve for our clients."
metrics={[
{
id: "m1",
value: "15+",
title: "Years Experience",
description: "Deep expertise",
icon: Briefcase,
id: "m1", value: "15+", title: "Years Experience", description: "Deep expertise", icon: Briefcase,
},
{
id: "m2",
value: "500+",
title: "Cases Won",
description: "Proven success",
icon: Award,
id: "m2", value: "500+", title: "Cases Won", description: "Proven success", icon: Award,
},
{
id: "m3",
value: "98%",
title: "Client Satisfaction",
description: "Trusted advice",
icon: ThumbsUp,
id: "m3", value: "98%", title: "Client Satisfaction", description: "Trusted advice", icon: ThumbsUp,
},
]}
/>
@@ -197,12 +135,7 @@ export default function LandingPage() {
title="Recognized Excellence"
description="Affiliated with leading industry bodies."
names={[
"London Legal Society",
"UK Bar Council",
"SRA Regulated",
"Family Law Association",
"Immigration Law Experts",
]}
"London Legal Society", "UK Bar Council", "SRA Regulated", "Family Law Association", "Immigration Law Experts"]}
/>
</div>
@@ -214,27 +147,9 @@ export default function LandingPage() {
description="Real feedback from those we have helped."
testimonials={[
{
id: "et1",
name: "Mark R.",
date: "Oct 2023",
title: "Professionalism",
quote: "Excellent service.",
tag: "Family",
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gz01tl",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=br8cjx",
imageAlt: "happy client professional office",
},
id: "et1", name: "Mark R.", date: "Oct 2023", title: "Professionalism", quote: "Excellent service.", tag: "Family", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gz01tl", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=br8cjx", imageAlt: "happy client professional office"},
{
id: "et2",
name: "Jane D.",
date: "Nov 2023",
title: "Great results",
quote: "Highly recommended.",
tag: "Immigration",
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=f700kp",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=12l2pz",
imageAlt: "happy client professional office",
},
id: "et2", name: "Jane D.", date: "Nov 2023", title: "Great results", quote: "Highly recommended.", tag: "Immigration", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=f700kp", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=12l2pz", imageAlt: "happy client professional office"},
]}
/>
</div>
@@ -243,42 +158,27 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "Practice Areas",
items: [
title: "Practice Areas", items: [
{
label: "Family Law",
href: "/services",
},
label: "Family Law", href: "/services"},
{
label: "Criminal Defense",
href: "/services",
},
label: "Criminal Defense", href: "/services"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms",
href: "#",
},
label: "Terms", href: "#"},
],
},
]}
@@ -289,4 +189,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -2,18 +2,18 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import TimelineProcessFlow from '@/components/cardStack/layouts/timelines/TimelineProcessFlow';
import { Scale, ShieldAlert, Globe } from "lucide-react";
export default function LandingPage() {
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="small"
contentWidth="medium"
sizing="mediumSizeLargeTitles"
background="circleGradient"
cardStyle="gradient-mesh"
@@ -22,143 +22,92 @@ export default function LandingPage() {
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Blog",
id: "/blog",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Harrison & Cole"
/>
</div>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "/contact" },
]}
brandName="Harrison & Cole"
/>
<div className="pt-32 pb-20">
<TimelineProcessFlow
title="Our Practice Areas"
description="Expert representation across core legal disciplines."
textboxLayout="split-description"
animationType="slide-up"
items={[
{
content: (
<div>
<h3 className="text-2xl font-bold mb-4">Family Law</h3>
<p className="mb-4">Comprehensive support for divorce, custody, and mediation. We prioritize your family's future.</p>
<ul className="list-disc list-inside mb-6">
<li>Divorce & Separation</li>
<li>Child Custody & Access</li>
<li>Financial Settlement</li>
</ul>
<a href="/contact" className="inline-block px-6 py-3 bg-primary text-white rounded">Consult Family Team</a>
</div>
),
media: <Scale size={64} />,
reverse: false
},
{
content: (
<div>
<h3 className="text-2xl font-bold mb-4">Criminal Defense</h3>
<p className="mb-4">Tenacious defense against criminal charges. Protecting your rights at every stage of the legal process.</p>
<ul className="list-disc list-inside mb-6">
<li>Police Station Representation</li>
<li>Magistrates Court Cases</li>
<li>Crown Court Advocacy</li>
</ul>
<a href="/contact" className="inline-block px-6 py-3 bg-primary text-white rounded">Get Defense Help</a>
</div>
),
media: <ShieldAlert size={64} />,
reverse: true
},
{
content: (
<div>
<h3 className="text-2xl font-bold mb-4">Immigration</h3>
<p className="mb-4">Navigating complex visa and citizenship laws to ensure your status in the UK is secure.</p>
<ul className="list-disc list-inside mb-6">
<li>Visa Applications</li>
<li>Indefinite Leave to Remain</li>
<li>Citizenship Services</li>
</ul>
<a href="/contact" className="inline-block px-6 py-3 bg-primary text-white rounded">Talk to Experts</a>
</div>
),
media: <Globe size={64} />,
reverse: false
}
]}
/>
</div>
<div id="services" data-section="services">
<FeatureCardTwentyThree
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
features={[
{
id: "s1",
title: "Family Law",
tags: [
"Divorce",
"Child Custody",
],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=o2gibc&_wi=2",
},
{
id: "s2",
title: "Criminal Defense",
tags: [
"Representation",
"Appeals",
],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=us6qgq&_wi=2",
},
{
id: "s3",
title: "Immigration Law",
tags: [
"Visas",
"Citizenship",
],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3dtzjo&_wi=1",
},
]}
title="Comprehensive Legal Services"
description="Tailored solutions for your personal and professional legal requirements."
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardSeven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Process"
description="How we handle your case."
features={[
{
title: "Consultation",
description: "Initial assessment.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3dtzjo&_wi=2",
},
{
title: "Execution",
description: "Applying legal strategy.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=4kod5k&_wi=2",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Practice Areas",
items: [
{
label: "Family Law",
href: "/services",
},
{
label: "Criminal Defense",
href: "/services",
},
],
},
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms",
href: "#",
},
],
},
]}
bottomLeftText="© 2024 Harrison & Cole Solicitors, London."
bottomRightText="Authorised and Regulated by the SRA."
/>
</div>
<FooterSimple
columns={[
{
title: "Practice Areas", items: [{ label: "Family Law", href: "/services" }, { label: "Criminal Defense", href: "/services" }]
},
{
title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Contact", href: "/contact" }]
},
{
title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }]
}
]}
bottomLeftText="© 2024 Harrison & Cole Solicitors, London."
bottomRightText="Authorised and Regulated by the SRA."
/>
</ReactLenis>
</ThemeProvider>
);
}
}