diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 3f10356..651b64a 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,58 +1,21 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Inter_Tight } 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 interTight = Inter_Tight({
- variable: "--font-inter-tight", subsets: ["latin"],
- weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Ателие 21 Маникюр - Салон за Маникюр Варна", description: "Премиум салон за маникюр във Варна с гел лак, класически маникюр и nail art. Запазете час онлайн или обадете се. Висока хигиена и професионализъм.", keywords: "маникюр Варна, гел лак Варна, салон за маникюр, nail art, красота ръце", metadataBase: new URL("https://atelie21.bg"),
- alternates: {
- canonical: "https://atelie21.bg"},
- openGraph: {
- title: "Ателие 21 Маникюр - Премиум Салон във Варна", description: "Descobrire elegan manicure in Varna. Servicii profesionale, higuena inalta si atentie personala.", url: "https://atelie21.bg", siteName: "Ателие 21 Маникюр", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/front-view-hands-holding-sangria-drink_23-2149380885.jpg", alt: "Ателие 21 Маникюр - Премиум Салон"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Ателие 21 Маникюр - Варна", description: "Професионален маникюр с гел лак и nail art във Варна", images: ["http://img.b2bpic.net/free-photo/front-view-hands-holding-sangria-drink_23-2149380885.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Ателие 21 Маникюр - Премиум Студио за Красота във Варна", description:
+ "Професионален маникюр и nail art услуги във Варна. Прецизност, висока хигиена и дълготраен резултат. Запази час сега!"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-