From bb64a8eded9c96679b4f901b8cdc8a3dfa29910f Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 15:32:14 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 282ff27..310306f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Nunito_Sans } 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 { Nunito_Sans } 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 nunitoSans = Nunito_Sans({ variable: "--font-nunito-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Find Worker - Job Marketplace in Maharashtra", + description: "Connect with skilled workers at basic to advanced levels across Maharashtra cities. Post jobs, find workers, and hire verified professionals.", + keywords: "workers Maharashtra, job marketplace, employment, skilled workers, Mumbai jobs, Pune jobs, Nagpur jobs", + metadataBase: new URL("https://findworker.example.com"), + alternates: { + canonical: "https://findworker.example.com", + }, + openGraph: { + title: "Find Worker - Job Marketplace in Maharashtra", + description: "Connect with skilled workers across Maharashtra. Find jobs or post opportunities in your city.", + url: "https://findworker.example.com", + siteName: "FindWorker", + images: [ + { + url: "http://img.b2bpic.net/free-photo/medium-shot-man-wearing-helmet-work_23-2148921380.jpg", + alt: "Find Worker - Job Marketplace", + }, + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Find Worker - Job Marketplace in Maharashtra", + description: "Connect with skilled workers at basic to advanced levels across Maharashtra.", + images: ["http://img.b2bpic.net/free-photo/medium-shot-man-wearing-helmet-work_23-2148921380.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}