9 Commits

Author SHA1 Message Date
675545844d Merge version_3 into main
Merge version_3 into main
2026-03-07 15:07:24 +00:00
946030e416 Update src/app/page.tsx 2026-03-07 15:07:20 +00:00
e43e969ffc Update src/app/layout.tsx 2026-03-07 15:07:20 +00:00
afa71dda44 Merge version_2 into main
Merge version_2 into main
2026-03-07 15:05:44 +00:00
e8d73c5f24 Update src/app/page.tsx 2026-03-07 15:05:39 +00:00
e052662d3a Update src/app/layout.tsx 2026-03-07 15:05:39 +00:00
7b2c72dd1a Merge version_1 into main
Merge version_1 into main
2026-03-07 15:04:41 +00:00
0db759ecf5 Merge version_1 into main
Merge version_1 into main
2026-03-07 15:03:51 +00:00
f2710d3af9 Merge version_1 into main
Merge version_1 into main
2026-03-07 15:02:38 +00:00
2 changed files with 16 additions and 43 deletions

View File

@@ -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>
);
}

View File

@@ -152,7 +152,7 @@ export default function LandingPage() {
id: "6", name: "Надир и Асель", role: "Семейная пара", company: "Любители здорового питания", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/man-white-shirt-plays-with-woman-child-flowers_8353-434.jpg", imageAlt: "Семейная пара, довольные клиенты EcoShop"},
]}
gridVariant="uniform-all-items-equal"
gridVariant="one-large-left-three-stacked-right"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}