import type { Metadata, Viewport } from "next"; import "../src/index.css"; export const metadata: Metadata = { title: "Jobbjakt", description: "Jobbjakt — track and manage job applications", manifest: "/manifest.json", icons: { icon: [ { url: "/favicon.svg", type: "image/svg+xml" }, { url: "/favicon.ico" }, ], apple: "/logo192.png", }, }; export const viewport: Viewport = { width: "device-width", initialScale: 1, themeColor: "#15803d", }; export default function RootLayout({ children }: { children: React.ReactNode }) { return (
{children}
); }