5 Commits

Author SHA1 Message Date
8c60495e54 Merge version_4 into main
Merge version_4 into main
2026-05-28 01:00:26 +00:00
dd044947ad Add src/app/privacy/page.tsx 2026-05-28 01:00:23 +00:00
bf9dec0b81 Update src/app/page.tsx 2026-05-28 01:00:22 +00:00
c009b4a64d Merge version_3 into main
Merge version_3 into main
2026-05-28 00:57:13 +00:00
5539e59c44 Merge version_3 into main
Merge version_3 into main
2026-05-28 00:56:22 +00:00
2 changed files with 131 additions and 3 deletions

View File

@@ -315,11 +315,11 @@ export default function LandingPage() {
{
label: "Contact Us", href: "#contact"},
{
label: "FAQ", href: "#"},
label: "FAQ", href: "/faq"},
{
label: "Privacy Policy", href: "#"},
label: "Privacy Policy", href: "/privacy"},
{
label: "Terms of Service", href: "#"},
label: "Terms of Service", href: "/terms"},
],
},
]}

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

@@ -0,0 +1,128 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import LegalSection from '@/components/legal/LegalSection';
export default function PrivacyPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="compact"
sizing="largeSizeMediumTitles"
background="grid"
cardStyle="gradient-radial"
primaryButtonStyle="flat"
secondaryButtonStyle="solid"
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home", id: "/"},
{
name: "Shop", id: "#products"},
{
name: "Features", id: "#features"},
{
name: "Collections", id: "#pricing"},
{
name: "Testimonials", id: "#testimonials"},
{
name: "Contact", id: "#contact"},
]}
logoSrc="http://img.b2bpic.net/free-vector/collection-gradient-logo-template_23-2148884415.jpg"
logoAlt="NEXIR Logo"
brandName="NEXIR"
/>
</div>
<div id="privacy-policy" data-section="privacy-policy">
<LegalSection
layout="page"
title="Privacy Policy"
subtitle="Your trust is our priority. Learn how we handle your data."
sections={[
{
heading: "Introduction", content: [
{
type: "paragraph", text: "NEXIR is committed to protecting your privacy. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you visit our website www.nexir.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: "Data Collection", content: [
{
type: "paragraph", text: "We may collect information about you in a variety of ways. The information we may collect on the Site includes Personal Data such as your name, shipping address, email address, 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."
}
]
},
{
heading: "Use of 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: Create and manage your account; Deliver targeted advertising; Email you regarding your account or order; Fulfill and manage purchases, orders, payments, and other transactions related to the Site; Generate a personal profile about you to make future visits to the Site more personalized; Increase the efficiency and operation of the Site; Monitor and analyze usage and trends to improve your experience with the Site; Notify you of updates to the Site; Offer new products, services, and/or recommendations to you."
}
]
}
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/side-view-man-sitting-stairs_23-2149652109.jpg?_wi=1"
imageAlt="Man sitting on stairs in a futuristic city"
logoSrc="http://img.b2bpic.net/free-vector/collection-gradient-logo-template_23-2148884415.jpg"
logoAlt="NEXIR Logo"
logoText="NEXIR: Future Worn Today"
columns={[
{
title: "Explore", items: [
{
label: "Shop", href: "#products"},
{
label: "Collections", href: "#pricing"},
{
label: "New Arrivals", href: "#"},
{
label: "Limited Drops", href: "#"},
],
},
{
title: "Company", items: [
{
label: "About Us", href: "#about"},
{
label: "Features", href: "#features"},
{
label: "Testimonials", href: "#testimonials"},
{
label: "Our Impact", href: "#metrics"},
],
},
{
title: "Support", items: [
{
label: "Contact Us", href: "#contact"},
{
label: "FAQ", href: "/faq"},
{
label: "Privacy Policy", href: "/privacy"},
{
label: "Terms of Service", href: "/terms"},
],
},
]}
copyrightText="© 2025 NEXIR. All rights reserved. | Powered by Webild"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}