From 792fdc93c437af3f18f61c50a4a4c99ba1dfad53 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 08:09:48 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1424 +------------------------------------------- 1 file changed, 18 insertions(+), 1406 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f8af4ae..7ef84fb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,36 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import ServiceWrapper from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/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 lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Karate Dojo | Martial Arts Classes for All Ages", description: "Join our karate dojo for authentic martial arts training. Classes for kids, adults, and advanced students. Transform your mind and body through traditional karate.", keywords: "karate classes, martial arts training, kids karate, adult fitness, self-defense, dojo, sensei, belt progression", metadataBase: new URL("https://karate-dojo.com"), - alternates: { - canonical: "https://karate-dojo.com"}, - openGraph: { - title: "Karate Dojo | Master Your Martial Arts Journey", description: "Transform your body and mind through authentic karate training. Join our thriving community today.", url: "https://karate-dojo.com", siteName: "Karate Dojo", images: [ - { - url: "http://img.b2bpic.net/free-photo/full-shot-kids-training-gym_23-2150930336.jpg", alt: "Karate training at our dojo"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Karate Dojo | Martial Arts Training", description: "Join our karate community for authentic martial arts training of all levels", images: ["http://img.b2bpic.net/free-photo/full-shot-kids-training-gym_23-2150930336.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Karate Dojo", description: "Transform your body and mind through authentic karate training"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +