From b1917690181354e5b2bd9d6738680eea86e3d9b5 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 14:39:17 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 44 +++++--------------------------------------- 1 file changed, 5 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0c48bad..b74aa5e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,16 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Manrope } 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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "מועדון אומנויות לחימה - קרית אתא | הדרכה מקצועית", description: "מועדון הדרכה מקצועי בקרית אתא עם מאמן בעל ניסיון. קראטה, קיקבוקסינג, הגנה עצמית. ביקורות 5 כוכבים מ-27 מתאמנים שמעודכנים.", keywords: "מועדון קראטה קרית אתא, קיקבוקסינג, הגנה עצמית, אומנויות לחימה, אימון קרבי", openGraph: { - title: "מועדון אומנויות לחימה - קרית אתא", description: "הצטרף לקהילתנו וגלה הדרכה מקצועית בקראטה וקיקבוקסינג עם מאמן ברמה גבוהה.", siteName: "מועדון אומנויות לחימה", type: "website"}, - twitter: { - card: "summary_large_image", title: "מועדון אומנויות לחימה - קרית אתא", description: "הדרכה מקצועית בקראטה וקיקבוקסינג בקרית אתא"}, - robots: { - index: true, - follow: true, - }, -}; + title: "מועדון אומנויות לחימה", description: "מרכז אימונים מקצועי בקרית אתא"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}