File size: 577 Bytes
7349480
836dd88
7349480
 
836dd88
7349480
 
 
 
f5d25f5
 
7349480
 
 
 
 
 
 
 
f5d25f5
7349480
f5d25f5
7349480
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import type { Metadata } from "next";
import { Space_Grotesk as Font } from "next/font/google";
import "./globals.css";

const font = Font({
  subsets: ["latin"],
});

export const metadata: Metadata = {
  title: "Sentify",
  description: "Analyze text sentiment with AI.",
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en" suppressHydrationWarning>
      <body
        className={`${font.className} antialiased bg-white text-black`}
      >
        {children}
      </body>
    </html>
  );
}