From fa11444e5f441727d73353b3e673f996cdfcc536 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 07:10:54 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 49 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dccc475..75fdcea 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito } from "next/font/google"; +import { Heebo } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); +const heebo = Heebo({ subsets: ["hebrew", "latin"] }); export const metadata: Metadata = { - title: "אתר פלוס - בניית אתרים מקצועיים לעסקים קטנים", description: "בנו אתר מקצועי לעסק שלכם בתוך 48 שעות. מותאם לנייד, מהיר וממביא לקוחות. עבור חנויות, מסעדות, מאמנים ועוד.", keywords: "בניית אתרים, עיצוב אתר, אתר לעסק, חנות אונליין, אתר מקצועי, הנדסה דיגיטלית", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "אתר פלוס - אתרים מקצועיים לעסקים", description: "בנו אתר מודרני שמביא לקוחות. מותאם לנייד ומהיר.", type: "website", siteName: "אתר פלוס", images: [ - { - url: "http://img.b2bpic.net/free-photo/research-analysis-ideas-strategy-information-concept_53876-123886.jpg", alt: "אתר מודרני מקצועי"}, - ], - }, - twitter: { - card: "summary_large_image", title: "אתר פלוס", description: "בנו אתר מקצועי לעסק שלכם", images: ["http://img.b2bpic.net/free-photo/research-analysis-ideas-strategy-information-concept_53876-123886.jpg"], - }, -}; + title: "אתר פלוס - בנייה מקצועית של אתרים לעסקים", description: "אתרים מודרניים לעסקים קטנים ובינוניים. בנייה מהירה, עיצוב יפה, ותוצאות שמביאות לקוחות חדשים."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}