From 61f4219a17d271723a5a8f5b54d6eb30f9d415c4 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 14:41:47 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b74aa5e..d53de02 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,7 +1,14 @@ import type { Metadata } from "next"; +import { Inter_Tight } from "next/font/google"; + +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: "מועדון אומנויות לחימה", description: "מרכז אימונים מקצועי בקרית אתא"}; + title: "מועדון אומנויות לחימה", description: "מרכז אימונים מקצועי בקרית אתא" +}; export default function RootLayout({ children, @@ -9,7 +16,7 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - + {children}