From 07edaa761b20deaabb739c49dcefa41400426ce5 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 23 Jun 2026 08:47:19 +0000 Subject: [PATCH] Deploy --- .../CriminalDefensePracticeSection.tsx | 87 +++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 src/components/sections/CriminalDefensePracticeSection.tsx diff --git a/src/components/sections/CriminalDefensePracticeSection.tsx b/src/components/sections/CriminalDefensePracticeSection.tsx new file mode 100644 index 0000000..92711ac --- /dev/null +++ b/src/components/sections/CriminalDefensePracticeSection.tsx @@ -0,0 +1,87 @@ +import Link from 'next/link' +import { Card, CardContent, CardFooter, CardHeader, CardTitle } from '@/components/ui/Card' +import { Briefcase, Car, FileText, Gavel, Scale, Shield } from 'lucide-react' + +export default function CriminalDefensePracticeSection() { + const practices = [ + { + icon: Scale, + title: 'Criminal Litigation', + description: "Aggressive courtroom representation from first appearance to trial. We handle assault, theft, fraud, and serious violent crimes in the Durban Magistrate's Court and High Court.", + href: '/services' + }, + { + icon: FileText, + title: 'Bail Applications', + description: 'Strategic bail applications prepared within hours of arrest. Our team knows the magistrates and the law — we fight for your release with compelling evidence and character references.', + href: '/services' + }, + { + icon: Gavel, + title: 'Appeals', + description: 'Challenging wrongful convictions and harsh sentences. We prepare thorough appeal heads of argument and appear in the Supreme Court of Appeal and the High Court.', + href: '/services' + }, + { + icon: Shield, + title: 'White-Collar Crime', + description: 'Complex financial crime defence including corruption, tender fraud, money laundering, and tax offences. We liaise with forensic auditors and the NPA.', + href: '/services' + }, + { + icon: Car, + title: 'Motor Vehicle Offences', + description: 'Defence against reckless and negligent driving, drunk driving, and hit-and-run charges. We use accident reconstruction experts and challenge breathalyser evidence.', + href: '/services' + }, + { + icon: Briefcase, + title: 'Legal Aid', + description: 'Access to justice for all. We partner with Legal Aid SA to ensure every accused person gets competent representation regardless of financial means.', + href: '/services' + } + ] + + return ( +
+
+
+

+ Our Criminal Defense Practice Areas +

+

+ From Durban to Pietermaritzburg, our firm covers every aspect of criminal law with skill and determination. +

+
+
+ {practices.map((practice, index) => { + const Icon = practice.icon + return ( + + +
+ +
+ + {practice.title} + +
+ +

+ {practice.description} +

+
+ + + Learn more + + + +
+ ) + })} +
+
+
+ ) +} \ No newline at end of file