From 3a886ec2071d4471d422e6f6a20d677a905798a2 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 22:26:10 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1434 +------------------------------------------- 1 file changed, 18 insertions(+), 1416 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4fd28d8..081faa1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1434 +1,37 @@ 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"], -}); +import ServiceWrapper from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/shared/Tag"; const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - 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, - }, -}; + 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."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +