Add src/app/contact/page.tsx

This commit is contained in:
2026-04-13 01:13:16 +00:00
parent cf2000a167
commit de9f54a097

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

@@ -0,0 +1,57 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="small"
sizing="mediumLarge"
background="blurBottom"
cardStyle="gradient-bordered"
primaryButtonStyle="double-inset"
secondaryButtonStyle="layered"
headingFontWeight="extrabold"
>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Vendors", id: "/vendors" },
{ name: "Classes", id: "/classes" },
{ name: "About", id: "/about" },
{ name: "Visit", id: "/visit" },
{ name: "Contact", id: "/contact" },
]}
brandName="gilded nest"
button={{ text: "Visit Us", href: "/visit" }}
/>
<div id="contact" data-section="contact" className="py-20">
<ContactSplit
tag="Contact Us"
title="Get in Touch"
description="Whether you have a question about our vendors, want to request a custom quote, or just want to say hi, we'd love to hear from you."
background={{ variant: "gradient-bars" }}
buttonText="Send Message"
/>
</div>
<FooterBase
columns={[
{ title: "Shop", items: [{ label: "Vendors", href: "/vendors" }, { label: "Bookstore", href: "/bookstore" }] },
{ title: "Visit", items: [{ label: "Hours & Map", href: "/visit" }, { label: "Community", href: "/about" }, { label: "Contact", href: "/contact" }] }
]}
logoText="gilded nest"
/>
</ReactLenis>
</ThemeProvider>
);
}