diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4fd28d8..0d60c29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1433 +1,53 @@ 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"; +import { ServiceWrapper } from "@/providers/themeProvider/ServiceWrapper"; +import { Tag } from "@/components/tag/Tag"; -const montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +const inter = Inter({ variable: "--font-inter", subsets: ["latin"] }); 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 Listing Platform", description: "Find your dream job in the Netherlands across all 12 provinces. Connect with top employers and build your career."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +