diff --git a/app/layout.tsx b/app/layout.tsx index 1d7d206..e00a7ef 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,24 +1,23 @@ import { ReactNode } from 'react'; +// Metadata for the application, used for SEO and page information export const metadata = { - title: 'AI Assistant | Interstellar Development', - description: 'A little AI chat that is able to assist you in little tasks', + 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 ( - + {/* Set the language of the document */} - {metadata.title} - - {/* Tried adding the favicon here */} + {metadata.title} {/* Set the page title */} + {/* Set the page description for SEO */} + {/* Link to the favicon for the site */} -
{children}
+
{children}
{/* Render the child components inside the main element */} );