Merge version_1 into main #1
@@ -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: "חוץ המסעדה הרצוג",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -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: "הרצוג"
|
||||
}
|
||||
]}
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<html lang="he" suppressHydrationWarning dir="rtl">
|
||||
<ServiceWrapper>
|
||||
<body className={`${lato.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -40,4 +68,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -64,7 +64,7 @@ export default function MenuPage() {
|
||||
]}
|
||||
slides={[
|
||||
{
|
||||
imageSrc: "https://img.restaurantguru.com/r588-Herzog-Falafel-and-Burger-and-Sabich-food.jpg",
|
||||
imageSrc: "https://img.restaurantguru.com/r588-Herzog-Falafel-and-Burger-and-Sabich-food.jpg?_wi=2",
|
||||
imageAlt: "תפריט של הרצוג"
|
||||
},
|
||||
{
|
||||
|
||||
@@ -74,7 +74,7 @@ export default function HomePage() {
|
||||
]}
|
||||
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=1",
|
||||
imageAlt: "חוץ המסעדה הרצוג",
|
||||
},
|
||||
{
|
||||
@@ -82,7 +82,7 @@ export default function HomePage() {
|
||||
imageAlt: "מנות טריות של הרצוג",
|
||||
},
|
||||
{
|
||||
imageSrc: "https://img.restaurantguru.com/r588-Herzog-Falafel-and-Burger-and-Sabich-food.jpg",
|
||||
imageSrc: "https://img.restaurantguru.com/r588-Herzog-Falafel-and-Burger-and-Sabich-food.jpg?_wi=1",
|
||||
imageAlt: "פלאפל טרי מוכן במקום",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user