3 Commits

Author SHA1 Message Date
ff1dbf4a8f Update src/app/styles/base.css 2026-04-26 18:14:45 +00:00
0b92b37f0a Update src/app/page.tsx 2026-04-26 18:14:45 +00:00
3572560fc3 Merge version_2 into main
Merge version_2 into main
2026-04-26 18:04:23 +00:00
2 changed files with 12 additions and 5 deletions

View File

@@ -114,7 +114,10 @@ export default function LandingPage() {
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} 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" title="Client Success Stories"
description="What our clients say about our representation." description="What our clients say about our representation."
/> />
@@ -123,7 +126,11 @@ export default function LandingPage() {
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
<FaqSplitText <FaqSplitText
useInvertedBackground={false} useInvertedBackground={false}
faqs={[]} faqs={[
{ id: "1", title: "What information do I need for my initial consultation?", content: "Please bring any relevant contracts, court documents, correspondence, or evidence related to your specific legal matter." },
{ id: "2", title: "How do you handle fee structures?", content: "Fees are transparent and discussed during our initial consultation. We offer hourly, flat-fee, or contingency arrangements based on the case." },
{ id: "3", title: "Is our conversation protected by attorney-client privilege?", content: "Yes. All communications with our firm are protected by strict attorney-client privilege, ensuring total confidentiality." }
]}
sideTitle="Frequently Asked Questions" sideTitle="Frequently Asked Questions"
faqsAnimation="slide-up" faqsAnimation="slide-up"
/> />
@@ -132,7 +139,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplitForm <ContactSplitForm
title="Schedule an Appointment" title="Schedule an Appointment"
description="Fill out the form below and we will contact you to confirm your consultation." description="Our office is located at 123 Legal Plaza, Suite 400. Contact us at (555) 123-4567 or email admin@scheflinlaw.com to book your consultation."
inputs={[ inputs={[
{ name: "name", type: "text", placeholder: "Full Name", required: true }, { name: "name", type: "text", placeholder: "Full Name", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true }, { name: "email", type: "email", placeholder: "Email Address", required: true },

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-source-sans-3), sans-serif; font-family: var(--font-libre-baskerville), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-source-sans-3), sans-serif; font-family: var(--font-libre-baskerville), sans-serif;
} }