diff --git a/app/sustainability/page.tsx b/app/sustainability/page.tsx new file mode 100644 index 0000000..efcd36b --- /dev/null +++ b/app/sustainability/page.tsx @@ -0,0 +1,690 @@ +"use client"; + +import { motion } from "framer-motion"; +import Navigation from "../components/Navigation"; +import Footer from "../components/Footer"; +import AnimatedButton from "../components/AnimatedButton"; +import FadeIn, { StaggerContainer, StaggerItem } from "../components/FadeIn"; +import { + ArrowRightIcon, + LeafIcon, + CheckIcon, + RecycleIcon, +} from "../components/Icons"; + +const definitions = [ + { + term: "Biodegradable", + description: + "Products that break down naturally within 1 year or less, leaving nothing behind. The FTC states these materials should decompose in a reasonably short period after customary disposal.", + icon: "🌱", + }, + { + term: "Compostable", + description: + "Materials that break down into natural elements in a compost environment, typically within 90 days, leaving no toxic residue and creating nutrient-rich soil.", + icon: "🍃", + }, + { + term: "Recyclable", + description: + "Products that can be collected, processed, and manufactured into new products, reducing waste and conserving natural resources.", + icon: "♻️", + }, +]; + +const greenProducts = [ + "Compostable Dinnerware", + "Compostable Hinged Containers", + "Compostable Cutlery", + "Compostable Cups", + "Compostable Can Liners", + "Recyclable PETE Containers", + "Recyclable PP Containers", + "PLA Lined Containers", +]; + +const benefits = [ + { + title: "Reduce Environmental Impact", + description: + "Minimize your carbon footprint and contribute to a healthier planet with eco-friendly alternatives.", + icon: LeafIcon, + }, + { + title: "Meet Regulations", + description: + "Stay compliant with evolving state and local environmental regulations and bans on certain materials.", + icon: CheckIcon, + }, + { + title: "Appeal to Customers", + description: + "Today's consumers prefer businesses that demonstrate environmental responsibility.", + icon: RecycleIcon, + }, +]; + +const stats = [ + { value: "90", unit: "Days", label: "Typical compost breakdown time" }, + { value: "100%", unit: "", label: "Plant-based materials available" }, + { value: "10", unit: "States", label: "With packaging regulations" }, +]; + +export default function SustainabilityPage() { + return ( +
+ + + {/* Hero Section */} +
+ {/* Animated background */} +
+ + +
+ + {/* Floating leaves decoration */} +
+ {[...Array(6)].map((_, i) => ( + + 🍃 + + ))} +
+ +
+ + + + Eco-Friendly Solutions + + + + + Committed to{" "} + + Sustainability + + + + + Go green and find the perfect sustainable product options for your + business. We help you make environmentally responsible choices + without compromising on quality. + + + + } + > + Get Started + + + View Green Products + + +
+ + {/* Scroll indicator */} + + + + + +
+ + {/* Stats Section */} +
+
+
+
+ {stats.map((stat, index) => ( + + +
+ + {stat.value} + + {stat.unit && ( + + {stat.unit} + + )} +
+ + {stat.label} + +
+
+ ))} +
+
+
+ + {/* Understanding Terms Section */} +
+
+
+ + + Know the Difference + + + +

+ What These Terms{" "} + Really Mean +

+
+ +

+ There are many product claims regarding biodegradable, + compostable, and recyclable properties. Understanding these + definitions helps you make informed decisions for your business. +

+
+
+ + + {definitions.map((def) => ( + + + + {def.icon} + +

+ {def.term} +

+

+ {def.description} +

+
+
+ ))} +
+ + {/* Additional context */} + + +
+ + 📋 + +
+

+ Industry Standards +

+

+ The American Chemistry Council found that most consumers + expect biodegradable products to break down naturally within + 1 year or less, leaving nothing behind. The FTC shares this + view, stating materials should decompose "in a reasonably + short period of time after customary disposal." ASTM + (American Standards for Testing Materials) provides official + definitions and testing standards for these properties. +

+
+
+
+
+
+
+ + {/* Benefits Section */} +
+
+
+
+ + + Why Go Green + + + +

+ Benefits of{" "} + Sustainable Products +

+
+ +

+ Making the switch to eco-friendly products isn't just good + for the environment—it's good for business too. +

+
+ +
+ {benefits.map((benefit, index) => ( + + + + + +
+

+ {benefit.title} +

+

+ {benefit.description} +

+
+
+
+ ))} +
+
+ + {/* Visual */} + +
+
+ {/* Animated circles */} +
+ + {[...Array(3)].map((_, i) => ( + + ))} + + + + + +
+ + {/* Floating badges */} + {[ + { label: "Eco-Friendly", top: "15%", left: "10%" }, + { label: "Compostable", top: "20%", right: "5%" }, + { label: "Sustainable", bottom: "25%", left: "5%" }, + { label: "Recyclable", bottom: "15%", right: "10%" }, + ].map((badge, i) => ( + +
+ {badge.label} +
+
+ ))} +
+
+
+
+
+
+ + {/* Green Products Section */} +
+
+
+ + + Our Green Range + + + +

+ Sustainable{" "} + Product Options +

+
+ +

+ We offer a comprehensive range of eco-friendly alternatives to + meet your sustainability goals. +

+
+
+ + +
+
+ {greenProducts.map((product, index) => ( + + + + + + {product} + + + ))} +
+ + + } + > + View All Green Products + + +
+
+
+
+ + {/* State Ordinances CTA */} +
+
+
+ +
+ + 📜 + Stay Compliant + +

+ Know Your{" "} + State Regulations +

+

+ Many states have implemented bans and ordinances on certain + packaging materials. We help you navigate these regulations + and find compliant alternatives for your business. +

+
+ {["Colorado", "Washington", "Oregon"].map((state, i) => ( + + {state} + + ))} + + + More + +
+ } + > + View State Ordinances + +
+
+ + +
+ +
+ {[ + { + state: "Colorado", + rule: "Styrofoam takeout containers banned as of Jan 2024", + }, + { + state: "Washington", + rule: "Foam containers and packing peanuts banned", + }, + { + state: "Oregon", + rule: "Single-use plastic bags and polystyrene banned", + }, + ].map((item, i) => ( + +
+ +
+
+

{item.state}

+

{item.rule}

+
+
+ ))} +
+
+
+
+
+
+
+ + {/* Final CTA */} +
+ {/* Background decoration */} + + +
+ + + + + + +

+ Ready to Go Green? +

+
+ +

+ Our team is here to help you find the perfect sustainable + solutions for your business. Let's make a positive impact + together. +

+
+ +
+ } + > + Contact Us Today + + + Browse All Products + +
+
+
+
+ +
+ ); +}