import './globals.css'; import type { Metadata } from 'next'; import { Providers } from '@/components/providers'; export const metadata: Metadata = { title: 'AI Movie Flow - Create Amazing Videos with AI', description: 'Professional AI-powered video creation platform with advanced editing tools', }; export default function RootLayout({ children, }: { children: React.ReactNode }) { return ( {children} ); }