sentify / app /layout.tsx
samyosm's picture
desktop version complete
f5d25f5
raw
history blame contribute delete
577 Bytes
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>
);
}