aisf-landing/app/layout.tsx

52 lines
1.2 KiB
TypeScript

import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "AiSaleForce - Нейросетевые решения для бизнеса",
description: "AiSaleForce предлагает передовые нейросетевые решения для оптимизации бизнес-процессов и повышения эффективности вашей компании",
icons: {
icon: [
{
url: "/logo.svg",
href: "/logo.svg",
}
],
shortcut: ["/logo.svg"],
apple: [
{
url: "/logo.svg",
sizes: "180x180",
type: "image/svg+xml",
}
],
},
manifest: "/manifest.json"
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="ru">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
</html>
);
}