From f3b2e4febdf731e3213218e8e99f0e537dd258b2 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 14:27:24 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4ce3e11..d72843c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + + {children} +