import Link from 'next/link' import { MapPin, CheckCircle } from 'lucide-react' import { SiWhatsapp } from 'react-icons/si' import Button from '@/components/ui/Button' const openings = [ { title: 'Associate Attorney – Corporate & Commercial Law', location: 'Durban, KwaZulu-Natal', description: 'Join a forward-thinking team advising businesses on mergers, acquisitions, and corporate governance across KZN.', }, { title: 'Candidate Attorney – 2026 Intake', location: 'Durban, KwaZulu-Natal', description: 'Start your legal career with hands-on exposure to corporate law, litigation, and property transactions under experienced mentors.', }, { title: 'Conveyancing Secretary – Real Estate', location: 'Durban, KwaZulu-Natal', description: 'Support a busy conveyancing practice handling residential and commercial property transfers across the province.', }, { title: 'Litigation Secretary – Business Litigation', location: 'Durban, KwaZulu-Natal', description: 'Work alongside seasoned litigators managing high-value commercial disputes and court documentation.', }, ] const reasons = [ 'Mentorship from seasoned partners who invest in your professional growth.', 'Deep roots in KwaZulu-Natal\u2019s business and legal landscape.', 'Ubuntu-driven culture that values collaboration, respect, and meaningful impact.', ] export default function CareerOpportunitiesSection() { return (
{/* Left column – openings */}

Current openings

Advance your legal career where it{' '} matters most.

    {openings.map((job, i) => (
  • {job.title}

    {job.location}

    {job.description}

  • ))}
{/* Vertical rule – hidden on mobile */}
{/* Right column – why join & apply */}

Why join us

    {reasons.map((reason, i) => (
  • {reason}

  • ))}
) }