import { fonts } from '@/lib/fonts' | |
import './globals.css' | |
import type { Metadata } from 'next' | |
export const metadata: Metadata = { | |
title: 'AI Manga Factory: generate your own mangas! Powered by Hugging Face 🤗', | |
description: 'Generate manga panels using a LLM + SDXL. Powered by Hugging Face 🤗', | |
} | |
export default function RootLayout({ | |
children, | |
}: { | |
children: React.ReactNode | |
}) { | |
return ( | |
<html lang="en"> | |
<body className={fonts.actionman.className}> | |
{children} | |
</body> | |
</html> | |
) | |
} | |