diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a7c315e..d6be2f2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Public_Sans } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "EcoShop Астана | Органические продукты и эко-товары", description: "EcoShop - магазин здорового питания в Астане. Органические продукты, суперфуды, витамины. 12 филиалов, 4.7★ рейтинг. Позвоните или посетите нас!", keywords: "магазин здорового питания астана, эко продукты, органические продукты, суперфуды, витамины, веганские продукты, безглютеновые продукты", metadataBase: new URL("https://ecoshop.kz"), - alternates: { - canonical: "https://ecoshop.kz"}, - openGraph: { - title: "EcoShop Астана | Здоровое питание и эко-товары", description: "Органические продукты, суперфуды и эко-товары в 12 филиалах Астаны. 4.7★ рейтинг от 188+ клиентов.", url: "https://ecoshop.kz", siteName: "EcoShop", type: "website", images: [ - { - url: "https://ecoshop.kz/og-image.jpg", alt: "EcoShop - магазин здорового питания и эко-товаров"}, - ], - }, - twitter: { - card: "summary_large_image", title: "EcoShop Астана | Органические продукты", description: "Магазин здорового питания. 12 филиалов. 4.7★ рейтинг.", images: ["https://ecoshop.kz/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "EcoShop - Органические товары в Астане", description: "Органические продукты, суперфуды, витамины и экотовары для здоровой жизни. 12 филиалов, 4.7★ рейтинг."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}