Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -119,7 +119,7 @@ export default function ContactPage() {
|
||||
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?_wi=2"
|
||||
imageAlt="Welcoming dental office consultation room"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -1,24 +1,53 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Figtree } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Figtree } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const figtree = Figtree({
|
||||
variable: "--font-figtree",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Jennifer A. Sylvia, D.M.D. | Gentle Dental Care in West Harrison",
|
||||
description: "Experience compassionate dental care from Dr. Jennifer A. Sylvia in West Harrison, NY. Trusted by families for general dentistry, teeth whitening, and preventive care. 4.3★ rated. Book your appointment today.",
|
||||
keywords: "dentist West Harrison NY, dental care, Dr. Jennifer Sylvia, gentle dentistry, family dentist, teeth cleaning, cosmetic dentistry, preventive care",
|
||||
openGraph: {
|
||||
title: "Jennifer A. Sylvia, D.M.D. - Your Trusted Dentist in West Harrison",
|
||||
description: "Compassionate dental care for the whole family. Experience gentle, professional dentistry in a welcoming environment.",
|
||||
url: "https://jenniferasyldiad.dental",
|
||||
siteName: "Jennifer A. Sylvia, D.M.D.",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/female-dentist-treats-patients-teeth-stomatologist-working-with-professional-equipment_169016-67020.jpg",
|
||||
alt: "Modern dental office"
|
||||
}
|
||||
],
|
||||
type: "website"
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Jennifer A. Sylvia, D.M.D. - Gentle Dental Care",
|
||||
description: "Your trusted dentist in West Harrison. Compassionate, professional dental care for the entire family.",
|
||||
images: ["http://img.b2bpic.net/free-photo/female-dentist-treats-patients-teeth-stomatologist-working-with-professional-equipment_169016-67020.jpg"]
|
||||
}
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +56,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${figtree.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +70,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -103,25 +103,25 @@ export default function HomePage() {
|
||||
{
|
||||
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",
|
||||
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",
|
||||
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",
|
||||
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",
|
||||
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",
|
||||
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",
|
||||
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",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-equiped-medical-cabinet_1303-23918.jpg?_wi=2",
|
||||
imageAlt: "Preventive dental care consultation",
|
||||
},
|
||||
]}
|
||||
@@ -259,7 +259,7 @@ export default function HomePage() {
|
||||
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?_wi=1"
|
||||
imageAlt="Welcoming dental office consultation room"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -49,25 +49,25 @@ export default function ServicesPage() {
|
||||
{
|
||||
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",
|
||||
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",
|
||||
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",
|
||||
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",
|
||||
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",
|
||||
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",
|
||||
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",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-equiped-medical-cabinet_1303-23918.jpg?_wi=4",
|
||||
imageAlt: "Preventive dental care consultation"
|
||||
}
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user