Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 042d97cac7 | |||
| e9d33f51f6 | |||
| b2a815db25 | |||
| ede3ff711d | |||
| e0fd9b396b | |||
| 5b4245acbc | |||
| 004b16fba8 | |||
| 19ee8edab2 | |||
| 5302c2924d |
57
src/app/booking/page.tsx
Normal file
57
src/app/booking/page.tsx
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
|
import { Mail } from 'lucide-react';
|
||||||
|
|
||||||
|
export default function OnlineBookingPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="text-stagger"
|
||||||
|
defaultTextAnimation="reveal-blur"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="smallMedium"
|
||||||
|
sizing="mediumLargeSizeMediumTitles"
|
||||||
|
background="aurora"
|
||||||
|
cardStyle="layered-gradient"
|
||||||
|
primaryButtonStyle="primary-glow"
|
||||||
|
secondaryButtonStyle="solid"
|
||||||
|
headingFontWeight="light"
|
||||||
|
>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
brandName="Zahnarzt Dr. Kurt Fleck und Dr. S.H. Höhn-Fleck"
|
||||||
|
navItems={[
|
||||||
|
{ name: "Startseite", id: "/" },
|
||||||
|
{ name: "Leistungen", id: "/#services" },
|
||||||
|
{ name: "Über Uns", id: "/#about" },
|
||||||
|
{ name: "Kontakt", id: "/#contact" },
|
||||||
|
{ name: "Online Termin", id: "/booking" }
|
||||||
|
]}
|
||||||
|
button={{
|
||||||
|
text: "Termin Online Buchen", href: "/booking"
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="booking-form" data-section="booking-form">
|
||||||
|
<ContactSplit
|
||||||
|
tag="Terminbuchung"
|
||||||
|
tagIcon={Mail}
|
||||||
|
title="Buchen Sie jetzt Ihren Zahnarzttermin online!"
|
||||||
|
description="Wählen Sie Ihren Wunschtermin bequem von zu Hause aus. Wir freuen uns darauf, Sie in unserer Praxis begrüßen zu dürfen."
|
||||||
|
background={{ variant: "plain" }}
|
||||||
|
useInvertedBackground={true}
|
||||||
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/online-booking-system.jpg"
|
||||||
|
imageAlt="Online-Terminbuchungssystem auf einem Tablet"
|
||||||
|
mediaPosition="left"
|
||||||
|
mediaAnimation="slide-up"
|
||||||
|
inputPlaceholder="Ihre E-Mail-Adresse"
|
||||||
|
buttonText="Terminanfrage senden"
|
||||||
|
termsText="Mit dem Absenden Ihrer Terminanfrage stimmen Sie unserer Datenschutzerklärung zu. Wir werden uns in Kürze mit Ihnen in Verbindung setzen, um Ihren Termin zu bestätigen."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -19,8 +19,8 @@ const inter = Inter({
|
|||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: 'Zahnarztpraxis Dr. Schickel Griesheim – Ihr Lächeln ist unsere Priorität',
|
title: 'Zahnarzt Dr. Kurt Fleck und Dr. S.H. Höhn-Fleck Griesheim – Ihr Lächeln ist unsere Priorität',
|
||||||
description: 'Ihre Zahnarztpraxis in Griesheim: Dr. Schickel bietet moderne Zahnmedizin für die ganze Familie. Von Prophylaxe bis Ästhetik – jetzt online Termin buchen und strahlend lächeln!',
|
description: 'Ihre Zahnarztpraxis in Griesheim: Dr. Kurt Fleck und Dr. S.H. Höhn-Fleck bieten moderne Zahnmedizin für die ganze Familie. Von Prophylaxe bis Ästhetik – jetzt online Termin buchen und strahlend lächeln!',
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
|
|||||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
import { Sparkles, Smile, Star, Mail } from 'lucide-react';
|
import { Sparkles, Smile, Star, Mail, CalendarCheck } from 'lucide-react';
|
||||||
|
|
||||||
export default function LuxuryDentistPage() {
|
export default function LuxuryDentistPage() {
|
||||||
return (
|
return (
|
||||||
@@ -27,24 +27,24 @@ export default function LuxuryDentistPage() {
|
|||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
brandName="Zahnarztpraxis Dr. Schickel"
|
brandName="Zahnarzt Dr. Kurt Fleck und Dr. S.H. Höhn-Fleck"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Startseite", id: "hero" },
|
{ name: "Startseite", id: "/" },
|
||||||
{ name: "Leistungen", id: "services" },
|
{ name: "Leistungen", id: "services" },
|
||||||
{ name: "Über Uns", id: "about" },
|
{ name: "Über Uns", id: "about" },
|
||||||
{ name: "Kontakt", id: "contact" },
|
{ name: "Kontakt", id: "contact" },
|
||||||
{ name: "Online Termin", id: "contact" }
|
{ name: "Online Termin", id: "/booking" }
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Termin Online Buchen", href: "#contact"
|
text: "Termin Online Buchen", href: "/booking"
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplitKpi
|
<HeroSplitKpi
|
||||||
title="Ihre Zahnarztpraxis in Griesheim: Moderne Zahnpflege für Ihr strahlendes Lächeln"
|
title="Ihre Zahnarztpraxis in Griesheim: Moderne Zahnpflege für Ihr strahlendes Lächeln mit Dr. Kurt Fleck und Dr. S.H. Höhn-Fleck"
|
||||||
description="Dr. Schickel und sein Team bieten Ihnen umfassende zahnmedizinische Versorgung auf höchstem Niveau. Von Prophylaxe bis zu ästhetischen Behandlungen – wir kümmern uns um Ihre Zahngesundheit."
|
description="Dr. Kurt Fleck und Dr. S.H. Höhn-Fleck bieten Ihnen umfassende zahnmedizinische Versorgung auf höchstem Niveau. Bewertet mit 4.0 Sternen aus 22 Rezensionen. Von Prophylaxe bis zu ästhetischen Behandlungen – wir kümmern uns um Ihre Zahngesundheit."
|
||||||
tag="Ihr Zahnarzt in Griesheim"
|
tag="Ihr Zahnarzt in Griesheim"
|
||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
background={{ variant: "glowing-orb" }}
|
background={{ variant: "glowing-orb" }}
|
||||||
@@ -59,7 +59,7 @@ export default function LuxuryDentistPage() {
|
|||||||
enableKpiAnimation={true}
|
enableKpiAnimation={true}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Unsere Leistungen entdecken", href: "#services" },
|
{ text: "Unsere Leistungen entdecken", href: "#services" },
|
||||||
{ text: "Termin Online Buchen", href: "#contact" }
|
{ text: "Termin Online Buchen", href: "/booking" }
|
||||||
]}
|
]}
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -90,7 +90,7 @@ export default function LuxuryDentistPage() {
|
|||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Jetzt Termin vereinbaren", href: "#contact" }
|
{ text: "Jetzt Termin vereinbaren", href: "/booking" }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -98,12 +98,12 @@ export default function LuxuryDentistPage() {
|
|||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<InlineImageSplitTextAbout
|
<InlineImageSplitTextAbout
|
||||||
heading={[
|
heading={[
|
||||||
{ type: "text", content: "Ihr Lächeln liegt uns am Herzen – Seit über 20 Jahren in Griesheim" }
|
{ type: "text", content: "Ihr Lächeln liegt uns am Herzen – Die Zahnarztpraxis Dr. Fleck und Dr. Höhn-Fleck" }
|
||||||
]}
|
]}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Lernen Sie uns kennen", href: "#testimonials" },
|
{ text: "Lernen Sie uns kennen", href: "#testimonials" },
|
||||||
{ text: "Praxisphilosophie", href: "#contact" }
|
{ text: "Praxisphilosophie", href: "/booking" }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -124,6 +124,9 @@ export default function LuxuryDentistPage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Erfahrenes & freundliches Team", description: "Unser engagiertes Team aus Zahnärzten und Fachkräften sorgt für eine angenehme Atmosphäre und individuelle Betreuung.", imageSrc: "http://img.b2bpic.net/free-photo/fashion-food-consumer-concept-cheerful-silly-redhead-woman-fooling-around-playing-with-dessert-m_1258-132691.jpg"
|
title: "Erfahrenes & freundliches Team", description: "Unser engagiertes Team aus Zahnärzten und Fachkräften sorgt für eine angenehme Atmosphäre und individuelle Betreuung.", imageSrc: "http://img.b2bpic.net/free-photo/fashion-food-consumer-concept-cheerful-silly-redhead-woman-fooling-around-playing-with-dessert-m_1258-132691.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Online Terminbuchung", description: "Buchen Sie Ihren Termin bequem von zu Hause aus – rund um die Uhr verfügbar. Einfach, schnell und unkompliziert.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/online-booking-illustration.jpg"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -148,7 +151,7 @@ export default function LuxuryDentistPage() {
|
|||||||
id: "3", name: "Sophie Weber", handle: "Junge Berufstätige", testimonial: "Mein Lächeln ist jetzt viel strahlender! Die ästhetischen Behandlungen waren top und ich wurde super beraten. Absolut empfehlenswert.", imageSrc: "http://img.b2bpic.net/free-photo/standard-quality-control-concept-m_23-2150041843.jpg", imageAlt: "Sophie Weber"
|
id: "3", name: "Sophie Weber", handle: "Junge Berufstätige", testimonial: "Mein Lächeln ist jetzt viel strahlender! Die ästhetischen Behandlungen waren top und ich wurde super beraten. Absolut empfehlenswert.", imageSrc: "http://img.b2bpic.net/free-photo/standard-quality-control-concept-m_23-2150041843.jpg", imageAlt: "Sophie Weber"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4", name: "Dr. Lehmann", handle: "Stammkunde seit 10 Jahren", testimonial: "Kompetent, zuverlässig und immer auf dem neuesten Stand der Technik. Dr. Schickel und sein Team sind meine erste Wahl in Griesheim.", imageSrc: "http://img.b2bpic.net/free-photo/hands-holding-letter-t_53876-63683.jpg", imageAlt: "Dr. Lehmann"
|
id: "4", name: "Dr. Lehmann", handle: "Stammkunde seit 10 Jahren", testimonial: "Kompetent, zuverlässig und immer auf dem neuesten Stand der Technik. Dr. Fleck und Dr. Höhn-Fleck sind meine erste Wahl in Griesheim.", imageSrc: "http://img.b2bpic.net/free-photo/hands-holding-letter-t_53876-63683.jpg", imageAlt: "Dr. Lehmann"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "5", name: "Laura Schmidt", handle: "Studentin", testimonial: "Die Online-Terminbuchung ist super praktisch und die Wartezeiten sind minimal. Das Team ist sehr verständnisvoll und nimmt sich Zeit.", imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-letter_53876-47240.jpg", imageAlt: "Laura Schmidt"
|
id: "5", name: "Laura Schmidt", handle: "Studentin", testimonial: "Die Online-Terminbuchung ist super praktisch und die Wartezeiten sind minimal. Das Team ist sehr verständnisvoll und nimmt sich Zeit.", imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-letter_53876-47240.jpg", imageAlt: "Laura Schmidt"
|
||||||
@@ -164,8 +167,8 @@ export default function LuxuryDentistPage() {
|
|||||||
<ContactSplit
|
<ContactSplit
|
||||||
tag="Kontaktieren Sie uns"
|
tag="Kontaktieren Sie uns"
|
||||||
tagIcon={Mail}
|
tagIcon={Mail}
|
||||||
title="Vereinbaren Sie jetzt Ihren Termin bei uns!"
|
title="Haben Sie Fragen? Wir helfen Ihnen gerne!"
|
||||||
description="Wir freuen uns darauf, Sie in unserer Praxis in Griesheim begrüßen zu dürfen. Nutzen Sie unser Formular oder rufen Sie uns an."
|
description="Für allgemeine Anfragen nutzen Sie bitte das Formular. Für Terminbuchungen nutzen Sie unseren Online-Service."
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/online-internet-symbol-icon_53876-144714.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/online-internet-symbol-icon_53876-144714.jpg"
|
||||||
@@ -173,15 +176,15 @@ export default function LuxuryDentistPage() {
|
|||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
inputPlaceholder="Ihre E-Mail-Adresse"
|
inputPlaceholder="Ihre E-Mail-Adresse"
|
||||||
buttonText="Termin Online Anfragen"
|
buttonText="Nachricht senden"
|
||||||
termsText="Mit dem Absenden stimmen Sie unserer Datenschutzerklärung zu."
|
termsText="Mit dem Absenden stimmen Sie unserer Datenschutzerklärung zu."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBase
|
<FooterBase
|
||||||
logoText="Zahnarztpraxis Dr. Schickel Griesheim"
|
logoText="Zahnarzt Dr. Kurt Fleck und Dr. S.H. Höhn-Fleck"
|
||||||
copyrightText="© 2024 Zahnarztpraxis Dr. Schickel | Alle Rechte vorbehalten."
|
copyrightText="© 2024 Zahnarzt Dr. Kurt Fleck und Dr. S.H. Höhn-Fleck | Alle Rechte vorbehalten."
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Leistungen", items: [
|
title: "Leistungen", items: [
|
||||||
@@ -189,7 +192,7 @@ export default function LuxuryDentistPage() {
|
|||||||
{ label: "Implantologie", href: "#services" },
|
{ label: "Implantologie", href: "#services" },
|
||||||
{ label: "Ästhetische Zahnheilkunde", href: "#services" },
|
{ label: "Ästhetische Zahnheilkunde", href: "#services" },
|
||||||
{ label: "Wurzelkanalbehandlung", href: "#services" },
|
{ label: "Wurzelkanalbehandlung", href: "#services" },
|
||||||
{ label: "Online Termin", href: "#contact" }
|
{ label: "Online Termin", href: "/booking" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user