Add src/app/contact/page.tsx

This commit is contained in:
2026-04-09 02:07:39 +00:00
parent 3be89ac3ff
commit b73c5eca2c

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

@@ -0,0 +1,70 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="small"
sizing="mediumLarge"
background="grid"
cardStyle="glass-depth"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Products", id: "/products" },
{ name: "Contact", id: "/contact" },
]}
brandName="Tess's Kitchen"
/>
</div>
<div id="contact" data-section="contact" className="py-20">
<ContactCenter
tag="Contact Us"
title="Get in Touch"
description="Send us a message and we'll get back to you shortly regarding your orders and inquiries."
background={{ variant: "radial-gradient" }}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Tess's Kitchen", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "/about" },
{ label: "Products", href: "/products" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Follow Us", items: [
{ label: "Facebook", href: "#" },
{ label: "Instagram", href: "#" },
],
},
]}
bottomLeftText="© 2024 Tess's Kitchen"
bottomRightText="All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}