From 8d91172112e036b8505b0ac307c65cb743e181af Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 07:44:06 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index d4d0cb1..bc943fd 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -56,7 +56,7 @@ export default function AboutPage() { ]} slides={[ { - imageSrc: "https://img.restaurantguru.com/rf74-Herzog-Falafel-and-Burger-and-Sabich-exterior.jpg", + imageSrc: "https://img.restaurantguru.com/rf74-Herzog-Falafel-and-Burger-and-Sabich-exterior.jpg?_wi=2", imageAlt: "חוץ המסעדה הרצוג", }, ]} -- 2.49.1 From 760d20278ee215a98a042ea5d84adbee3d80de19 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 07:44:06 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index d4358e0..20ba5a2 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -57,7 +57,7 @@ export default function ContactPage() { ]} slides={[ { - imageSrc: "https://img.restaurantguru.com/rf74-Herzog-Falafel-and-Burger-and-Sabich-exterior.jpg", + imageSrc: "https://img.restaurantguru.com/rf74-Herzog-Falafel-and-Burger-and-Sabich-exterior.jpg?_wi=3", imageAlt: "הרצוג" } ]} -- 2.49.1 From 063d3b1bf33a3bfe189c7413b6d0d67fc645e66e Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 07:44:07 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 46 +++++++++++++++++++++++++++++++++++++--------- 1 file changed, 37 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da4fe5a..2c8465a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Lato } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const lato = Lato({ variable: "--font-lato", @@ -20,15 +24,39 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"] }); +export const metadata: Metadata = { + title: "הרצוג - פלאפל טרי בירושלים | שירות מהיר", + description: "הרצוג היא מסעדת פלאפל בירושלים עם אוכל טרי, שירות מהיר ואווירה שכונתית. התקשרו: 077-321-6807", + keywords: "פלאפל ירושלים, אוכל רחוב, מזון מהיר, סביח, חומוס, אוכל ישראלי", + metadataBase: new URL("https://herzog-falafel.co.il"), + alternates: { + canonical: "https://herzog-falafel.co.il" + }, + openGraph: { + title: "הרצוג - פלאפל טרי בירושלים", + description: "פלאפל טרי, אווירה שכונתית ושירות מהיר בהרצוג, ירושלים", + url: "https://herzog-falafel.co.il", + siteName: "הרצוג", + type: "website" + }, + twitter: { + card: "summary_large_image", + title: "הרצוג - פלאפל טרי", + description: "פלאפל טרי, אווירה שכונתית ושירות מהיר" + } +}; + export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( - + - + {children}