Add src/app/contact/page.tsx

This commit is contained in:
2026-04-22 05:58:35 +00:00
parent 895c4158ee
commit 226b864d95

31
src/app/contact/page.tsx Normal file
View 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>
);
}