7 Commits

Author SHA1 Message Date
1799517dc7 Update src/app/privacy/page.tsx 2026-04-19 12:20:49 +00:00
3e8990d51f Update src/app/privacy/page.tsx 2026-04-19 12:18:14 +00:00
9b5c302613 Add src/app/privacy/page.tsx 2026-04-19 12:17:44 +00:00
56ae324508 Update src/app/page.tsx 2026-04-19 12:17:44 +00:00
26c52fdd0a Update src/app/features/page.tsx 2026-04-19 12:17:43 +00:00
69c51594a1 Update src/app/contact/page.tsx 2026-04-19 12:17:43 +00:00
b6b967ab90 Merge version_9 into main
Merge version_9 into main
2026-04-19 12:15:42 +00:00
4 changed files with 70 additions and 3 deletions

View File

@@ -28,6 +28,7 @@ export default function ContactPage() {
{ name: "Features", id: "/features" },
{ name: "Impact", id: "/" },
{ name: "FAQ", id: "/" },
{ name: "Privacy", id: "/privacy" },
{ name: "Contact", id: "/contact" },
]}
brandName="OceanImpact"
@@ -48,7 +49,7 @@ export default function ContactPage() {
logoText="OceanImpact: Cruise Ships"
columns={[
{ title: "Resources", items: [{ label: "Research", href: "#" }, { label: "Policies", href: "#" }] },
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Contact", href: "/contact" }] },
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Privacy", href: "/privacy" }, { label: "Contact", href: "/contact" }] },
]}
/>
</div>

View File

@@ -28,6 +28,7 @@ export default function FeaturesPage() {
{ name: "Features", id: "/features" },
{ name: "Impact", id: "/" },
{ name: "FAQ", id: "/" },
{ name: "Privacy", id: "/privacy" },
{ name: "Contact", id: "/contact" },
]}
brandName="OceanImpact"
@@ -66,7 +67,7 @@ export default function FeaturesPage() {
logoText="OceanImpact: Cruise Ships"
columns={[
{ title: "Resources", items: [{ label: "Research", href: "#" }, { label: "Policies", href: "#" }] },
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Contact", href: "/contact" }] },
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Privacy", href: "/privacy" }, { label: "Contact", href: "/contact" }] },
]}
/>
</div>

View File

@@ -35,6 +35,7 @@ export default function LandingPage() {
{ name: "Features", id: "/features" },
{ name: "Impact", id: "pollution" },
{ name: "FAQ", id: "faq" },
{ name: "Privacy", id: "/privacy" },
{ name: "Contact", id: "/contact" },
]}
brandName="OceanImpact"
@@ -133,7 +134,7 @@ export default function LandingPage() {
logoText="OceanImpact: Cruise Ships"
columns={[
{ title: "Resources", items: [{ label: "Research", href: "#" }, { label: "Policies", href: "#" }] },
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Contact", href: "/contact" }] },
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Privacy", href: "/privacy" }, { label: "Contact", href: "/contact" }] },
]}
/>
</div>

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

@@ -0,0 +1,64 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import LegalSection from '@/components/legal/LegalSection';
export default function PrivacyPolicyPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="smallMedium"
sizing="largeSizeMediumTitles"
background="aurora"
cardStyle="gradient-mesh"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="layered"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "/features" },
{ name: "Impact", id: "/" },
{ name: "FAQ", id: "/" },
{ name: "Privacy", id: "/privacy" },
{ name: "Contact", id: "/contact" },
]}
brandName="OceanImpact"
/>
</div>
<LegalSection
layout="page"
title="Privacy Policy"
subtitle="Last updated: May 2024"
sections={[
{
heading: "Data Collection", content: { type: "paragraph", text: "We collect minimal information to improve your browsing experience. This includes basic analytical data used to monitor site performance and usage trends." }
},
{
heading: "Information Usage", content: { type: "list", items: ["Improving website performance", "Analyzing user navigation patterns", "Enhancing accessibility features"] }
}
]}
/>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="OceanImpact: Cruise Ships"
columns={[
{ title: "Resources", items: [{ label: "Research", href: "#" }, { label: "Policies", href: "#" }] },
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Privacy", href: "/privacy" }, { label: "Contact", href: "/contact" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}