Update src/app/layout.tsx

This commit is contained in:
2026-03-11 10:18:50 +00:00
parent 2490c1799d
commit 4b9010ea02

View File

@@ -6,6 +6,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Open_Sans } from "next/font/google";
import { Poppins } from "next/font/google";
@@ -14,8 +15,10 @@ export const metadata: Metadata = {
description: 'Профессиональный салон красоты в Астане. Гель-лак, наращивание, SMART педикюр. Качество, гигиена и мастерство гарантированы. Запишитесь онлайн.',
};
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export default function RootLayout({
@@ -26,7 +29,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${openSans.variable} antialiased`}>
<body className={`${poppins.variable} antialiased`}>
<Tag />
{children}
<script