AI / app /layout.js
Niansuh's picture
Update app/layout.js
1a06895 verified
raw
history blame contribute delete
944 Bytes
import { Comfortaa as Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"], weight: ['variable'] });
export const metadata = {
title: "GPT-CHATBOT.ru",
description: "Используйте GPT-CHATBOT.ru для генерации ответов ИИ с молниеносной скоростью.",
openGraph: {
title: "GPT-CHATBOT.ru",
description: "Use smooth AI for generating AI responses in a lighting fast way.",
url: "https://smooth-ai.vercel.app",
siteName: "Smooth AI",
images: [
{
url: "https://smooth-ai.vercel.app/OIG4.jpeg",
width: 630,
height: 630,
},
],
locale: "ru-RU",
type: "website",
},
icon: "https://smooth-ai.vercel.app/OIG4.jpeg",
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
);
}