import type { Metadata, Viewport } 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", // Added to the home screen on iOS this opens without Safari's chrome and // keeps the app's own name rather than the page title. appleWebApp: { capable: true, title: "Alpenwerk HR", statusBarStyle: "default" }, }; export const viewport: Viewport = { width: "device-width", initialScale: 1, // The layout extends under the notch and home indicator; every edge that // matters pads itself back out with env(safe-area-inset-*). viewportFit: "cover", themeColor: "#ffffff", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (