import type { Metadata } from "next"; import { Nunito } from "next/font/google"; import { ToastProvider } from "@/components/ui/Toast"; import "./globals.css"; const nunito = Nunito({ variable: "--font-nunito", subsets: ["latin"], weight: ["400", "600", "700", "800"], }); export const metadata: Metadata = { title: "Alpenwerk HR", description: "HR-Stammdaten- und Organisationsmanagement für Alpenwerk Industrie GmbH", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }