Add src/app/contact/page.tsx
This commit is contained in:
19
src/app/contact/page.tsx
Normal file
19
src/app/contact/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user