import "@/styles/globals.css"; import type { Metadata } from "next"; import { Inter as FontSans } from "next/font/google"; import { ThemeProvider } from "next-themes"; import React from "react"; import { cn } from "@/lib/utils"; const fontSans = FontSans({ subsets: ["latin"], variable: "--font-sans", }); export const metadata: Metadata = { manifest: "/manifest.json", title: "HomeDash", description: "A dashboard for nezha", appleWebApp: { capable: true, title: "HomeDash", statusBarStyle: "black-translucent", }, }; interface RootLayoutProps { children: React.ReactNode; } export default function RootLayout({ children }: RootLayoutProps) { return ( {children} ); }