Merge version_2 into main #3

Merged
bender merged 1 commits from version_2 into main 2026-04-17 06:28:59 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
import FooterBase from '@/components/sections/footer/FooterBase';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
@@ -134,25 +134,26 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={true}
background={{ variant: "plain" }}
<ContactCTA
tag="Kontakt"
title="Umów się na wizytę"
description="Wpisz swój adres email, abyśmy mogli się z Tobą skontaktować i dobrać odpowiedni termin."
title="Umów się na wizytację"
description="Nie czekaj, aż ból się pogłębi. Zarezerwuj termin swojej konsultacji już dziś."
buttons={[{ text: "Zarezerwuj termin" }]}
background={{ variant: "plain" }}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "Nawigacja", items: [{ label: "Start", href: "#hero" }, { label: "O nas", href: "#about" }] },
{ title: "Kontakt", items: [{ label: "Telefon", href: "tel:123456789" }, { label: "Email", href: "mailto:info@podolog.pl" }] },
]}
<FooterLogoEmphasis
logoText="PodologyCare"
columns={[
{ items: [{ label: "O nas" }, { label: "Usługi" }] },
{ items: [{ label: "Kontakt: +48 123 456 789" }, { label: "Email: biuro@podology.pl" }] },
{ items: [{ label: "ul. Zdrowia 1, 00-001 Warszawa" }, { label: "Godziny: Pon-Pt 8:00-18:00" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}