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