interstellar_ai/app/layout.tsx

26 lines
634 B
TypeScript
Raw Normal View History

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-18 09:47:23 +02:00
2024-09-30 10:46:03 +02:00
export default function RootLayout({ children }: { children: ReactNode }) {
2024-09-18 09:47:23 +02:00
return (
<html lang="en">
<head>
<title>{metadata.title}</title>
<meta name="description" content={metadata.description} />
{/* Tried adding the favicon here */}
2024-09-27 14:03:43 +02:00
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
</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
}