Add src/app/contact/page.tsx
This commit is contained in:
31
src/app/contact/page.tsx
Normal file
31
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,31 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", href: "/" },
|
||||
{ name: "FAQ", href: "/faq" },
|
||||
{ name: "Interactive", href: "/interactive" },
|
||||
{ name: "Contact", href: "/contact" },
|
||||
]}
|
||||
brandName="Luxuria"
|
||||
/>
|
||||
<ContactCenter
|
||||
tag="Get in Touch"
|
||||
title="Contact Our Team"
|
||||
description="Ready to plan your next journey? We're here to help."
|
||||
background={{ variant: 'radial-gradient' }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user