24 lines
No EOL
531 B
TypeScript
24 lines
No EOL
531 B
TypeScript
import type { Metadata } from 'next'
|
|
import './globals.css'
|
|
import { SettingsProvider } from '@/lib/context/SettingsContext'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'AI Video Flow - Create Amazing Videos with AI',
|
|
description: 'AI-powered video creation with workflow automation',
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body>
|
|
<SettingsProvider>
|
|
{children}
|
|
</SettingsProvider>
|
|
</body>
|
|
</html>
|
|
)
|
|
} |