CSS Update React

This commit is contained in:
Sage The DM 2024-09-19 12:18:04 +02:00
parent 2ca0689167
commit 79acf4aa52
11 changed files with 389 additions and 108 deletions

View file

@ -1,6 +1,9 @@
import Header from "./Header";
export const metadata = {
title: 'Next.js',
description: 'Generated by Next.js',
title: 'AI Assistant | Interstellar Development',
description: 'A little AI chat that is able to assist you in little tasks',
}
export default function RootLayout({
@ -10,7 +13,9 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body>{children}</body>
<body>
<main>{children}</main>
</body>
</html>
)
);
}