Merge version_9 into main #37

Merged
bender merged 4 commits from version_9 into main 2026-04-19 12:25:19 +00:00
4 changed files with 71 additions and 4 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"
@@ -36,7 +37,7 @@ export default function ContactPage() {
<div id="contact" data-section="contact">
<ContactText
text="Get in Touch"
text="Have Any QQue"
background={{ variant: "gradient-bars" }}
buttons={[{ text: "Email Us", href: "mailto:info@oceanimpact.com" }]}
useInvertedBackground={false}
@@ -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>
);
}