2024-09-26 14:38:59 +02:00
|
|
|
import { ReactNode } from 'react';
|
2024-09-19 12:18:04 +02:00
|
|
|
|
2024-09-18 09:47:23 +02:00
|
|
|
export const metadata = {
|
2024-09-19 12:18:04 +02:00
|
|
|
title: 'AI Assistant | Interstellar Development',
|
|
|
|
description: 'A little AI chat that is able to assist you in little tasks',
|
2024-09-26 14:38:59 +02:00
|
|
|
};
|
2024-09-18 09:47:23 +02:00
|
|
|
|
2024-09-30 10:46:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2024-09-26 14:38:59 +02:00
|
|
|
export default function RootLayout({ children }: { children: ReactNode }) {
|
2024-09-18 09:47:23 +02:00
|
|
|
return (
|
|
|
|
<html lang="en">
|
2024-09-26 14:38:59 +02:00
|
|
|
<head>
|
|
|
|
<title>{metadata.title}</title>
|
|
|
|
<meta name="description" content={metadata.description} />
|
2024-09-26 14:47:56 +02:00
|
|
|
{/* Tried adding the favicon here */}
|
2024-09-27 14:03:43 +02:00
|
|
|
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
|
2024-09-26 14:38:59 +02:00
|
|
|
</head>
|
2024-09-19 12:18:04 +02:00
|
|
|
<body>
|
|
|
|
<main>{children}</main>
|
|
|
|
</body>
|
2024-09-18 09:47:23 +02:00
|
|
|
</html>
|
2024-09-19 12:18:04 +02:00
|
|
|
);
|
2024-09-18 09:47:23 +02:00
|
|
|
}
|