Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c2f6ea76fc | |||
| 349be78883 | |||
| 0852fb1480 | |||
| f834de78a3 | |||
| 74e9488103 | |||
| 20d57609e5 | |||
| 2f9020495a | |||
| dd27014016 |
@@ -36,9 +36,7 @@ export default function AboutPage() {
|
|||||||
brandName="Jennifer A. Sylvia, D.M.D."
|
brandName="Jennifer A. Sylvia, D.M.D."
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
button={{
|
button={{
|
||||||
text: "Book Appointment",
|
text: "Book Appointment", href: "#contact"}}
|
||||||
href: "#contact",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -48,13 +46,9 @@ export default function AboutPage() {
|
|||||||
<InlineImageSplitTextAbout
|
<InlineImageSplitTextAbout
|
||||||
heading={[
|
heading={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", content: "Meet Dr. Jennifer A. Sylvia"},
|
||||||
content: "Meet Dr. Jennifer A. Sylvia",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
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"},
|
||||||
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.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
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."
|
description="The foundation of our practice is built on core values that guide every patient interaction and clinical decision."
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "Compassion", subtitle: "First", category: "Core Value", value: "Patient comfort and trust"},
|
||||||
title: "Compassion",
|
|
||||||
subtitle: "First",
|
|
||||||
category: "Core Value",
|
|
||||||
value: "Patient comfort and trust",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "Excellence", subtitle: "Always", category: "Clinical Standard", value: "Latest techniques & technology"},
|
||||||
title: "Excellence",
|
|
||||||
subtitle: "Always",
|
|
||||||
category: "Clinical Standard",
|
|
||||||
value: "Latest techniques & technology",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "Community", subtitle: "Focused", category: "Our Mission", value: "Accessible, quality dental care"},
|
||||||
title: "Community",
|
|
||||||
subtitle: "Focused",
|
|
||||||
category: "Our Mission",
|
|
||||||
value: "Accessible, quality dental care",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -105,37 +84,23 @@ export default function AboutPage() {
|
|||||||
<div className="mx-auto px-4 md:px-6">
|
<div className="mx-auto px-4 md:px-6">
|
||||||
<ContactSplitForm
|
<ContactSplitForm
|
||||||
title="Get in Touch"
|
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={[
|
inputs={[
|
||||||
{
|
{
|
||||||
name: "fullName",
|
name: "fullName", type: "text", placeholder: "Your Full Name", required: true,
|
||||||
type: "text",
|
|
||||||
placeholder: "Your Full Name",
|
|
||||||
required: true,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "email",
|
name: "email", type: "email", placeholder: "Your Email Address", required: true,
|
||||||
type: "email",
|
|
||||||
placeholder: "Your Email Address",
|
|
||||||
required: true,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "phone",
|
name: "phone", type: "tel", placeholder: "(914) 948-0406", required: true,
|
||||||
type: "tel",
|
|
||||||
placeholder: "(914) 948-0406",
|
|
||||||
required: true,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "inquiry",
|
name: "inquiry", type: "text", placeholder: "Subject of Your Inquiry", required: false,
|
||||||
type: "text",
|
|
||||||
placeholder: "Subject of Your Inquiry",
|
|
||||||
required: false,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
textarea={{
|
textarea={{
|
||||||
name: "message",
|
name: "message", placeholder: "Your message here...", rows: 4,
|
||||||
placeholder: "Your message here...",
|
|
||||||
rows: 4,
|
|
||||||
required: false,
|
required: false,
|
||||||
}}
|
}}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
|||||||
@@ -34,8 +34,7 @@ export default function ContactPage() {
|
|||||||
brandName="Jennifer A. Sylvia, D.M.D."
|
brandName="Jennifer A. Sylvia, D.M.D."
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
button={{
|
button={{
|
||||||
text: "Book Appointment",
|
text: "Book Appointment", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -43,37 +42,23 @@ export default function ContactPage() {
|
|||||||
<div id="contact" data-section="contact" className="mx-auto px-4 md:px-6">
|
<div id="contact" data-section="contact" className="mx-auto px-4 md:px-6">
|
||||||
<ContactSplitForm
|
<ContactSplitForm
|
||||||
title="Contact & Appointment Request"
|
title="Contact & Appointment Request"
|
||||||
description="Ready to experience exceptional dental care? Reach out to us today to schedule your appointment or ask any questions."
|
description="Ready to experience exceptional dental care? Reach out to us today to schedule your appointment or ask any questions.\n\nPhone: (914) 948-0406\nAddress: 282 Columbus Ave, West Harrison, NY"
|
||||||
inputs={[
|
inputs={[
|
||||||
{
|
{
|
||||||
name: "fullName",
|
name: "fullName", type: "text", placeholder: "Your Full Name", required: true
|
||||||
type: "text",
|
|
||||||
placeholder: "Your Full Name",
|
|
||||||
required: true
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "email",
|
name: "email", type: "email", placeholder: "Your Email Address", required: true
|
||||||
type: "email",
|
|
||||||
placeholder: "Your Email Address",
|
|
||||||
required: true
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "phone",
|
name: "phone", type: "tel", placeholder: "(914) 948-0406", required: true
|
||||||
type: "tel",
|
|
||||||
placeholder: "(914) 948-0406",
|
|
||||||
required: true
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "preferredDate",
|
name: "preferredDate", type: "date", placeholder: "Preferred Appointment Date", required: false
|
||||||
type: "date",
|
|
||||||
placeholder: "Preferred Appointment Date",
|
|
||||||
required: false
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
textarea={{
|
textarea={{
|
||||||
name: "message",
|
name: "message", placeholder: "Tell us about your dental needs or any specific concerns...", rows: 4,
|
||||||
placeholder: "Tell us about your dental needs or any specific concerns...",
|
|
||||||
rows: 4,
|
|
||||||
required: false
|
required: false
|
||||||
}}
|
}}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -89,34 +74,22 @@ export default function ContactPage() {
|
|||||||
description="Get answers to common questions about our practice, services, and what to expect during your visit."
|
description="Get answers to common questions about our practice, services, and what to expect during your visit."
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "What are your office hours?", content: "We're open daily and close at 6 PM to accommodate your schedule. Contact us for specific hours and to schedule your appointment at (914) 948-0406."
|
||||||
title: "What are your office hours?",
|
|
||||||
content: "We're open daily and close at 6 PM to accommodate your schedule. Contact us for specific hours and to schedule your appointment."
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "How can I book an appointment?", content: "You can book online through our website, call us at (914) 948-0406, or visit our office at 282 Columbus Ave, West Harrison, NY 10604."
|
||||||
title: "How can I book an appointment?",
|
|
||||||
content: "You can book online through our website, call us at (914) 948-0406, or visit our office at 282 Columbus Ave, West Harrison, NY 10604."
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "Is the office family-friendly?", content: "Absolutely! We welcome patients of all ages and create a comfortable, welcoming environment for the entire family."
|
||||||
title: "Is the office family-friendly?",
|
|
||||||
content: "Absolutely! We welcome patients of all ages and create a comfortable, welcoming environment for the entire family."
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", title: "Do you offer emergency dental services?", content: "For emergency dental situations, please call us immediately at (914) 948-0406. We do our best to accommodate urgent care needs."
|
||||||
title: "Do you offer emergency dental services?",
|
|
||||||
content: "For emergency dental situations, please call us immediately at (914) 948-0406. We do our best to accommodate urgent care needs."
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", title: "What payment methods do you accept?", content: "We accept most major insurance plans and offer flexible payment options. Please call us to discuss your specific coverage."
|
||||||
title: "What payment methods do you accept?",
|
|
||||||
content: "We accept most major insurance plans and offer flexible payment options. Please call us to discuss your specific coverage."
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", title: "Is the first consultation free?", content: "We offer comprehensive initial consultations. Contact us to learn about our consultation options and fees."
|
||||||
title: "Is the first consultation free?",
|
|
||||||
content: "We offer comprehensive initial consultations. Contact us to learn about our consultation options and fees."
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/doctor-talks-patient-hospital-room_482257-62916.jpg?_wi=2"
|
imageSrc="http://img.b2bpic.net/free-photo/doctor-talks-patient-hospital-room_482257-62916.jpg?_wi=2"
|
||||||
|
|||||||
155
src/app/page.tsx
155
src/app/page.tsx
@@ -40,9 +40,7 @@ export default function HomePage() {
|
|||||||
brandName="Jennifer A. Sylvia, D.M.D."
|
brandName="Jennifer A. Sylvia, D.M.D."
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
button={{
|
button={{
|
||||||
text: "Book Appointment",
|
text: "Book Appointment", href: "#contact"}}
|
||||||
href: "#contact",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -51,7 +49,7 @@ export default function HomePage() {
|
|||||||
<div className="mx-auto px-4 md:px-6">
|
<div className="mx-auto px-4 md:px-6">
|
||||||
<HeroSplitKpi
|
<HeroSplitKpi
|
||||||
title="Your Trusted Dentist in West Harrison"
|
title="Your Trusted Dentist in West Harrison"
|
||||||
description="Experience compassionate, attentive dental care in a comfortable, welcoming environment. Dr. Jennifer A. Sylvia and her friendly staff are dedicated to your smile and overall oral health. From routine cleanings to cosmetic dentistry, we provide gentle, professional care for the entire family."
|
description="Experience compassionate, attentive dental care in a comfortable, welcoming environment. Dr. Jennifer A. Sylvia and her friendly staff are dedicated to your smile and overall oral health. From routine cleanings to cosmetic dentistry, we provide gentle, professional care for the entire family.\n\nCall us: (914) 948-0406 | Visit us: 282 Columbus Ave, West Harrison, NY"
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
kpis={[
|
kpis={[
|
||||||
{ value: "4.3★", label: "Patient Rating" },
|
{ value: "4.3★", label: "Patient Rating" },
|
||||||
@@ -77,13 +75,9 @@ export default function HomePage() {
|
|||||||
<InlineImageSplitTextAbout
|
<InlineImageSplitTextAbout
|
||||||
heading={[
|
heading={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", content: "About Dr. Jennifer A. Sylvia"},
|
||||||
content: "About Dr. Jennifer A. Sylvia",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", content: "With over 15 years of experience in dentistry, Dr. Jennifer A. Sylvia is committed to providing personalized, compassionate care to every patient. She believes in taking the time to listen to her patients' concerns and creating individualized treatment plans that prioritize comfort and results.\n\nDr. Sylvia maintains the highest standards of clinical excellence while creating a relaxed, welcoming atmosphere. Her friendly staff shares her commitment to patient care, ensuring every visit feels like visiting a friend rather than undergoing a medical procedure.\n\nAt our practice, we believe preventive care is the foundation of a healthy smile. We work closely with each patient to develop sustainable oral health habits that lead to lifelong dental wellness.\n\nContact us today at (914) 948-0406 or visit us at 282 Columbus Ave, West Harrison, NY to schedule your consultation."},
|
||||||
content: "With over 15 years of experience in dentistry, Dr. Jennifer A. Sylvia is committed to providing personalized, compassionate care to every patient. She believes in taking the time to listen to her patients' concerns and creating individualized treatment plans that prioritize comfort and results.\n\nDr. Sylvia maintains the highest standards of clinical excellence while creating a relaxed, welcoming atmosphere. Her friendly staff shares her commitment to patient care, ensuring every visit feels like visiting a friend rather than undergoing a medical procedure.\n\nAt our practice, we believe preventive care is the foundation of a healthy smile. We work closely with each patient to develop sustainable oral health habits that lead to lifelong dental wellness.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
@@ -101,29 +95,13 @@ export default function HomePage() {
|
|||||||
description="We offer a full range of dental services to meet your entire family's oral health needs. From preventive care to cosmetic enhancements, our practice is equipped to provide professional, gentle treatment."
|
description="We offer a full range of dental services to meet your entire family's oral health needs. From preventive care to cosmetic enhancements, our practice is equipped to provide professional, gentle treatment."
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "General Dentistry",
|
title: "General Dentistry", description: "Routine exams, cleanings, and preventive care to maintain your healthy smile.", imageSrc: "http://img.b2bpic.net/free-photo/full-equiped-medical-cabinet_1303-23918.jpg?_wi=1", imageAlt: "General dental checkup and examination"},
|
||||||
description: "Routine exams, cleanings, and preventive care to maintain your healthy smile.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/full-equiped-medical-cabinet_1303-23918.jpg?_wi=1",
|
|
||||||
imageAlt: "General dental checkup and examination",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Professional Cleanings",
|
title: "Professional Cleanings", description: "Thorough, gentle cleanings that remove plaque and tartar while protecting your gums.", imageSrc: "http://img.b2bpic.net/free-photo/dentist-checking-patient-mounth-care_23-2149195924.jpg?_wi=1", imageAlt: "Professional dental cleaning procedure"},
|
||||||
description: "Thorough, gentle cleanings that remove plaque and tartar while protecting your gums.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/dentist-checking-patient-mounth-care_23-2149195924.jpg?_wi=1",
|
|
||||||
imageAlt: "Professional dental cleaning procedure",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Teeth Whitening",
|
title: "Teeth Whitening", description: "Professional teeth whitening treatments for a brighter, more confident smile.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-sitting-dentist-s-office_1157-28567.jpg?_wi=1", imageAlt: "Cosmetic teeth whitening treatment"},
|
||||||
description: "Professional teeth whitening treatments for a brighter, more confident smile.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-sitting-dentist-s-office_1157-28567.jpg?_wi=1",
|
|
||||||
imageAlt: "Cosmetic teeth whitening treatment",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Preventive Care",
|
title: "Preventive Care", description: "Personalized prevention strategies and patient education for long-term oral health.", imageSrc: "http://img.b2bpic.net/free-photo/full-equiped-medical-cabinet_1303-23918.jpg?_wi=2", imageAlt: "Preventive dental care consultation"},
|
||||||
description: "Personalized prevention strategies and patient education for long-term oral health.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/full-equiped-medical-cabinet_1303-23918.jpg?_wi=2",
|
|
||||||
imageAlt: "Preventive dental care consultation",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
gridVariant="two-columns-alternating-heights"
|
gridVariant="two-columns-alternating-heights"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
@@ -141,41 +119,17 @@ export default function HomePage() {
|
|||||||
description="Our patients trust us with their smiles and consistently praise our attentive care, comfortable environment, and professional expertise."
|
description="Our patients trust us with their smiles and consistently praise our attentive care, comfortable environment, and professional expertise."
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Sarah Johnson", handle: "Verified Patient", testimonial: "Hands down the best dentist and dental experience I've EVER had. Dr. Sylvia and her team made me feel completely comfortable and cared for.", rating: 5,
|
||||||
name: "Sarah Johnson",
|
imageSrc: "http://img.b2bpic.net/free-photo/positive-woman-smiling-sincerely-young-natural-looking-lady-student-age-wearing-blue-cotton-shirt_285396-4376.jpg", imageAlt: "Sarah Johnson testimonial"},
|
||||||
handle: "Verified Patient",
|
|
||||||
testimonial: "Hands down the best dentist and dental experience I've EVER had. Dr. Sylvia and her team made me feel completely comfortable and cared for.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/positive-woman-smiling-sincerely-young-natural-looking-lady-student-age-wearing-blue-cotton-shirt_285396-4376.jpg",
|
|
||||||
imageAlt: "Sarah Johnson testimonial",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Michael Chen", handle: "Verified Patient", testimonial: "Dr. Sylvia, Jason and staff were very attentive and reassuring! They answered all my questions and made the entire process painless.", rating: 5,
|
||||||
name: "Michael Chen",
|
imageSrc: "http://img.b2bpic.net/free-photo/man-portrait-posing-loft-modern-space_158595-5370.jpg", imageAlt: "Michael Chen testimonial"},
|
||||||
handle: "Verified Patient",
|
|
||||||
testimonial: "Dr. Sylvia, Jason and staff were very attentive and reassuring! They answered all my questions and made the entire process painless.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/man-portrait-posing-loft-modern-space_158595-5370.jpg",
|
|
||||||
imageAlt: "Michael Chen testimonial",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Emily Rodriguez", handle: "Verified Patient", testimonial: "The best cleaning I ever had—thorough and gentle. The staff is incredibly friendly and professional. Highly recommended!", rating: 5,
|
||||||
name: "Emily Rodriguez",
|
imageSrc: "http://img.b2bpic.net/free-photo/side-view-happy-woman-with-crossed-arms_231208-5817.jpg", imageAlt: "Emily Rodriguez testimonial"},
|
||||||
handle: "Verified Patient",
|
|
||||||
testimonial: "The best cleaning I ever had—thorough and gentle. The staff is incredibly friendly and professional. Highly recommended!",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-happy-woman-with-crossed-arms_231208-5817.jpg",
|
|
||||||
imageAlt: "Emily Rodriguez testimonial",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "David Kim", handle: "Verified Patient", testimonial: "Finally found a dentist who listens and cares. Dr. Sylvia's attention to detail and compassionate approach made all the difference for my family.", rating: 5,
|
||||||
name: "David Kim",
|
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg", imageAlt: "David Kim testimonial"},
|
||||||
handle: "Verified Patient",
|
|
||||||
testimonial: "Finally found a dentist who listens and cares. Dr. Sylvia's attention to detail and compassionate approach made all the difference for my family.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg",
|
|
||||||
imageAlt: "David Kim testimonial",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
showRating={true}
|
showRating={true}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
@@ -193,26 +147,11 @@ export default function HomePage() {
|
|||||||
description="Our commitment to quality care is reflected in our patient satisfaction and years of experience."
|
description="Our commitment to quality care is reflected in our patient satisfaction and years of experience."
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "4.3", subtitle: "Stars", category: "Patient Rating", value: "from 17 Reviews"},
|
||||||
title: "4.3",
|
|
||||||
subtitle: "Stars",
|
|
||||||
category: "Patient Rating",
|
|
||||||
value: "from 17 Reviews",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "15+", subtitle: "Years", category: "Professional Experience", value: "Dr. Sylvia's Expertise"},
|
||||||
title: "15+",
|
|
||||||
subtitle: "Years",
|
|
||||||
category: "Professional Experience",
|
|
||||||
value: "Dr. Sylvia's Expertise",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "100%", subtitle: "Commitment", category: "Patient Satisfaction", value: "Compassionate Care Focus"},
|
||||||
title: "100%",
|
|
||||||
subtitle: "Commitment",
|
|
||||||
category: "Patient Satisfaction",
|
|
||||||
value: "Compassionate Care Focus",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -229,35 +168,17 @@ export default function HomePage() {
|
|||||||
description="Get answers to common questions about our practice, services, and what to expect during your visit."
|
description="Get answers to common questions about our practice, services, and what to expect during your visit."
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "What are your office hours?", content: "We're open daily and close at 6 PM to accommodate your schedule. Contact us for specific hours and to schedule your appointment. Call (914) 948-0406."},
|
||||||
title: "What are your office hours?",
|
|
||||||
content: "We're open daily and close at 6 PM to accommodate your schedule. Contact us for specific hours and to schedule your appointment.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "How can I book an appointment?", content: "You can book online through our website, call us at (914) 948-0406, or visit our office at 282 Columbus Ave, West Harrison, NY 10604."},
|
||||||
title: "How can I book an appointment?",
|
|
||||||
content: "You can book online through our website, call us at (914) 948-0406, or visit our office at 282 Columbus Ave, West Harrison, NY 10604.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "Is the office family-friendly?", content: "Absolutely! We welcome patients of all ages and create a comfortable, welcoming environment for the entire family."},
|
||||||
title: "Is the office family-friendly?",
|
|
||||||
content: "Absolutely! We welcome patients of all ages and create a comfortable, welcoming environment for the entire family.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", title: "Do you offer emergency dental services?", content: "For emergency dental situations, please call us immediately at (914) 948-0406. We do our best to accommodate urgent care needs."},
|
||||||
title: "Do you offer emergency dental services?",
|
|
||||||
content: "For emergency dental situations, please call us immediately at (914) 948-0406. We do our best to accommodate urgent care needs.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", title: "What payment methods do you accept?", content: "We accept most major insurance plans and offer flexible payment options. Please call us to discuss your specific coverage."},
|
||||||
title: "What payment methods do you accept?",
|
|
||||||
content: "We accept most major insurance plans and offer flexible payment options. Please call us to discuss your specific coverage.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", title: "Is the first consultation free?", content: "We offer comprehensive initial consultations. Contact us to learn about our consultation options and fees."},
|
||||||
title: "Is the first consultation free?",
|
|
||||||
content: "We offer comprehensive initial consultations. Contact us to learn about our consultation options and fees.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/doctor-talks-patient-hospital-room_482257-62916.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/doctor-talks-patient-hospital-room_482257-62916.jpg"
|
||||||
imageAlt="Welcoming dental office consultation room"
|
imageAlt="Welcoming dental office consultation room"
|
||||||
@@ -275,37 +196,23 @@ export default function HomePage() {
|
|||||||
<div className="mx-auto px-4 md:px-6">
|
<div className="mx-auto px-4 md:px-6">
|
||||||
<ContactSplitForm
|
<ContactSplitForm
|
||||||
title="Contact & Appointment Request"
|
title="Contact & Appointment Request"
|
||||||
description="Ready to experience exceptional dental care? Reach out to us today to schedule your appointment or ask any questions."
|
description="Ready to experience exceptional dental care? Reach out to us today to schedule your appointment or ask any questions. Call (914) 948-0406 or visit 282 Columbus Ave, West Harrison, NY."
|
||||||
inputs={[
|
inputs={[
|
||||||
{
|
{
|
||||||
name: "fullName",
|
name: "fullName", type: "text", placeholder: "Your Full Name", required: true,
|
||||||
type: "text",
|
|
||||||
placeholder: "Your Full Name",
|
|
||||||
required: true,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "email",
|
name: "email", type: "email", placeholder: "Your Email Address", required: true,
|
||||||
type: "email",
|
|
||||||
placeholder: "Your Email Address",
|
|
||||||
required: true,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "phone",
|
name: "phone", type: "tel", placeholder: "(914) 948-0406", required: true,
|
||||||
type: "tel",
|
|
||||||
placeholder: "(914) 948-0406",
|
|
||||||
required: true,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "preferredDate",
|
name: "preferredDate", type: "date", placeholder: "Preferred Appointment Date", required: false,
|
||||||
type: "date",
|
|
||||||
placeholder: "Preferred Appointment Date",
|
|
||||||
required: false,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
textarea={{
|
textarea={{
|
||||||
name: "message",
|
name: "message", placeholder: "Tell us about your dental needs or any specific concerns...", rows: 4,
|
||||||
placeholder: "Tell us about your dental needs or any specific concerns...",
|
|
||||||
rows: 4,
|
|
||||||
required: false,
|
required: false,
|
||||||
}}
|
}}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
|||||||
@@ -35,8 +35,7 @@ export default function ServicesPage() {
|
|||||||
brandName="Jennifer A. Sylvia, D.M.D."
|
brandName="Jennifer A. Sylvia, D.M.D."
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
button={{
|
button={{
|
||||||
text: "Book Appointment",
|
text: "Book Appointment", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -47,28 +46,16 @@ export default function ServicesPage() {
|
|||||||
description="We offer a full range of dental services to meet your entire family's oral health needs. From preventive care to cosmetic enhancements, our practice is equipped to provide professional, gentle treatment."
|
description="We offer a full range of dental services to meet your entire family's oral health needs. From preventive care to cosmetic enhancements, our practice is equipped to provide professional, gentle treatment."
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "General Dentistry",
|
title: "General Dentistry", description: "Routine exams, cleanings, and preventive care to maintain your healthy smile.", imageSrc: "http://img.b2bpic.net/free-photo/full-equiped-medical-cabinet_1303-23918.jpg?_wi=3", imageAlt: "General dental checkup and examination"
|
||||||
description: "Routine exams, cleanings, and preventive care to maintain your healthy smile.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/full-equiped-medical-cabinet_1303-23918.jpg?_wi=3",
|
|
||||||
imageAlt: "General dental checkup and examination"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Professional Cleanings",
|
title: "Professional Cleanings", description: "Thorough, gentle cleanings that remove plaque and tartar while protecting your gums.", imageSrc: "http://img.b2bpic.net/free-photo/dentist-checking-patient-mounth-care_23-2149195924.jpg?_wi=2", imageAlt: "Professional dental cleaning procedure"
|
||||||
description: "Thorough, gentle cleanings that remove plaque and tartar while protecting your gums.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/dentist-checking-patient-mounth-care_23-2149195924.jpg?_wi=2",
|
|
||||||
imageAlt: "Professional dental cleaning procedure"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Teeth Whitening",
|
title: "Teeth Whitening", description: "Professional teeth whitening treatments for a brighter, more confident smile.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-sitting-dentist-s-office_1157-28567.jpg?_wi=2", imageAlt: "Cosmetic teeth whitening treatment"
|
||||||
description: "Professional teeth whitening treatments for a brighter, more confident smile.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-sitting-dentist-s-office_1157-28567.jpg?_wi=2",
|
|
||||||
imageAlt: "Cosmetic teeth whitening treatment"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Preventive Care",
|
title: "Preventive Care", description: "Personalized prevention strategies and patient education for long-term oral health.", imageSrc: "http://img.b2bpic.net/free-photo/full-equiped-medical-cabinet_1303-23918.jpg?_wi=4", imageAlt: "Preventive dental care consultation"
|
||||||
description: "Personalized prevention strategies and patient education for long-term oral health.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/full-equiped-medical-cabinet_1303-23918.jpg?_wi=4",
|
|
||||||
imageAlt: "Preventive dental care consultation"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
gridVariant="two-columns-alternating-heights"
|
gridVariant="two-columns-alternating-heights"
|
||||||
@@ -84,25 +71,13 @@ export default function ServicesPage() {
|
|||||||
description="Our commitment to quality care and patient satisfaction sets us apart."
|
description="Our commitment to quality care and patient satisfaction sets us apart."
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "4.3", subtitle: "Stars", category: "Patient Rating", value: "from 17 Reviews"
|
||||||
title: "4.3",
|
|
||||||
subtitle: "Stars",
|
|
||||||
category: "Patient Rating",
|
|
||||||
value: "from 17 Reviews"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "15+", subtitle: "Years", category: "Professional Experience", value: "Dr. Sylvia's Expertise"
|
||||||
title: "15+",
|
|
||||||
subtitle: "Years",
|
|
||||||
category: "Professional Experience",
|
|
||||||
value: "Dr. Sylvia's Expertise"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "100%", subtitle: "Commitment", category: "Patient Satisfaction", value: "Compassionate Care Focus"
|
||||||
title: "100%",
|
|
||||||
subtitle: "Commitment",
|
|
||||||
category: "Patient Satisfaction",
|
|
||||||
value: "Compassionate Care Focus"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
@@ -111,6 +86,35 @@ export default function ServicesPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="contact" data-section="contact" className="mx-auto px-4 md:px-6">
|
||||||
|
<ContactSplitForm
|
||||||
|
title="Ready to Get Started?"
|
||||||
|
description="Schedule your appointment today. Call (914) 948-0406 or visit us at 282 Columbus Ave, West Harrison, NY."
|
||||||
|
inputs={[
|
||||||
|
{
|
||||||
|
name: "fullName", type: "text", placeholder: "Your Full Name", required: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "email", type: "email", placeholder: "Your Email Address", required: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "phone", type: "tel", placeholder: "(914) 948-0406", required: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "preferredDate", type: "date", placeholder: "Preferred Appointment Date", required: false
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
textarea={{
|
||||||
|
name: "message", placeholder: "Tell us about your dental needs...", rows: 4,
|
||||||
|
required: false
|
||||||
|
}}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
mediaAnimation="slide-up"
|
||||||
|
mediaPosition="right"
|
||||||
|
buttonText="Request Appointment"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterCard
|
<FooterCard
|
||||||
logoText="Jennifer A. Sylvia, D.M.D."
|
logoText="Jennifer A. Sylvia, D.M.D."
|
||||||
|
|||||||
Reference in New Issue
Block a user