diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d6be2f2..9f3670d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,20 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; -import "./globals.css"; +import { Kumbh_Sans, Urbanist } from "next/font/google"; +import "@/styles/globals.css"; -const inter = Inter({ subsets: ["latin"] }); +const kumbhSans = Kumbh_Sans({ + variable: "--font-kumbh-sans", subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); + +const urbanist = Urbanist({ + variable: "--font-urbanist", subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); export const metadata: Metadata = { - title: "EcoShop - Органические товары в Астане", description: "Органические продукты, суперфуды, витамины и экотовары для здоровой жизни. 12 филиалов, 4.7★ рейтинг."}; + title: "EcoShop - Здоровое питание в Астане", description: + "Органические продукты, суперфуды, витамины и экотовары для здоровой жизни. 12 филиалов, 4.7★ рейтинг, 188+ отзывов довольных клиентов в Астане."}; export default function RootLayout({ children, @@ -14,7 +23,9 @@ export default function RootLayout({ }) { return ( - {children} + + {children} +