From 5a0464ad0814428639ad6227d724dab5e9dc6528 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 05:31:10 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1439 +------------------------------------------- 1 file changed, 12 insertions(+), 1427 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dd4ffb5..328745f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1441 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Inter_Tight } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const interTight = Inter_Tight({ - variable: "--font-inter-tight", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Inventa - Решения для переработки молока под ключ", - description: "Проектирование, оборудование и монтаж молочных заводов. 100+ завершенных проектов с 2008 года. Комплексные решения от мини-заводов до промышленных комплексов.", - keywords: "переработка молока, молочный завод, оборудование молочное, проектирование молочных заводов, решения под ключ", - metadataBase: new URL("https://inventa.uz/"), - alternates: { - canonical: "https://inventa.uz/", - }, - openGraph: { - title: "Inventa - Молочные решения под ключ", - description: "Лидирующий поставщик оборудования и решений для переработки молока. 17 лет опыта, 100+ проектов.", - url: "https://inventa.uz/", - siteName: "Inventa", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ah9MKFPAiLYJWPEswu8WowW7kP/modern-dairy-processing-factory-with-sta-1773033990783-cf4a37d7.png", - alt: "Молочный завод Inventa", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Inventa - Решения для молочной промышленности", - description: "Комплексные решения для переработки молока. Проектирование, поставка и монтаж оборудования.", - images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ah9MKFPAiLYJWPEswu8WowW7kP/modern-dairy-processing-factory-with-sta-1773033990783-cf4a37d7.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Inventa - Молочное оборудование", description: "Полные решения для переработки молока под ключ"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -