From eaac95fdb35bef5bf5a4bf5e7882b8d76e3333d8 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 08:36:27 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e6bd359..7cf9658 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,8 +1,12 @@ import type { Metadata } from "next"; +import { Inter } from "next/font/google"; +import "./styles/variables.css"; import "./globals.css"; +const inter = Inter({ subsets: ["latin"] }); + export const metadata: Metadata = { - title: "אתר פלוס - בנייה מודרנית של אתרים לעסקים", description: "אנחנו בונים אתרים מודרניים לעסקים שרוצים להיראות מקצועיים באינטרנט ולהביא יותר לקוחות." + title: "אתר פלוס - בניית אתרים לעסקים", description: "אנחנו בונים אתרים מודרניים לעסקים שרוצים להיראות מקצועיים באינטרנט ולהביא יותר לקוחות" }; export default function RootLayout({ @@ -12,9 +16,7 @@ export default function RootLayout({ }) { return ( - - {children} - + {children}