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}