From 0d1a2fc89e44564d3193a374093bb58e53251ae6 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 22:35:41 +0000 Subject: [PATCH] Switch to version 1: modified src/app/layout.tsx --- src/app/layout.tsx | 1433 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 1418 insertions(+), 15 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 44fcfc6..4fd28d8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,32 +1,1434 @@ import type { Metadata } from "next"; +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 montserrat = Montserrat({ + variable: "--font-montserrat", + subsets: ["latin"], +}); const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], + variable: "--font-inter", + subsets: ["latin"], }); export const metadata: Metadata = { - title: "Jobee - Dutch Job Listings & Recruitment Platform", description: - "Find your dream job in the Netherlands with Jobee. Browse thousands of opportunities across all 12 Dutch provinces and connect with top employers."}; + 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} +