mirror of
https://github.com/hamster1963/nezha-dash.git
synced 2025-04-24 21:10:45 +08:00
90 lines
2.5 KiB
TypeScript
90 lines
2.5 KiB
TypeScript
// @auto-i18n-check. Please do not delete the line.
|
|
import { MotionProvider } from "@/components/motion/motion-provider";
|
|
import getEnv from "@/lib/env-entry";
|
|
import { StatusProvider } from "@/lib/status-context";
|
|
import { cn } from "@/lib/utils";
|
|
import "@/styles/globals.css";
|
|
import type { Metadata } from "next";
|
|
import { Viewport } from "next";
|
|
import { NextIntlClientProvider } from "next-intl";
|
|
import { getLocale, getMessages } from "next-intl/server";
|
|
import { PublicEnvScript } from "next-runtime-env";
|
|
import { ThemeProvider } from "next-themes";
|
|
import { Inter as FontSans } from "next/font/google";
|
|
import React from "react";
|
|
|
|
const fontSans = FontSans({
|
|
subsets: ["latin"],
|
|
variable: "--font-sans",
|
|
});
|
|
|
|
const customTitle = getEnv("NEXT_PUBLIC_CustomTitle");
|
|
const customDescription = getEnv("NEXT_PUBLIC_CustomDescription");
|
|
const disableIndex = getEnv("NEXT_PUBLIC_DisableIndex");
|
|
|
|
export const metadata: Metadata = {
|
|
manifest: "/manifest.json",
|
|
title: customTitle || "NezhaDash",
|
|
description: customDescription || "A dashboard for nezha",
|
|
appleWebApp: {
|
|
capable: true,
|
|
title: customTitle || "NezhaDash",
|
|
statusBarStyle: "black-translucent",
|
|
},
|
|
robots: {
|
|
index: disableIndex ? false : true,
|
|
follow: disableIndex ? false : true,
|
|
},
|
|
};
|
|
|
|
export const viewport: Viewport = {
|
|
width: "device-width",
|
|
initialScale: 1,
|
|
maximumScale: 1,
|
|
userScalable: false,
|
|
};
|
|
|
|
export default async function LocaleLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
const locale = await getLocale();
|
|
const messages = await getMessages();
|
|
|
|
return (
|
|
<html lang={locale} suppressHydrationWarning>
|
|
<head>
|
|
<PublicEnvScript />
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.0.0/css/flag-icons.min.css"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/font-logos@1/assets/font-logos.css"
|
|
/>
|
|
</head>
|
|
<body
|
|
className={cn(
|
|
"min-h-screen bg-background font-sans antialiased",
|
|
fontSans.variable,
|
|
)}
|
|
>
|
|
<MotionProvider>
|
|
<ThemeProvider
|
|
attribute="class"
|
|
defaultTheme="system"
|
|
enableSystem
|
|
disableTransitionOnChange
|
|
>
|
|
<NextIntlClientProvider messages={messages}>
|
|
<StatusProvider>{children}</StatusProvider>
|
|
</NextIntlClientProvider>
|
|
</ThemeProvider>
|
|
</MotionProvider>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|