File size: 250 Bytes
0630ed4
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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}</>;
}