Guilherme34's picture
Upload folder using huggingface_hub
aa15bce verified
import type { Metadata } from 'next';
import './globals.css';
export const metadata: Metadata = {
title: 'OpenPoke Chat',
description: 'A beautiful AI chat powered by Vercel AI SDK',
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body className="min-h-screen bg-white text-gray-900 antialiased">
{children}
</body>
</html>
);
}