|
|
|
|
@@ -1,57 +1,31 @@
|
|
|
|
|
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";
|
|
|
|
|
import { Kumbh_Sans, Urbanist } from "next/font/google";
|
|
|
|
|
import "@/styles/globals.css";
|
|
|
|
|
|
|
|
|
|
const halant = Halant({
|
|
|
|
|
variable: "--font-halant", subsets: ["latin"],
|
|
|
|
|
const kumbhSans = Kumbh_Sans({
|
|
|
|
|
variable: "--font-kumbh-sans", 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 urbanist = Urbanist({
|
|
|
|
|
variable: "--font-urbanist", subsets: ["latin"],
|
|
|
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
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★ рейтинг, 188+ отзывов довольных клиентов в Астане."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="ru">
|
|
|
|
|
<body className={`${kumbhSans.variable} ${urbanist.variable}`}>
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1419,7 +1393,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|