Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 710b66ffe1 | |||
| 79e4ca3227 | |||
| 5561b1f632 | |||
| 951b339ad4 | |||
| 1fbe6d725a | |||
| cdb07b8a2c | |||
| 00cf600365 | |||
| 60bbc8d87f | |||
| 6c5d641f23 |
76
src/app/features/page.tsx
Normal file
76
src/app/features/page.tsx
Normal file
@@ -0,0 +1,76 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
|
||||
export default function FeaturesPage() {
|
||||
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: "Contact", id: "/" },
|
||||
]}
|
||||
brandName="OceanImpact"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTwelve
|
||||
animationType="slide-up"
|
||||
textboxLayout="split-description"
|
||||
title="Environmental Impacts of Cruise Ships"
|
||||
description="An in-depth look at how the cruise ship industry affects our oceans and coastal ecosystems."
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "f1", label: "Marine Health", title: "Water Pollution", items: [
|
||||
"Illegal discharge of bilge water containing oils and hazardous chemicals.", "Release of sewage contaminated with fecal matter, nutrients, and heavy metals.", "Microplastic and plastics contamination through wastewater treatment systems."
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "f2", label: "Atmosphere", title: "Air Quality & Emissions", items: [
|
||||
"Heavy fuel oil combustion releasing massive sulfur dioxide (SO2) amounts.", "High carbon emissions contributing to localized climate warming and glacier melt.", "Health hazards for coastal cities and port residents from particulate matter (PM)."
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "f3", label: "Ecology", title: "Physical Ecosystem Damage", items: [
|
||||
"Physical destruction of coral reefs through anchor drops and propeller wash.", "Disruption of marine life behavioral patterns due to continuous underwater noise pollution.", "Invasive species spread through untreated ballast water discharge and hurts ecosystems."
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<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: "Contact", href: "#" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -33,6 +33,8 @@ export default function LandingPage() {
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "Features", id: "/features"},
|
||||
{
|
||||
name: "Impact", id: "pollution"},
|
||||
{
|
||||
@@ -51,7 +53,7 @@ export default function LandingPage() {
|
||||
tag="Environmental Research"
|
||||
buttons={[
|
||||
{
|
||||
text: "Learn More", href: "#pollution"},
|
||||
text: "Learn More", href: "/features"},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARLkjU9t1ru27ZaFOKNjNfRfIu/uploaded-1776534908646-pya809c0.jpg"
|
||||
showBlur={true}
|
||||
|
||||
Reference in New Issue
Block a user