Merge version_1 into main #1
@@ -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",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${mulish.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +76,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -92,10 +92,10 @@ export default function MenuPage() {
|
||||
title: "Appetizers & Starters",
|
||||
description: "Begin your meal with our traditional sambusas (fried pastries), tibs (sautéed meat), and other classic Ethiopian appetizers.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-puff-pastries-with-ground-meat-sesame-seeds-shortcakes-filled-with-mashed-potato-table_141793-5064.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-puff-pastries-with-ground-meat-sesame-seeds-shortcakes-filled-with-mashed-potato-table_141793-5064.jpg?_wi=2",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-from-afar-plate-spices-bowl-with-potatoes-mushrooms-colorful-spices-around-them_140725-118642.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-from-afar-plate-spices-bowl-with-potatoes-mushrooms-colorful-spices-around-them_140725-118642.jpg?_wi=2",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -103,10 +103,10 @@ export default function MenuPage() {
|
||||
title: "Vegetarian Selections",
|
||||
description: "Experience the rich flavors of Ethiopian vegetarian cuisine with misir wot, gomen, shiro, and more plant-based specialties.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-sliced-meat-dish-with-cooked-vegetables-inside-plate-light-desk-food-meal-vegetable-meat_140725-30915.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-sliced-meat-dish-with-cooked-vegetables-inside-plate-light-desk-food-meal-vegetable-meat_140725-30915.jpg?_wi=2",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/eid-al-fitr-celebration-with-delicious-food_23-2151205162.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/eid-al-fitr-celebration-with-delicious-food_23-2151205162.jpg?_wi=2",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -114,10 +114,10 @@ export default function MenuPage() {
|
||||
title: "Meat & Poultry Dishes",
|
||||
description: "Savor our signature doro wot, kitfo, tibs, and lamb specialties, each cooked with traditional Ethiopian spices and techniques.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/festive-holiday-dinner-with-roasted-ham-food-photography_53876-103588.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/festive-holiday-dinner-with-roasted-ham-food-photography_53876-103588.jpg?_wi=2",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/spa-concept-closeup-beautiful-spa-products-spa-salt-with-beautiful-flower-dark-background_1220-1447.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/spa-concept-closeup-beautiful-spa-products-spa-salt-with-beautiful-flower-dark-background_1220-1447.jpg?_wi=2",
|
||||
},
|
||||
},
|
||||
]}
|
||||
@@ -140,42 +140,42 @@ export default function MenuPage() {
|
||||
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=2",
|
||||
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=2",
|
||||
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=2",
|
||||
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=2",
|
||||
imageAlt: "Ethiopian vegetarian selection",
|
||||
},
|
||||
{
|
||||
id: "tibs",
|
||||
name: "Tibs",
|
||||
price: "$15",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-from-afar-plate-spices-bowl-with-potatoes-mushrooms-colorful-spices-around-them_140725-118642.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-from-afar-plate-spices-bowl-with-potatoes-mushrooms-colorful-spices-around-them_140725-118642.jpg?_wi=3",
|
||||
imageAlt: "Sautéed Ethiopian meat with vegetables",
|
||||
},
|
||||
{
|
||||
id: "gomen",
|
||||
name: "Gomen",
|
||||
price: "$11",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-sliced-meat-dish-with-cooked-vegetables-inside-plate-light-desk-food-meal-vegetable-meat_140725-30915.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-sliced-meat-dish-with-cooked-vegetables-inside-plate-light-desk-food-meal-vegetable-meat_140725-30915.jpg?_wi=3",
|
||||
imageAlt: "Gomen - sautéed collard greens",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -124,28 +124,28 @@ export default function HomePage() {
|
||||
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=1",
|
||||
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=1",
|
||||
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=1",
|
||||
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=1",
|
||||
imageAlt: "Ethiopian vegetarian selection",
|
||||
},
|
||||
]}
|
||||
@@ -164,7 +164,7 @@ export default function HomePage() {
|
||||
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=1"
|
||||
imageAlt="Habesha Restaurant interior with traditional Ethiopian décor"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={true}
|
||||
@@ -256,10 +256,10 @@ export default function HomePage() {
|
||||
title: "Appetizers",
|
||||
description: "Sambusas, tibs, and traditional starters to begin your culinary journey.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-puff-pastries-with-ground-meat-sesame-seeds-shortcakes-filled-with-mashed-potato-table_141793-5064.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-puff-pastries-with-ground-meat-sesame-seeds-shortcakes-filled-with-mashed-potato-table_141793-5064.jpg?_wi=1",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-from-afar-plate-spices-bowl-with-potatoes-mushrooms-colorful-spices-around-them_140725-118642.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-from-afar-plate-spices-bowl-with-potatoes-mushrooms-colorful-spices-around-them_140725-118642.jpg?_wi=1",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -267,10 +267,10 @@ export default function HomePage() {
|
||||
title: "Vegetarian Dishes",
|
||||
description: "Misir wot, gomen, shiro, and more. Flavorful options for every dietary preference.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-sliced-meat-dish-with-cooked-vegetables-inside-plate-light-desk-food-meal-vegetable-meat_140725-30915.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-sliced-meat-dish-with-cooked-vegetables-inside-plate-light-desk-food-meal-vegetable-meat_140725-30915.jpg?_wi=1",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/eid-al-fitr-celebration-with-delicious-food_23-2151205162.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/eid-al-fitr-celebration-with-delicious-food_23-2151205162.jpg?_wi=1",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -278,10 +278,10 @@ export default function HomePage() {
|
||||
title: "Meat Specialties",
|
||||
description: "Doro wot, kitfo, tibs, and lamb dishes cooked with traditional spices and techniques.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/festive-holiday-dinner-with-roasted-ham-food-photography_53876-103588.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/festive-holiday-dinner-with-roasted-ham-food-photography_53876-103588.jpg?_wi=1",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/spa-concept-closeup-beautiful-spa-products-spa-salt-with-beautiful-flower-dark-background_1220-1447.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/spa-concept-closeup-beautiful-spa-products-spa-salt-with-beautiful-flower-dark-background_1220-1447.jpg?_wi=1",
|
||||
},
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user