File size: 287 Bytes
0630ed4
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import { Metadata } from "next";

export const metadata: Metadata = {
  title: "Analyzer | Sentimind",
  description: "Analyze your text to reveal hidden personality patterns.",
};

export default function Layout({ children }: { children: React.ReactNode }) {
  return <>{children}</>;
}