ai-chat / app /layout.tsx
Hanzo Dev
Initial commit for ai-chat template
ed6db3d
raw
history blame contribute delete
521 Bytes
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Ai Chat Interface - Hanzo UI Template",
description: "Modern chat UI with streaming responses",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en" suppressHydrationWarning>
<body className={inter.className}>{children}</body>
</html>
);
}