From 0b92b37f0a2376fba33d906b92202c6782537a0f Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 26 Apr 2026 18:14:45 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4df0166..933068f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -114,7 +114,10 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="default" useInvertedBackground={false} - testimonials={[]} + testimonials={[ + { id: "1", name: "John D.", handle: "@johndoe", testimonial: "Bonnie handled my complex business litigation with incredible professionalism and securing a favorable outcome for our firm." }, + { id: "2", name: "Sarah M.", handle: "@sarahm", testimonial: "Compassionate, thorough, and highly effective. Truly the best choice for family law advocacy." } + ]} title="Client Success Stories" description="What our clients say about our representation." /> @@ -123,7 +126,11 @@ export default function LandingPage() {
@@ -132,7 +139,7 @@ export default function LandingPage() {
Date: Sun, 26 Apr 2026 18:14:45 +0000 Subject: [PATCH 2/2] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index bbb522f..8b2eae7 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-source-sans-3), sans-serif; + font-family: var(--font-libre-baskerville), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-source-sans-3), sans-serif; + font-family: var(--font-libre-baskerville), sans-serif; } -- 2.49.1