Add src/app/contact/page.tsx

This commit is contained in:
2026-05-13 15:06:44 +00:00
parent d86d52de76
commit 756042d5e8

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

@@ -0,0 +1,19 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ContactSplit from '@/components/sections/contact/ContactSplit';
export default function ContactPage() {
return (
<ThemeProvider>
<NavbarStyleCentered navItems={[{name: "Home", id: "/"}, {name: "Products", id: "/products"}, {name: "About", id: "/about"}, {name: "Login", id: "/login"}, {name: "Cart", id: "/cart"}, {name: "Contact", id: "/contact"}]} brandName="LUXE" />
<ContactSplit
tag="Inquiries"
title="Luxurious Concierge"
description="We are at your service for any exclusive request."
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={true}
/>
</ThemeProvider>
);
}