From f6e505b1dda5d5857511e51b30f6dde702cd5667 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 13 Apr 2026 11:16:01 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 219 +++++++++-------------------------------------- 1 file changed, 41 insertions(+), 178 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d666901..d30d6d8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,6 +9,7 @@ import HeroBillboard from '@/components/sections/hero/HeroBillboard'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; +import { FileText, ShieldCheck, BarChart2, Calculator, Settings, Mail, LayoutGrid, CheckCircle } from 'lucide-react'; export default function LandingPage() { return ( @@ -28,22 +29,10 @@ export default function LandingPage() {
@@ -209,65 +109,28 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="split" useInvertedBackground={true} - testimonials={[ - { - id: "1", - name: "Adv. S. Ndlovu", - handle: "Johannesburg Bar", - testimonial: "Finally, an accounting firm that understands the nuances of trust accounts and briefing structures.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/photo-stone-texture-pattern_58702-12157.jpg", - }, - { - id: "2", - name: "Adv. M. van Wyk", - handle: "Pretoria Bar", - testimonial: "Their service is seamless. I can focus on my briefs while they handle the financial heavy lifting.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/cozy-vintage-library-with-green-chairs-whiskey-glasses-create-classy-setting_482257-125295.jpg", - }, - { - id: "3", - name: "Adv. K. Patel", - handle: "Sandton Chambers", - testimonial: "Audit-ready books year after year. Professionalism at its finest.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/montreal-sunrise-silhouette-viewed-from-mont-royal-with-city-skyline-morning_649448-4081.jpg", - }, - { - id: "4", - name: "Adv. T. Dlamini", - handle: "Johannesburg Bar", - testimonial: "Expertise that actually saves me time and prevents administrative stress.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/photo-stone-texture-pattern_58702-12381.jpg", - }, - { - id: "5", - name: "Adv. L. du Plessis", - handle: "Cape Bar", - testimonial: "The monthly reports provide the insight I need to manage my practice effectively.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/management-verifying-task-progress_482257-80309.jpg", - }, - ]} - showRating={true} title="Trusted by Advocates" description="Excellence in financial management for the Bar." + showRating={true} + testimonials={[ + { id: "1", name: "Adv. S. Ndlovu", handle: "Johannesburg Bar", testimonial: "Finally, an accounting firm that understands the nuances of trust accounts and briefing structures.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/photo-stone-texture-pattern_58702-12157.jpg" }, + { id: "2", name: "Adv. M. van Wyk", handle: "Pretoria Bar", testimonial: "Their service is seamless. I can focus on my briefs while they handle the financial heavy lifting.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/cozy-vintage-library-with-green-chairs-whiskey-glasses-create-classy-setting_482257-125295.jpg" }, + { id: "3", name: "Adv. K. Patel", handle: "Sandton Chambers", testimonial: "Audit-ready books year after year. Professionalism at its finest.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/montreal-sunrise-silhouette-viewed-from-mont-royal-with-city-skyline-morning_649448-4081.jpg" }, + { id: "4", name: "Adv. T. Dlamini", handle: "Johannesburg Bar", testimonial: "Expertise that actually saves me time and prevents administrative stress.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/photo-stone-texture-pattern_58702-12381.jpg" }, + { id: "5", name: "Adv. L. du Plessis", handle: "Cape Bar", testimonial: "The monthly reports provide the insight I need to manage my practice effectively.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/management-verifying-task-progress_482257-80309.jpg" }, + ]} />
-- 2.49.1