7 Commits

Author SHA1 Message Date
76c286ba53 Update src/app/page.tsx 2026-03-07 14:31:05 +00:00
8a35895a2e Merge version_2 into main
Merge version_2 into main
2026-03-07 14:27:29 +00:00
47001c49cb Update src/app/page.tsx 2026-03-07 14:27:25 +00:00
f3b2e4febd Update src/app/layout.tsx 2026-03-07 14:27:24 +00:00
2c411452a1 Merge version_1 into main
Merge version_1 into main
2026-03-07 14:26:15 +00:00
21719917be Merge version_1 into main
Merge version_1 into main
2026-03-07 14:25:19 +00:00
3aa2a8bfc2 Merge version_1 into main
Merge version_1 into main
2026-03-07 14:24:09 +00:00
2 changed files with 17 additions and 44 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"
@@ -237,7 +237,7 @@ export default function LandingPage() {
imageAlt="Community environmental action"
mediaAnimation="slide-up"
mediaPosition="right"
buttonText="Follow @greenfutureproject"
buttonText="Subscribe for Tips"
ariaLabel="Join the Green Future movement section"
/>
</div>