Files
assetx/app/layout.tsx

36 lines
859 B
TypeScript
Raw Normal View History

2026-01-26 17:44:27 +08:00
import type { Metadata } from "next";
import { Inter, JetBrains_Mono } from "next/font/google";
import "./globals.css";
2026-02-04 12:56:06 +08:00
import { Providers } from "@/components/Providers";
2026-01-26 17:44:27 +08:00
const inter = Inter({
subsets: ["latin"],
weight: ["400", "500", "700", "800"],
variable: "--font-inter",
});
const jetbrainsMono = JetBrains_Mono({
subsets: ["latin"],
weight: ["500", "700", "800"],
variable: "--font-jetbrains",
});
export const metadata: Metadata = {
title: "AssetX Dashboard",
description: "DeFi Asset Management Platform",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<body className={`${inter.variable} ${jetbrainsMono.variable} ${inter.className}`}>
2026-02-04 12:56:06 +08:00
<Providers>{children}</Providers>
2026-01-26 17:44:27 +08:00
</body>
</html>
);
}