diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 44fcfc6..0d60c29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,15 +1,13 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; +import { ServiceWrapper } from "@/providers/themeProvider/ServiceWrapper"; +import { Tag } from "@/components/tag/Tag"; -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ 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 - 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, @@ -19,14 +17,38 @@ export default function RootLayout({ return (
- {children} +