import { ReactNode } from 'react'; // Metadata for the application, used for SEO and page information export const metadata = { title: 'AI Assistant | Interstellar Development', // Title of the page description: 'A little AI chat that is able to assist you in little tasks', // Description of the page }; // RootLayout component definition export default function RootLayout({ children }: { children: ReactNode }) { return ( {metadata.title}
{children}
); }