Spaces:
Paused
Paused
File size: 647 Bytes
e6ce630 | 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 28 29 | import './globals.css'
import { Inter } from 'next/font/google'
import Layout from '../components/Layout'
const inter = Inter({ subsets: ['latin'],
variable: "--font-sans",
})
export const metadata = {
title: 'Imagine - AI Image Generation',
description: 'Generate amazing images using AI',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en" suppressHydrationWarning>
<body className={`${inter.className} bg-neutral-50 dark:bg-amoled-black text-[#141414] dark:text-white`}>
<Layout>
{children}
</Layout>
</body>
</html>
)
}
|