playgo_next / app /layout.tsx
ChenyuRabbitLove's picture
first commit
f6a1fd1
raw
history blame
757 Bytes
import type { Metadata } from "next";
import localFont from "next/font/local";
import "./globals.css";
import { ThemeProvider } from './components/ThemeProvider'
const geistSans = localFont({
src: "./fonts/GeistVF.woff",
variable: "--font-geist-sans",
weight: "100 900",
});
export const metadata: Metadata = {
title: "PlayGo AI - AI-Powered Learning Platform",
description: "Transform education with AI-powered interactive learning experiences",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en" className={`${geistSans.variable}`}>
<body className="antialiased">
<ThemeProvider>
{children}
</ThemeProvider>
</body>
</html>
)
}