5 Commits

Author SHA1 Message Date
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 16 additions and 43 deletions

View File

@@ -1,54 +1,28 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
}); });
export const metadata: Metadata = { 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: { title: "Green Future Project", description: "Join the movement to inspire people around the world to recycle, care for the environment, and adopt sustainable habits."};
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"],
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1416,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -150,16 +150,16 @@ export default function LandingPage() {
tagAnimation="blur-reveal" tagAnimation="blur-reveal"
products={[ 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" textboxLayout="default"