Merge version_1 into main #1
@@ -92,11 +92,11 @@ export default function AboutPage() {
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-muslim-couple-arab-restaurant_23-2147794262.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-muslim-couple-arab-restaurant_23-2147794262.jpg?_wi=2",
|
||||
imageAlt: "أجواء المطعم الدافئة",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chigirtma-plov-rice-garnish-with-vegetables-herbs_114579-737.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chigirtma-plov-rice-garnish-with-vegetables-herbs_114579-737.jpg?_wi=5",
|
||||
imageAlt: "أطباقنا المميزة",
|
||||
},
|
||||
]}
|
||||
@@ -138,7 +138,7 @@ export default function AboutPage() {
|
||||
icon: Zap,
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/meat-pie-baked-inside-pottery-bowl-taking-meat_114579-1087.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/meat-pie-baked-inside-pottery-bowl-taking-meat_114579-1087.jpg?_wi=3"
|
||||
imageAlt="الجريش التقليدي"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
|
||||
@@ -92,11 +92,11 @@ export default function ContactPage() {
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-muslim-couple-arab-restaurant_23-2147794262.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-muslim-couple-arab-restaurant_23-2147794262.jpg?_wi=3",
|
||||
imageAlt: "موقعنا",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-holding-bread-loaf_23-2148361940.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-holding-bread-loaf_23-2148361940.jpg?_wi=3",
|
||||
imageAlt: "فريقنا",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,33 +1,72 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Mulish } 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 { Mulish } 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 mulish = Mulish({
|
||||
variable: "--font-mulish",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "طعم أصالة الديرة | مطعم يمني أصيل في تبوك",
|
||||
description: "مطعم يمني تقليدي أصيل في تبوك - الماسف. أطباق يمنية شهيرة، أرز بخاري، جريش، توصيل سريع. اطلب الآن!",
|
||||
keywords: "مطعم يمني، تبوك، طعم أصالة، أرز بخاري، جريش، مطعم تبوك، الماسف، توصيل",
|
||||
metadataBase: new URL("https://taamAsala-tabuk.com"),
|
||||
alternates: {
|
||||
canonical: "https://taamAsala-tabuk.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "طعم أصالة الديرة | مطعم يمني أصيل في تبوك",
|
||||
description: "اكتشف أطباق يمنية أصيلة في مطعم طعم أصالة الديرة بتبوك. جودة عالية وخدمة متميزة",
|
||||
url: "https://taamAsala-tabuk.com",
|
||||
siteName: "طعم أصالة الديرة",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://taamAsala-tabuk.com/og-image.jpg",
|
||||
alt: "طعم أصالة الديرة - مطعم يمني في تبوك",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "طعم أصالة الديرة | مطعم يمني أصيل",
|
||||
description: "أطباق يمنية شهية وأصيلة في تبوك",
|
||||
images: ["https://taamAsala-tabuk.com/twitter-image.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<html lang="ar" dir="rtl" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${mulish.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -86,11 +86,11 @@ export default function MenuPage() {
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chigirtma-plov-rice-garnish-with-vegetables-herbs_114579-737.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chigirtma-plov-rice-garnish-with-vegetables-herbs_114579-737.jpg?_wi=2",
|
||||
imageAlt: "أرز بخاري",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/meat-pie-baked-inside-pottery-bowl-taking-meat_114579-1087.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/meat-pie-baked-inside-pottery-bowl-taking-meat_114579-1087.jpg?_wi=2",
|
||||
imageAlt: "الجريش",
|
||||
},
|
||||
]}
|
||||
@@ -116,7 +116,7 @@ export default function MenuPage() {
|
||||
name: "الأطباق الرئيسية",
|
||||
price: "من 35 ر.س",
|
||||
variant: "جريش - بخاري - كبسة",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chigirtma-plov-rice-garnish-with-vegetables-herbs_114579-737.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chigirtma-plov-rice-garnish-with-vegetables-herbs_114579-737.jpg?_wi=3",
|
||||
imageAlt: "الأطباق الرئيسية",
|
||||
},
|
||||
{
|
||||
@@ -124,7 +124,7 @@ export default function MenuPage() {
|
||||
name: "الأرز",
|
||||
price: "من 30 ر.س",
|
||||
variant: "أرز بخاري - أرز باللحم",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chigirtma-plov-rice-garnish-with-vegetables-herbs_114579-737.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chigirtma-plov-rice-garnish-with-vegetables-herbs_114579-737.jpg?_wi=4",
|
||||
imageAlt: "أطباق الأرز",
|
||||
},
|
||||
{
|
||||
@@ -132,7 +132,7 @@ export default function MenuPage() {
|
||||
name: "الإضافات",
|
||||
price: "من 5 ر.س",
|
||||
variant: "خبز - بيض - لحم إضافي",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-holding-bread-loaf_23-2148361940.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-holding-bread-loaf_23-2148361940.jpg?_wi=2",
|
||||
imageAlt: "الإضافات",
|
||||
},
|
||||
{
|
||||
@@ -140,7 +140,7 @@ export default function MenuPage() {
|
||||
name: "الصلصات",
|
||||
price: "من 3 ر.س",
|
||||
variant: "ثومية - حارة - خاصة",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bowl-peach-jam-confiture-necktarine-isolated_114579-123.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bowl-peach-jam-confiture-necktarine-isolated_114579-123.jpg?_wi=2",
|
||||
imageAlt: "الصلصات التقليدية",
|
||||
},
|
||||
{
|
||||
@@ -148,7 +148,7 @@ export default function MenuPage() {
|
||||
name: "المشروبات",
|
||||
price: "من 5 ر.س",
|
||||
variant: "قهوة - شاي - عصائر",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-tea-cups-food-arrangement_23-2148786588.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-tea-cups-food-arrangement_23-2148786588.jpg?_wi=2",
|
||||
imageAlt: "المشروبات",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -137,7 +137,7 @@ export default function HomePage() {
|
||||
icon: Clock,
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-muslim-couple-arab-restaurant_23-2147794262.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-muslim-couple-arab-restaurant_23-2147794262.jpg?_wi=1"
|
||||
imageAlt="أجواء المطعم الدافئة التقليدية"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="left"
|
||||
@@ -162,7 +162,7 @@ export default function HomePage() {
|
||||
name: "الجريش الأصيل",
|
||||
price: "35 ر.س",
|
||||
variant: "مع اللحم البلدي",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/meat-pie-baked-inside-pottery-bowl-taking-meat_114579-1087.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/meat-pie-baked-inside-pottery-bowl-taking-meat_114579-1087.jpg?_wi=1",
|
||||
imageAlt: "الجريش التقليدي اليمني",
|
||||
},
|
||||
{
|
||||
@@ -170,7 +170,7 @@ export default function HomePage() {
|
||||
name: "أرز بخاري يمني",
|
||||
price: "45 ر.س",
|
||||
variant: "لحم طازج وأرز عطري",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chigirtma-plov-rice-garnish-with-vegetables-herbs_114579-737.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chigirtma-plov-rice-garnish-with-vegetables-herbs_114579-737.jpg?_wi=1",
|
||||
imageAlt: "أرز بخاري يمني فاخر",
|
||||
},
|
||||
{
|
||||
@@ -178,7 +178,7 @@ export default function HomePage() {
|
||||
name: "الصلصات المتنوعة",
|
||||
price: "8 ر.س",
|
||||
variant: "متخصصة الثومية والحارة",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bowl-peach-jam-confiture-necktarine-isolated_114579-123.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bowl-peach-jam-confiture-necktarine-isolated_114579-123.jpg?_wi=1",
|
||||
imageAlt: "صلصات تقليدية طازة",
|
||||
},
|
||||
{
|
||||
@@ -186,7 +186,7 @@ export default function HomePage() {
|
||||
name: "الخبز الطازج",
|
||||
price: "3 ر.س",
|
||||
variant: "خبز شاي طازج مباشرة من الفرن",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-holding-bread-loaf_23-2148361940.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-holding-bread-loaf_23-2148361940.jpg?_wi=1",
|
||||
imageAlt: "خبز عربي تقليدي دافئ",
|
||||
},
|
||||
{
|
||||
@@ -194,7 +194,7 @@ export default function HomePage() {
|
||||
name: "القهوة والشاي",
|
||||
price: "5 ر.س",
|
||||
variant: "قهوة سادة أو شاي بالنعناع",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-tea-cups-food-arrangement_23-2148786588.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-tea-cups-food-arrangement_23-2148786588.jpg?_wi=1",
|
||||
imageAlt: "مشروبات تقليدية عربية",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user