Update src/app/contact/page.tsx

This commit is contained in:
2026-05-16 21:42:00 +00:00
parent d155717365
commit 3255d80c33

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import React from 'react';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
@@ -7,12 +7,25 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
export default function ContactPage() {
return (
<ThemeProvider>
<NavbarLayoutFloatingOverlay
brandName="UMBRA"
navItems={[{ name: "Home", id: "/" }, { name: "Collection", id: "/#products" }, { name: "Fragrance Request", id: "/fragrance-request" }]}
/>
<div className="pt-32">
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="UMBRA"
navItems={[{ name: "Home", id: "/" }, { name: "Collection", id: "/products" }, { name: "Fragrance Request", id: "/fragrance-request" }, { name: "Contact", id: "/contact" }]}
/>
</div>
<div id="contact" data-section="contact" className="pt-32">
<ContactSplitForm
title="Contact Us"
description="Get in touch for support or collaborations."
@@ -21,6 +34,7 @@ export default function ContactPage() {
{ name: "email", type: "email", placeholder: "Email", required: true }
]}
textarea={{ name: "msg", placeholder: "Message", required: true }}
useInvertedBackground={false}
onSubmit={(data) => alert("Message sent!")}
/>
</div>