Add src/app/privacy/page.tsx

This commit is contained in:
2026-06-03 10:57:27 +00:00
parent bdf1872844
commit 956fdbea41

98
src/app/privacy/page.tsx Normal file
View File

@@ -0,0 +1,98 @@
"use client";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import FooterBase from "@/components/sections/footer/FooterBase";
import LegalSection from "@/components/legal/LegalSection";
export default function PrivacyPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="none"
cardStyle="solid"
primaryButtonStyle="shadow"
secondaryButtonStyle="solid"
headingFontWeight="medium"
>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Services", id: "services" },
{ name: "Destinations", id: "destinations" },
{ name: "Reviews", id: "reviews" },
{ name: "Accreditations", id: "accreditations" },
{ name: "Contact", id: "contact" }
]}
brandName="Luxuria"
button={{ text: "Plan Your Trip", href: "#contact" }}
/>
<LegalSection
layout="page"
title="Privacy Policy"
subtitle="Last Updated: January 1, 2024"
sections={[
{
heading: "1. Introduction", content: [
{ type: "paragraph", text: "Welcome to Luxuria. We are committed to protecting your privacy. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you visit our website luxuria.com, including any other media form, media channel, mobile website, or mobile application related or connected thereto (collectively, the “Site”). Please read this privacy policy carefully. If you do not agree with the terms of this privacy policy, please do not access the site."
}
]
},
{
heading: "2. Collection of Your Information", content: [
{ type: "paragraph", text: "We may collect information about you in a variety of ways. The information we may collect on the Site includes:"
},
{ type: "list", items: [
"Personal Data: Personally identifiable information, such as your name, shipping address, email address, and telephone number, and demographic information, such as your age, gender, hometown, and interests, that you voluntarily give to us when you register with the Site or when you choose to participate in various activities related to the Site, such as online chat and message boards.", "Derivative Data: Information our servers automatically collect when you access the Site, such as your IP address, your browser type, your operating system, your access times, and the pages you have viewed directly before and after accessing the Site.", "Financial Data: Financial information, such as data related to your payment method (e.g., valid credit card number, card brand, expiration date) that we may collect when you purchase, order, return, exchange, or request information about our services from the Site."
]}
]
},
{
heading: "3. Use of Your Information", content: [
{ type: "paragraph", text: "Having accurate information about you permits us to provide you with a smooth, efficient, and customized experience. Specifically, we may use information collected about you via the Site to:"
},
{ type: "numbered-list", items: [
"Administer sweepstakes, promotions, and contests.", "Assist law enforcement and respond to subpoena.", "Compile anonymous statistical data and analysis for use internally or with third parties.", "Create and manage your account.", "Deliver targeted advertising, coupons, newsletters, and other information regarding promotions and the Site to you.", "Email you regarding your account or order.", "Enable user-to-user communications.", "Fulfill and manage purchases, orders, payments, and other transactions related to the Site."
]}
]
}
]}
/>
<FooterBase
logoText="Luxuria"
copyrightText="© 2025 Luxuria Travel | Luxury Journeys Worldwide"
columns={[
{
title: "Explore", items: [
{ label: "Home", href: "#hero" },
{ label: "About", href: "#about" },
{ label: "Services", href: "#services" },
{ label: "Destinations", href: "#destinations" },
],
},
{
title: "Company", items: [
{ label: "Reviews", href: "#reviews" },
{ label: "Accreditations", href: "#accreditations" },
{ label: "Contact Us", href: "#contact" },
],
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "/privacy" },
{ label: "Terms of Service", href: "/terms" },
],
},
]}
/>
</ReactLenis>
</ThemeProvider>
);
}