From 77c71a315dfc82d24fa5d2d92826c6142d88f999 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 22:23:25 +0000 Subject: [PATCH] Switch to version 1: modified src/app/layout.tsx --- src/app/layout.tsx | 1430 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 1414 insertions(+), 16 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d7133a2..4fd28d8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,36 +1,1433 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; +import { Montserrat } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; +import { ServiceWrapper } from "@/components/ServiceWrapper"; +import Tag from "@/tag/Tag"; -const geist = Geist({ - variable: "--font-geist-sans", subsets: ["latin"], +const montserrat = Montserrat({ + variable: "--font-montserrat", + subsets: ["latin"], }); -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], }); export const metadata: Metadata = { - title: "Jobee - Dutch Job Listings Platform", description: "Find your dream job in the Netherlands across all 12 provinces. Connect with top employers and build your career with Jobee."}; + title: "Jobee - Find Your Dream Job in the Netherlands", + description: "Search thousands of job opportunities across all 12 Dutch provinces. Post jobs, apply easily, and connect with top employers. Netherlands' leading job listing platform.", + keywords: "jobs Netherlands, job search Dutch market, employment opportunities, career platform, job listings", + metadataBase: new URL("https://jobee.nl"), + alternates: { + canonical: "https://jobee.nl", + }, + openGraph: { + title: "Jobee - Find Your Dream Job in the Netherlands", + description: "Search thousands of job opportunities across all 12 Dutch provinces. Post jobs, apply easily, and connect with top employers.", + url: "https://jobee.nl", + siteName: "Jobee", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/corporate-workers-brainstorming-together_23-2148804568.jpg", + alt: "Jobee - Dutch Job Listing Platform", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Jobee - Find Your Dream Job in the Netherlands", + description: "Search thousands of job opportunities across all 12 Dutch provinces.", + images: [ + "http://img.b2bpic.net/free-photo/corporate-workers-brainstorming-together_23-2148804568.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, -}: { +}: Readonly<{ children: React.ReactNode; -}) { +}>) { return ( - - {children} + + + + {children} +