mirror of
https://github.com/codeaashu/claude-code.git
synced 2026-04-08 22:28:48 +03:00
57 lines
1.4 KiB
TypeScript
57 lines
1.4 KiB
TypeScript
import type { Metadata, Viewport } from "next";
|
|
import { Inter } from "next/font/google";
|
|
import localFont from "next/font/local";
|
|
import "./globals.css";
|
|
import { ThemeProvider } from "@/components/layout/ThemeProvider";
|
|
import { ToastProvider } from "@/components/notifications/ToastProvider";
|
|
|
|
const inter = Inter({
|
|
subsets: ["latin"],
|
|
variable: "--font-inter",
|
|
display: "swap",
|
|
});
|
|
|
|
const jetbrainsMono = localFont({
|
|
src: [
|
|
{
|
|
path: "../public/fonts/JetBrainsMono-Regular.woff2",
|
|
weight: "400",
|
|
style: "normal",
|
|
},
|
|
{
|
|
path: "../public/fonts/JetBrainsMono-Medium.woff2",
|
|
weight: "500",
|
|
style: "normal",
|
|
},
|
|
],
|
|
variable: "--font-jetbrains-mono",
|
|
display: "swap",
|
|
fallback: ["ui-monospace", "SFMono-Regular", "Menlo", "Monaco", "monospace"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Claude Code",
|
|
description: "Claude Code — AI-powered development assistant",
|
|
icons: {
|
|
icon: "/favicon.ico",
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en" className="dark" suppressHydrationWarning>
|
|
<body className={`${inter.variable} ${jetbrainsMono.variable} font-sans antialiased`}>
|
|
<ThemeProvider>
|
|
<ToastProvider>
|
|
{children}
|
|
</ToastProvider>
|
|
</ThemeProvider>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|