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: "חוץ המסעדה הרצוג", }, ]} 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: "הרצוג" } ]} 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}