From 8953e3c4d03b3ced4b9dd23475d093ba8897b713 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 10:01:39 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 81 ++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 74 insertions(+), 7 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dd31df1..4338a34 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,14 @@ import type { Metadata } from "next"; -import { Heebo } from "next/font/google"; -import "./globals.css"; +import { Inter } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; -const heebo = Heebo({ subsets: ["hebrew", "latin"] }); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); export const metadata: Metadata = { - title: "אתר פלוס | בניית אתרים מקצועיים לעסקים בישראל", description: "אתר פלוס מספק פתרונות עיצוב ובנייה אתרים מקצועיים לעסקים בישראל. אתרים מהירים, מאובטחים ומותאמים לכל מכשיר." -}; + title: "אתר פלוס - בנייה אתרים מקצועיים בישראל", description: "אתר פלוס מספק פתרונות עיצוב ובנייה אתרים מקצועיים לעסקים בישראל. אתרים מהירים, מאובטחים ומותאמים לכל מכשיר."}; export default function RootLayout({ children, @@ -14,8 +16,26 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - - {children} + + + +