interstellar_ai/app/layout.tsx

22 lines
389 B
TypeScript
Raw Normal View History

2024-09-19 12:18:04 +02:00
import Header from "./Header";
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
}