import { ReactNode } from 'react'; export const metadata = { title: 'AI Assistant | Interstellar Development', description: 'A little AI chat that is able to assist you in little tasks', }; export default function RootLayout({ children }: { children: ReactNode }) { return ( {metadata.title} {/* Tried adding the favicon here */}
{children}
); }