Initial MVP skeleton with auth, chat persistence, UI and text LLM integration
This commit is contained in:
18
frontend/app/layout.tsx
Normal file
18
frontend/app/layout.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import "./globals.css";
|
||||
|
||||
export const metadata = {
|
||||
title: "AI Chat MVP",
|
||||
description: "AI Chat MVP",
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body>{children}</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user