import type { Metadata } from 'next'; import './globals.css'; import { ToastProvider } from '@/components/ui/Toast'; export const metadata: Metadata = { title: 'Figlet UI - ASCII Art Text Generator', description: 'A modern web UI for generating ASCII art text with 373 figlet fonts. Preview custom text in any figlet font, export to multiple formats, and share your creations.', keywords: ['figlet', 'ascii art', 'text generator', 'banner', 'ascii', 'text art'], authors: [{ name: 'Valknar' }], openGraph: { title: 'Figlet UI - ASCII Art Text Generator', description: 'Generate beautiful ASCII art text with 373 fonts', type: 'website', }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (