Compare commits
5 Commits
version_10
...
version_9
| Author | SHA1 | Date | |
|---|---|---|---|
| a584200c3f | |||
| 922da41fef | |||
| f64676a428 | |||
| b1a78837a3 | |||
| 882b8d011e |
@@ -28,6 +28,7 @@ export default function ContactPage() {
|
|||||||
{ name: "Features", id: "/features" },
|
{ name: "Features", id: "/features" },
|
||||||
{ name: "Impact", id: "/" },
|
{ name: "Impact", id: "/" },
|
||||||
{ name: "FAQ", id: "/" },
|
{ name: "FAQ", id: "/" },
|
||||||
|
{ name: "Privacy", id: "/privacy" },
|
||||||
{ name: "Contact", id: "/contact" },
|
{ name: "Contact", id: "/contact" },
|
||||||
]}
|
]}
|
||||||
brandName="OceanImpact"
|
brandName="OceanImpact"
|
||||||
@@ -36,7 +37,7 @@ export default function ContactPage() {
|
|||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactText
|
<ContactText
|
||||||
text="Get in Touch"
|
text="Questions? "
|
||||||
background={{ variant: "gradient-bars" }}
|
background={{ variant: "gradient-bars" }}
|
||||||
buttons={[{ text: "Email Us", href: "mailto:info@oceanimpact.com" }]}
|
buttons={[{ text: "Email Us", href: "mailto:info@oceanimpact.com" }]}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -48,7 +49,7 @@ export default function ContactPage() {
|
|||||||
logoText="OceanImpact: Cruise Ships"
|
logoText="OceanImpact: Cruise Ships"
|
||||||
columns={[
|
columns={[
|
||||||
{ title: "Resources", items: [{ label: "Research", href: "#" }, { label: "Policies", href: "#" }] },
|
{ 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>
|
</div>
|
||||||
|
|||||||
@@ -28,6 +28,7 @@ export default function FeaturesPage() {
|
|||||||
{ name: "Features", id: "/features" },
|
{ name: "Features", id: "/features" },
|
||||||
{ name: "Impact", id: "/" },
|
{ name: "Impact", id: "/" },
|
||||||
{ name: "FAQ", id: "/" },
|
{ name: "FAQ", id: "/" },
|
||||||
|
{ name: "Privacy", id: "/privacy" },
|
||||||
{ name: "Contact", id: "/contact" },
|
{ name: "Contact", id: "/contact" },
|
||||||
]}
|
]}
|
||||||
brandName="OceanImpact"
|
brandName="OceanImpact"
|
||||||
@@ -66,7 +67,7 @@ export default function FeaturesPage() {
|
|||||||
logoText="OceanImpact: Cruise Ships"
|
logoText="OceanImpact: Cruise Ships"
|
||||||
columns={[
|
columns={[
|
||||||
{ title: "Resources", items: [{ label: "Research", href: "#" }, { label: "Policies", href: "#" }] },
|
{ 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>
|
</div>
|
||||||
|
|||||||
@@ -35,6 +35,7 @@ export default function LandingPage() {
|
|||||||
{ name: "Features", id: "/features" },
|
{ name: "Features", id: "/features" },
|
||||||
{ name: "Impact", id: "pollution" },
|
{ name: "Impact", id: "pollution" },
|
||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "faq" },
|
||||||
|
{ name: "Privacy", id: "/privacy" },
|
||||||
{ name: "Contact", id: "/contact" },
|
{ name: "Contact", id: "/contact" },
|
||||||
]}
|
]}
|
||||||
brandName="OceanImpact"
|
brandName="OceanImpact"
|
||||||
@@ -133,7 +134,7 @@ export default function LandingPage() {
|
|||||||
logoText="OceanImpact: Cruise Ships"
|
logoText="OceanImpact: Cruise Ships"
|
||||||
columns={[
|
columns={[
|
||||||
{ title: "Resources", items: [{ label: "Research", href: "#" }, { label: "Policies", href: "#" }] },
|
{ 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>
|
</div>
|
||||||
|
|||||||
64
src/app/privacy/page.tsx
Normal file
64
src/app/privacy/page.tsx
Normal 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>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user