Compare commits
8 Commits
version_11
...
version_12
| Author | SHA1 | Date | |
|---|---|---|---|
| 5ac084f0aa | |||
| ba252b7a36 | |||
| 395fbac99c | |||
| 9eacf663ee | |||
| 276cbeb545 | |||
| 3dd04a338d | |||
| 5b4dcbe51b | |||
| 8820e7dd5f |
@@ -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
|
||||
|
||||
@@ -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" }}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user