diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index b2b9593..6a36d06 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -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" diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 7e5a3d9..272d124 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -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: "فريقنا", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0a803b2..1b01e03 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + - + {children}