8 Commits

Author SHA1 Message Date
5ac084f0aa Update theme fonts 2026-03-10 21:11:47 +00:00
ba252b7a36 Update theme fonts 2026-03-10 21:11:46 +00:00
395fbac99c Update theme fonts 2026-03-10 21:11:35 +00:00
9eacf663ee Update theme fonts 2026-03-10 21:11:35 +00:00
276cbeb545 Update theme fonts 2026-03-10 21:10:05 +00:00
3dd04a338d Update theme fonts 2026-03-10 21:10:04 +00:00
5b4dcbe51b Update src/app/page.tsx 2026-03-10 21:08:19 +00:00
8820e7dd5f Merge version_11 into main
Merge version_11 into main
2026-03-10 21:04:06 +00:00
3 changed files with 16 additions and 6 deletions

View File

@@ -6,6 +6,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Nunito_Sans } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Open_Sans } from "next/font/google";
@@ -14,8 +16,16 @@ export const metadata: Metadata = {
description: 'Moderne Physiotherapie in Konstanz. Schmerzbehandlung, Rehabilitation und Mobilitätstraining mit professionellem Team. Jetzt Termin anfragen.',
};
const nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans", subsets: ["latin"],
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
export default function RootLayout({
@@ -26,7 +36,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunitoSans.variable} antialiased`}>
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -187,7 +187,7 @@ export default function LandingPage() {
<ContactCenter
tag="Kontakt"
title="Buchen Sie Ihren Termin"
description="Starten Sie Ihre Reise zu besserer Gesundheit und Mobilität. Wir freuen uns, Sie in unserer Praxis willkommen zu heißen."
description="Starten Sie Ihre Reise zu besserer Gesundheit und Mobilität. Wir rufen Sie an oder senden Ihnen einen Bestätigungslink."
tagIcon={Calendar}
tagAnimation="slide-up"
background={{ variant: "plain" }}

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-nunito-sans), sans-serif;
font-family: var(--font-open-sans), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-nunito-sans), sans-serif;
font-family: var(--font-inter), sans-serif;
}