From 078590f025a4058d643f6bdc0ff86ac274a08aad Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 20:39:53 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 57 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0a803b2..093a96f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,63 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Mulish } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Mulish } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Greenwich Agro - Farm Fresh, Token Rich Marketplace", + description: "Connect with local farmers and earn GreenTokens with every purchase. Shop sustainable organic produce directly from farms. Gamified rewards platform for conscious consumers.", + keywords: "organic agriculture, farmers market, local farming, sustainable food, agricultural marketplace, farm fresh produce, rewards program, eco-friendly shopping", + metadataBase: new URL("https://greenwichasgro.com"), + alternates: { + canonical: "https://greenwichasgro.com", + }, + openGraph: { + title: "Greenwich Agro - Agricultural E-Commerce Platform", + description: "Farm Fresh, Token Rich. Connect directly with local farmers and earn rewards.", + url: "https://greenwichasgro.com", + siteName: "Greenwich Agro", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBAbmrzyCv9ReHBA5keCBu7vFL/a-vibrant-agricultural-marketplace-scene-1773952724037-59dfe403.png", + alt: "Greenwich Agro marketplace platform", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Greenwich Agro - Farm Fresh, Token Rich", + description: "Shop sustainable local agriculture and earn GreenTokens.", + images: [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBAbmrzyCv9ReHBA5keCBu7vFL/a-vibrant-agricultural-marketplace-scene-1773952724037-59dfe403.png", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +66,9 @@ export default function RootLayout({ return ( - + {children}