From e5daa73a1b8f1d82b00d4fc238982c7d8b460ef9 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 04:48:29 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index ba9c918..dff94e8 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -92,7 +92,7 @@ export default function AboutPage() { description="Habesha Restaurant & Bar brings the rich flavors of Ethiopian cuisine to Las Vegas with traditional recipes, fresh ingredients, and a welcoming atmosphere." subdescription="Since 2010, we've been committed to sharing the authentic taste of Ethiopia with our community. Our family recipes, combined with locally sourced ingredients, create an unforgettable dining experience." icon={Heart} - imageSrc="http://img.b2bpic.net/free-photo/restaurant-with-leather-sofa-paintings-wall_140725-9715.jpg" + imageSrc="http://img.b2bpic.net/free-photo/restaurant-with-leather-sofa-paintings-wall_140725-9715.jpg?_wi=2" imageAlt="Habesha Restaurant interior with traditional Ethiopian décor" mediaAnimation="blur-reveal" useInvertedBackground={true} @@ -110,28 +110,28 @@ export default function AboutPage() { id: "misir-wot", name: "Misir Wot", price: "$12", - imageSrc: "http://img.b2bpic.net/free-photo/azerbaijani-traditional-dish-piti-cooked-clay-pot_140725-3893.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/azerbaijani-traditional-dish-piti-cooked-clay-pot_140725-3893.jpg?_wi=3", imageAlt: "Misir Wot - spiced red lentil stew", }, { id: "doro-wot", name: "Doro Wot", price: "$14", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-yummy-soup-with-chicken-other-ingredients_140725-56551.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-yummy-soup-with-chicken-other-ingredients_140725-56551.jpg?_wi=3", imageAlt: "Doro Wot - chicken in rich Ethiopian spice sauce", }, { id: "injera-combo", name: "Injera Combo", price: "$16", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-with-dish-poutine_23-2149486034.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-with-dish-poutine_23-2149486034.jpg?_wi=3", imageAlt: "Mixed injera platter with vegetables and meat", }, { id: "vegetarian-platter", name: "Vegetarian Platter", price: "$13", - imageSrc: "http://img.b2bpic.net/free-photo/take-away-sweet-potato-falafel-bowl-vegan-menu_53876-124378.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/take-away-sweet-potato-falafel-bowl-vegan-menu_53876-124378.jpg?_wi=3", imageAlt: "Ethiopian vegetarian selection", }, ]} -- 2.49.1 From 9b73220a90640160d29a77f0392571dd24b37314 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 04:48:29 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 53 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 45 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0a803b2..4cd95d5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,59 @@ 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: "Habesha Restaurant & Bar | Authentic Ethiopian Food Las Vegas", + description: "Authentic Ethiopian restaurant in Las Vegas. Fresh injera, traditional recipes, late-night dining. Order online, make reservations, or visit us at 6174 W Flamingo Rd.", + keywords: "Ethiopian restaurant Las Vegas, injera, Ethiopian food near me, Habesha Restaurant, authentic Ethiopian cuisine, Flamingo Road", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Habesha Restaurant & Bar | Authentic Ethiopian Cuisine", + description: "Experience traditional Ethiopian flavors, fresh injera, and warm hospitality in Las Vegas.", + siteName: "Habesha Restaurant & Bar", + type: "website", + url: "https://habesha-restaurant.com", + images: [ + { + url: "http://img.b2bpic.net/free-photo/cracker-rings-slices-sausages-with-olives-ceramic-plate-with-pink-tablecloth_114579-20960.jpg", + alt: "Habesha Ethiopian Restaurant", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Habesha Restaurant & Bar | Authentic Ethiopian Food", + description: "Fresh injera, traditional recipes, late-night dining in Las Vegas.", + images: [ + "http://img.b2bpic.net/free-photo/cracker-rings-slices-sausages-with-olives-ceramic-plate-with-pink-tablecloth_114579-20960.jpg", + ], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +62,9 @@ export default function RootLayout({ return ( - + {children}