sentimind / src /app /chat /layout.tsx
anggars's picture
Sync from GitHub Actions: e01f9df8b054a5718601dd513fd3516293f9eac8
0630ed4 verified
raw
history blame contribute delete
250 Bytes
import { Metadata } from "next";
export const metadata: Metadata = {
title: "Chat | Sentimind",
description: "Chat with Sentimind AI.",
};
export default function Layout({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}