haiku.rag/app/frontend/app/layout.tsx
Yiorgis Gozadinos f8964f6efc
Basic frontend
2026-01-12 12:36:28 +02:00

19 lines
364 B
TypeScript

import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "haiku.rag Chat",
description: "Conversational RAG powered by haiku.rag and AG-UI",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}