Update src/app/about/page.tsx

This commit is contained in:
2026-03-19 15:36:25 +00:00
parent 20d57609e5
commit 74e9488103

View File

@@ -36,9 +36,7 @@ export default function AboutPage() {
brandName="Jennifer A. Sylvia, D.M.D."
navItems={navItems}
button={{
text: "Book Appointment",
href: "#contact",
}}
text: "Book Appointment", href: "#contact"}}
/>
</div>
@@ -48,13 +46,9 @@ export default function AboutPage() {
<InlineImageSplitTextAbout
heading={[
{
type: "text",
content: "Meet Dr. Jennifer A. Sylvia",
},
type: "text", content: "Meet Dr. Jennifer A. Sylvia"},
{
type: "text",
content: "Dr. Jennifer A. Sylvia brings over 15 years of professional expertise and genuine compassion to dental care. Her patient-centered approach has earned her a stellar reputation and deep trust from families throughout West Harrison and surrounding communities.\n\nDr. Sylvia earned her Doctor of Dental Medicine degree with distinction and has continuously pursued advanced training in the latest dental techniques and technologies. Her commitment to continuing education ensures that patients receive the most current, evidence-based care available.\n\nOutside the office, Dr. Sylvia is dedicated to giving back to the community through dental health education and volunteer care initiatives. She believes that access to quality dental care is a fundamental right and works tirelessly to make it accessible and comfortable for all her patients.",
},
type: "text", content: "Dr. Jennifer A. Sylvia brings over 15 years of professional expertise and genuine compassion to dental care. Her patient-centered approach has earned her a stellar reputation and deep trust from families throughout West Harrison and surrounding communities.\n\nDr. Sylvia earned her Doctor of Dental Medicine degree with distinction and has continuously pursued advanced training in the latest dental techniques and technologies. Her commitment to continuing education ensures that patients receive the most current, evidence-based care available.\n\nOutside the office, Dr. Sylvia is dedicated to giving back to the community through dental health education and volunteer care initiatives. She believes that access to quality dental care is a fundamental right and works tirelessly to make it accessible and comfortable for all her patients.\n\nContact Information:\nPhone: (914) 948-0406\nAddress: 282 Columbus Ave, West Harrison, NY"},
]}
useInvertedBackground={false}
buttons={[
@@ -72,26 +66,11 @@ export default function AboutPage() {
description="The foundation of our practice is built on core values that guide every patient interaction and clinical decision."
metrics={[
{
id: "1",
title: "Compassion",
subtitle: "First",
category: "Core Value",
value: "Patient comfort and trust",
},
id: "1", title: "Compassion", subtitle: "First", category: "Core Value", value: "Patient comfort and trust"},
{
id: "2",
title: "Excellence",
subtitle: "Always",
category: "Clinical Standard",
value: "Latest techniques & technology",
},
id: "2", title: "Excellence", subtitle: "Always", category: "Clinical Standard", value: "Latest techniques & technology"},
{
id: "3",
title: "Community",
subtitle: "Focused",
category: "Our Mission",
value: "Accessible, quality dental care",
},
id: "3", title: "Community", subtitle: "Focused", category: "Our Mission", value: "Accessible, quality dental care"},
]}
animationType="slide-up"
textboxLayout="default"
@@ -105,37 +84,23 @@ export default function AboutPage() {
<div className="mx-auto px-4 md:px-6">
<ContactSplitForm
title="Get in Touch"
description="Have questions about Dr. Sylvia or our practice? We'd love to hear from you. Reach out today to schedule a consultation."
description="Have questions about Dr. Sylvia or our practice? We'd love to hear from you. Reach out today to schedule a consultation.\n\nPhone: (914) 948-0406\nAddress: 282 Columbus Ave, West Harrison, NY"
inputs={[
{
name: "fullName",
type: "text",
placeholder: "Your Full Name",
required: true,
name: "fullName", type: "text", placeholder: "Your Full Name", required: true,
},
{
name: "email",
type: "email",
placeholder: "Your Email Address",
required: true,
name: "email", type: "email", placeholder: "Your Email Address", required: true,
},
{
name: "phone",
type: "tel",
placeholder: "(914) 948-0406",
required: true,
name: "phone", type: "tel", placeholder: "(914) 948-0406", required: true,
},
{
name: "inquiry",
type: "text",
placeholder: "Subject of Your Inquiry",
required: false,
name: "inquiry", type: "text", placeholder: "Subject of Your Inquiry", required: false,
},
]}
textarea={{
name: "message",
placeholder: "Your message here...",
rows: 4,
name: "message", placeholder: "Your message here...", rows: 4,
required: false,
}}
useInvertedBackground={false}