Merge version_1 into main #1
@@ -57,7 +57,7 @@ export default function AboutPage() {
|
||||
enableKpiAnimation={true}
|
||||
buttons={[{ text: "Schedule Appointment", href: "/contact" }]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/dentist-smiling-posing-dental-clinic_107420-65582.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/dentist-smiling-posing-dental-clinic_107420-65582.jpg?_wi=2"
|
||||
imageAlt="Dr. Timothy J Kreifels"
|
||||
mediaAnimation="opacity"
|
||||
imagePosition="right"
|
||||
@@ -74,7 +74,7 @@ Outside the practice, Dr. Kreifels is active in the Atlantic community and value
|
||||
tag="Professional Background"
|
||||
tagIcon={Shield}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-woman-filling-document_23-2149164283.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-woman-filling-document_23-2149164283.jpg?_wi=2"
|
||||
imageAlt="Dr. Timothy J Kreifels"
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "Call Now", href: "tel:(712) 243-3275" }]}
|
||||
@@ -97,14 +97,14 @@ Outside the practice, Dr. Kreifels is active in the Atlantic community and value
|
||||
id: "team-sarah",
|
||||
name: "Sarah Johnson",
|
||||
role: "Dental Hygienist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/clinic-oral-hospital-adult-open_1303-340.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/clinic-oral-hospital-adult-open_1303-340.jpg?_wi=2",
|
||||
imageAlt: "Sarah Johnson",
|
||||
},
|
||||
{
|
||||
id: "team-emma",
|
||||
name: "Emma Davis",
|
||||
role: "Dental Assistant",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-standing-with-coffee-cup-office_23-2148042666.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-standing-with-coffee-cup-office_23-2148042666.jpg?_wi=2",
|
||||
imageAlt: "Emma Davis",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -73,7 +73,7 @@ export default function ContactPage() {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-dentist-wearing-face-mask_23-2149164285.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-dentist-wearing-face-mask_23-2149164285.jpg?_wi=2"
|
||||
imageAlt="Dental office contact"
|
||||
mediaAnimation="opacity"
|
||||
imagePosition="right"
|
||||
@@ -114,7 +114,7 @@ We're conveniently located in downtown Atlantic and look forward to seeing you s
|
||||
tag="Reach Out"
|
||||
tagIcon={Shield}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-dentist-wearing-face-mask_23-2149164285.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-dentist-wearing-face-mask_23-2149164285.jpg?_wi=3"
|
||||
imageAlt="Dental office location"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
|
||||
@@ -1,29 +1,60 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { DM_Sans } 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 { Manrope } from "next/font/google";
|
||||
import { DM_Sans } 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 manrope = Manrope({
|
||||
variable: "--font-manrope",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Timothy J Kreifels DDS | Dentist Atlantic Iowa",
|
||||
description: "Family dentist in Atlantic, Iowa. Trusted dental care from Dr. Timothy Kreifels. New patients welcome. Call (712) 243-3275 or schedule online.",
|
||||
keywords: "dentist Atlantic Iowa, family dentist, dental care, cleanings, exams",
|
||||
metadataBase: new URL("https://www.example.com"),
|
||||
alternates: {
|
||||
canonical: "https://www.example.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Timothy J Kreifels DDS | Family Dentist Atlantic IA",
|
||||
description: "Quality dental care for families in Atlantic, Iowa. Dr. Timothy Kreifels welcomes new patients.",
|
||||
url: "https://www.example.com",
|
||||
siteName: "Timothy J Kreifels DDS",
|
||||
type: "website",
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Timothy J Kreifels DDS | Family Dentist Atlantic IA",
|
||||
description: "Trusted dental care in Atlantic, Iowa. New patients welcome!",
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -32,7 +63,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -44,4 +77,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -81,7 +81,7 @@ export default function HomePage() {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-dentist-wearing-face-mask_23-2149164285.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-dentist-wearing-face-mask_23-2149164285.jpg?_wi=1"
|
||||
imageAlt="Modern dental office interior"
|
||||
mediaAnimation="opacity"
|
||||
imagePosition="right"
|
||||
@@ -96,7 +96,7 @@ export default function HomePage() {
|
||||
tag="About Our Practice"
|
||||
tagIcon={Award}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/dentist-smiling-posing-dental-clinic_107420-65582.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/dentist-smiling-posing-dental-clinic_107420-65582.jpg?_wi=1"
|
||||
imageAlt="Dr. Timothy J Kreifels"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
@@ -124,21 +124,21 @@ export default function HomePage() {
|
||||
id: "feature-cleaning",
|
||||
title: "Dental Cleanings",
|
||||
tags: ["Professional", "Preventive"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medical-instruments_1157-18595.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medical-instruments_1157-18595.jpg?_wi=1",
|
||||
imageAlt: "Professional dental cleaning",
|
||||
},
|
||||
{
|
||||
id: "feature-exams",
|
||||
title: "Dental Exams",
|
||||
tags: ["Routine", "Preventive"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-dentists-doing-their-work-dentist-s-clinic_329181-20747.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-dentists-doing-their-work-dentist-s-clinic_329181-20747.jpg?_wi=1",
|
||||
imageAlt: "Comprehensive dental exam",
|
||||
},
|
||||
{
|
||||
id: "feature-preventive",
|
||||
title: "Preventive Care",
|
||||
tags: ["Family", "Wellness"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-smiling-young-woman-outdoor-with-headphones_624325-2758.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-smiling-young-woman-outdoor-with-headphones_624325-2758.jpg?_wi=1",
|
||||
imageAlt: "Preventive dental care",
|
||||
},
|
||||
]}
|
||||
@@ -201,21 +201,21 @@ export default function HomePage() {
|
||||
id: "team-dr-kreifels",
|
||||
name: "Dr. Timothy J Kreifels",
|
||||
role: "Owner & Lead Dentist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-filling-document_23-2149164283.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-filling-document_23-2149164283.jpg?_wi=1",
|
||||
imageAlt: "Dr. Timothy J Kreifels",
|
||||
},
|
||||
{
|
||||
id: "team-hygienist",
|
||||
name: "Sarah Johnson",
|
||||
role: "Dental Hygienist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/clinic-oral-hospital-adult-open_1303-340.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/clinic-oral-hospital-adult-open_1303-340.jpg?_wi=1",
|
||||
imageAlt: "Sarah Johnson, Dental Hygienist",
|
||||
},
|
||||
{
|
||||
id: "team-assistant",
|
||||
name: "Emma Davis",
|
||||
role: "Dental Assistant",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-standing-with-coffee-cup-office_23-2148042666.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-standing-with-coffee-cup-office_23-2148042666.jpg?_wi=1",
|
||||
imageAlt: "Emma Davis, Dental Assistant",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -77,7 +77,7 @@ export default function ServicesPage() {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/two-dentists-doing-their-work-dentist-s-clinic_329181-20747.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/two-dentists-doing-their-work-dentist-s-clinic_329181-20747.jpg?_wi=2"
|
||||
imageAlt="Dental services"
|
||||
mediaAnimation="opacity"
|
||||
imagePosition="right"
|
||||
@@ -99,21 +99,21 @@ export default function ServicesPage() {
|
||||
id: "feature-cleaning",
|
||||
title: "Professional Dental Cleanings",
|
||||
tags: ["Preventive", "Regular"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medical-instruments_1157-18595.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medical-instruments_1157-18595.jpg?_wi=2",
|
||||
imageAlt: "Professional dental cleaning",
|
||||
},
|
||||
{
|
||||
id: "feature-exams",
|
||||
title: "Comprehensive Dental Exams",
|
||||
tags: ["Preventive", "Diagnostic"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-dentists-doing-their-work-dentist-s-clinic_329181-20747.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-dentists-doing-their-work-dentist-s-clinic_329181-20747.jpg?_wi=3",
|
||||
imageAlt: "Dental examination",
|
||||
},
|
||||
{
|
||||
id: "feature-preventive",
|
||||
title: "Preventive Care",
|
||||
tags: ["Family", "Wellness"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-smiling-young-woman-outdoor-with-headphones_624325-2758.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-smiling-young-woman-outdoor-with-headphones_624325-2758.jpg?_wi=2",
|
||||
imageAlt: "Preventive care",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user