Spaces:
Sleeping
Sleeping
File size: 426 Bytes
1291157 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | import './globals.css';
import type { Metadata } from 'next';
export const metadata: Metadata = {
title: 'LearnFlow - AI-Powered Python Tutoring',
description: 'Interactive Python learning platform with AI tutors',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body className="font-sans antialiased">{children}</body>
</html>
);
} |