Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-07 14:27:29 +00:00
2 changed files with 16 additions and 43 deletions

View File

@@ -1,54 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Green Future - Inspire Sustainable Change", description: "Join the movement to inspire recycling and sustainable habits. A youth-focused environmental initiative dedicated to protecting our planet through education and action.", keywords: "recycling, sustainability, environmental education, youth activism, eco-friendly, green future", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Green Future - Small Actions. Big Change.", description: "Inspiring the younger generation to recycle, care for the environment, and adopt sustainable habits.", type: "website", siteName: "Green Future Project", images: [
{
url: "http://img.b2bpic.net/free-psd/renewable-clean-solar-energy-social-media-post-template-design_84443-1140.jpg", alt: "Green Future environmental movement"},
],
},
twitter: {
card: "summary_large_image", title: "Green Future - Inspire Sustainable Change", description: "Join the movement to protect our planet through recycling and sustainability.", images: ["http://img.b2bpic.net/free-psd/renewable-clean-solar-energy-social-media-post-template-design_84443-1140.jpg"],
},
};
title: "Green Future Project", description: "Join the movement to inspire people around the world to recycle, care for the environment, and adopt sustainable habits."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -150,16 +150,16 @@ export default function LandingPage() {
tagAnimation="blur-reveal"
products={[
{
id: "recycle-plastics", name: "Recycle Plastics & Packaging", price: "Start Now", imageSrc: "http://img.b2bpic.net/free-photo/recycling-basket-kitchen-table_23-2148523440.jpg?_wi=4", imageAlt: "Recycling plastic bottles", initialQuantity: 1,
id: "recycle-plastics", name: "Recycle Plastics & Packaging", price: "Begin Today", imageSrc: "http://img.b2bpic.net/free-photo/recycling-basket-kitchen-table_23-2148523440.jpg?_wi=4", imageAlt: "Recycling plastic bottles", initialQuantity: 1,
},
{
id: "reuse-items", name: "Reuse & Repurpose Items", price: "Start Now", imageSrc: "http://img.b2bpic.net/free-photo/recycling-basket-kitchen-table_23-2148523440.jpg?_wi=5", imageAlt: "Reusable eco-friendly items", initialQuantity: 1,
id: "reuse-items", name: "Reuse & Repurpose Items", price: "Take This Step", imageSrc: "http://img.b2bpic.net/free-photo/recycling-basket-kitchen-table_23-2148523440.jpg?_wi=5", imageAlt: "Reusable eco-friendly items", initialQuantity: 1,
},
{
id: "reduce-plastics", name: "Reduce Single-Use Plastics", price: "Start Now", imageSrc: "http://img.b2bpic.net/free-photo/recycling-basket-kitchen-table_23-2148523440.jpg?_wi=6", imageAlt: "Eco-friendly alternatives", initialQuantity: 1,
id: "reduce-plastics", name: "Reduce Single-Use Plastics", price: "Act Now", imageSrc: "http://img.b2bpic.net/free-photo/recycling-basket-kitchen-table_23-2148523440.jpg?_wi=6", imageAlt: "Eco-friendly alternatives", initialQuantity: 1,
},
{
id: "sustainable-habits", name: "Support Eco-Friendly Habits", price: "Start Now", imageSrc: "http://img.b2bpic.net/free-photo/recycling-basket-kitchen-table_23-2148523440.jpg?_wi=7", imageAlt: "Sustainable lifestyle choices", initialQuantity: 1,
id: "sustainable-habits", name: "Support Eco-Friendly Habits", price: "Join Today", imageSrc: "http://img.b2bpic.net/free-photo/recycling-basket-kitchen-table_23-2148523440.jpg?_wi=7", imageAlt: "Sustainable lifestyle choices", initialQuantity: 1,
},
]}
textboxLayout="default"