Add src/app/contact/page.tsx

This commit is contained in:
2026-04-16 11:58:13 +00:00
parent f4fe6c4723
commit 653ebe4e45

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

@@ -0,0 +1,56 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="largeSizeMediumTitles"
background="fluid"
cardStyle="subtle-shadow"
primaryButtonStyle="double-inset"
secondaryButtonStyle="layered"
headingFontWeight="medium"
>
<ReactLenis root>
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/features" },
{ name: "Contact", id: "/contact" },
]}
brandName="MD NAILS"
/>
<div className="pt-32 pb-20">
<ContactSplitForm
useInvertedBackground={true}
title="Get in Touch"
description="Visit us at Pferdemarkt 39, 18273 Güstrow or call 01520 6021899. Business hours: Mon-Fri 09:00 - 18:00, Sat 10:00 - 15:00."
inputs={[
{ name: "name", type: "text", placeholder: "Your Name" },
{ name: "email", type: "email", placeholder: "Your Email" },
]}
textarea={{ name: "message", placeholder: "How can we help you?", rows: 4 }}
/>
</div>
<FooterSimple
columns={[
{ title: "Visit", items: [{ label: "Pferdemarkt 39, 18273 Güstrow" }] },
{ title: "Call", items: [{ label: "01520 6021899", href: "tel:015206021899" }] },
]}
bottomLeftText="© 2025 MD NAILS"
bottomRightText="All Rights Reserved"
/>
</ReactLenis>
</ThemeProvider>
);
}