ai-manga-factory / src /app /layout.tsx
Minecraft3193092's picture
Update src/app/layout.tsx
5b295bc verified
raw
history blame contribute delete
531 Bytes
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>
)
}