forked from React-Group/interstellar_ai
22 lines
639 B
TypeScript
22 lines
639 B
TypeScript
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 (
|
|
<html lang="en">
|
|
<head>
|
|
<title>{metadata.title}</title>
|
|
<meta name="description" content={metadata.description} />
|
|
{/* Tried adding the favicon here */}
|
|
<link rel="icon" href="../public/favicon.ico" type="image/x-icon" />
|
|
</head>
|
|
<body>
|
|
<main>{children}</main>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|