import type { Metadata } from 'next'; import './globals.css'; export const metadata: Metadata = { title: 'Paint UI - Browser Image Editor', description: 'Modern browser-based image editor built with Next.js. Multi-layer canvas, drawing tools, effects, and more.', keywords: ['image editor', 'canvas', 'drawing', 'paint', 'layers', 'effects', 'photoshop alternative'], }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
{children} ); }