diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index a7a86c4..9c5c50c 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -58,7 +58,7 @@ export default function AboutPage() { { text: "Explore Menu", href: "/menu" }, ]} buttonAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/catering-tablecloth-plate-drink-background_1203-5091.jpg" + imageSrc="http://img.b2bpic.net/free-photo/catering-tablecloth-plate-drink-background_1203-5091.jpg?_wi=2" imageAlt="Moroccan Restaurant Interior" mediaAnimation="slide-up" className="py-24" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a088e29..77d895e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,56 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Source_Sans_3 } 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 { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "DARI - Authentic Moroccan Restaurant", + description: "Experience authentic 100% Moroccan cuisine at DARI. Traditional dishes, heritage recipes, and warm hospitality. Dine in or order delivery.", + keywords: "moroccan restaurant, authentic moroccan cuisine, couscous, tagine, moroccan food, moroccan delivery", + openGraph: { + title: "DARI - Authentic Moroccan Restaurant", + description: "Experience authentic 100% Moroccan cuisine with traditional recipes and warm hospitality.", + siteName: "DARI Restaurant", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/beaf-vegetables-fried-furnace_140725-673.jpg", + alt: "traditional moroccan tagine dish steaming", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "DARI - Authentic Moroccan Restaurant", + description: "100% Moroccan cuisine. Traditional recipes. Heritage ingredients.", + images: ["http://img.b2bpic.net/free-photo/beaf-vegetables-fried-furnace_140725-673.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +59,9 @@ export default function RootLayout({ return ( - + {children}