File size: 944 Bytes
17fcca9 1a06895 17fcca9 1a06895 17fcca9 1a06895 17fcca9 | 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 30 31 32 33 34 | 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>
);
}
|