From 578f9068f04bf887e62e387d62ab72142fd1f857 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 12:42:48 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1410 +------------------------------------------- 1 file changed, 10 insertions(+), 1400 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 365f60d..c1a2a8b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1411 +1,22 @@ -import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './globals.css'; -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "AGORA.tj — Национальный Маркетплейс Таджикистана", description: "AGORA.tj — современная торговая площадка для покупателей и продавцов в Таджикистане. Легко продавайте и покупайте с защитой и гарантией.", keywords: "маркетплейс, торговля, покупки онлайн, продажа, Таджикистан, ecommerce", metadataBase: new URL("https://agora.tj"), - alternates: { - canonical: "https://agora.tj"}, - openGraph: { - title: "AGORA.tj — Национальный Маркетплейс", description: "Торговая площадка нового поколения. Твой бизнес. Твои правила. Твой рынок.", url: "https://agora.tj", siteName: "AGORA.tj", type: "website"}, - robots: { - index: true, - follow: true, - }, + title: 'AGORA.tj - Национальный маркетплейс Таджикистана', + description: 'AGORA.tj — национальный маркетплейс Таджикистана. Покупайте и продавайте легко. Ваш бизнес. Ваши правила. Ваш рынок.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -