Add src/app/contact/page.tsx

This commit is contained in:
2026-03-27 12:15:58 +00:00
parent 12f445d031
commit 0f3dc8c95d

90
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,90 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="mediumLarge"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="solid"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Start", id: "/"},
{
name: "Oferta", id: "/#services"},
{
name: "Dlaczego my", id: "/#why"},
{
name: "Kontakt", id: "/contact"},
]}
brandName="Wotem s.c."
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
useInvertedBackground={false}
title="Masz pytania?"
description="Napisz do nas lub zadzwoń pomożemy dobrać idealne rozwiązanie. Odwiedź nas przy ul. Bankowej 7 w Kaliszu."
inputs={[
{
name: "name", type: "text", placeholder: "Imię i Nazwisko", required: true,
},
{
name: "phone", type: "tel", placeholder: "Numer telefonu", required: true,
},
]}
textarea={{
name: "message", placeholder: "W czym możemy pomóc?", required: true,
rows: 4,
}}
imageSrc="http://img.b2bpic.net/free-photo/close-up-people-working-office_329181-16277.jpg?id=13274163"
mediaAnimation="blur-reveal"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Strona Główna", href: "/"},
{
label: "Oferta", href: "/#services"},
{
label: "Kontakt", href: "/contact"},
],
},
{
items: [
{
label: "ul. Bankowa 7, 62-800 Kalisz"},
{
label: "Tel: +48 62 501 34 54", href: "tel:+48625013454"},
],
},
]}
logoText="WOTEM s.c."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}