import type { Metadata, Viewport } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import { Providers } from "./providers"; import "./globals.css"; const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"], }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { title: "HurkiCorgi MC", description: "Create & Engineering | Raids | Survival - Minecraft Server", manifest: "/manifest.json", appleWebApp: { capable: true, statusBarStyle: "black-translucent", title: "HurkiCorgi MC", }, icons: { icon: "/icon.svg", apple: "/icon.svg", }, }; export const viewport: Viewport = { width: "device-width", initialScale: 1, maximumScale: 1, themeColor: "#1a1a2e", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{children}
); }