12 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
0d82269ad3 Update src/app/page.tsx 2026-03-10 21:04:02 +00:00
96abf9def3 Merge version_10 into main
Merge version_10 into main
2026-03-10 21:02:52 +00:00
7f1f4e1692 Update src/app/page.tsx 2026-03-10 21:02:48 +00:00
e5e1c5ca99 Merge version_9 into main
Merge version_9 into main
2026-03-10 21:01:02 +00:00
3 changed files with 19 additions and 9 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

@@ -9,7 +9,7 @@ import TestimonialCardThirteen from '@/components/sections/testimonial/Testimoni
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Activity, Calendar, Heart, HeartHandshake, Smile, Users, Zap } from 'lucide-react';
import { Activity, Calendar, Heart, HeartHandshake, Smile, Users, Zap, Award } from 'lucide-react';
export default function LandingPage() {
return (
@@ -69,7 +69,7 @@ export default function LandingPage() {
<div id="about" data-section="about">
<TextAbout
tag="Über Physio Shala"
title="Schmerzfrei leben mit 15+ Jahren Erfahrung und modernen Therapiemethoden"
title="15+ Jahren Erfahrung | 1000+ zufriedene Patienten | Zertifiziert nach DIN EN ISO 9001"
buttons={[
{ text: "Unsere Geschichte", href: "#services" },
{ text: "Team kennenlernen", href: "#team" }
@@ -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" }}
@@ -236,4 +236,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}

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;
}