import type { ReactNode } from 'react';
import type { Metadata } from 'next';
import Head from 'next/head';
import { Geist, Geist_Mono } from 'next/font/google';
import { ThemeProvider } from '@/components/ThemeProvider';
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: 'Neon MCP',
description: 'Learn how to use Neon MCP',
};
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="en">
<Head>
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
</Head>
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
<ThemeProvider>{children}</ThemeProvider>
</body>
</html>
);
}