2024-09-20 10:34:16 +02:00
|
|
|
import Header from "./components/Header";
|
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
|
|
|
}
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
children,
|
|
|
|
}: {
|
|
|
|
children: React.ReactNode
|
|
|
|
}) {
|
|
|
|
return (
|
|
|
|
<html lang="en">
|
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
|
|
|
}
|