File size: 596 Bytes
6821e3e 6da9beb c78f7b4 6da9beb 2e9848b 6da9beb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
import { cn } from '@/lib/utils/cn'
import './globals.css'
import type { Metadata } from 'next'
import { inter, salsa } from './fonts'
export const metadata: Metadata = {
title: 'AI Stories Factory - Generate video stories using AI ✨',
description: 'AI Stories Factory - Generate video stories using AI ✨',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body className={cn(
`h-full w-full overflow-none dark`,
salsa.className
)}>
{children}
</body>
</html>
)
}
|