Merge version_1 into main #1
@@ -58,7 +58,7 @@ export default function ContactPage() {
|
||||
{ text: "Send Message", href: "#" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/table-chairs-bar_107420-65857.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/table-chairs-bar_107420-65857.jpg?_wi=2"
|
||||
imageAlt="Orbit Cafe dining setup"
|
||||
mediaAnimation="blur-reveal"
|
||||
imagePosition="right"
|
||||
@@ -79,7 +79,7 @@ export default function ContactPage() {
|
||||
description:
|
||||
"Reach our reservations team directly. We're available 24/7 to assist with bookings, menu inquiries, and special requests.",
|
||||
tags: ["Available 24/7", "Quick Response", "Expert Staff"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-professional_1098-12931.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-professional_1098-12931.jpg?_wi=2",
|
||||
imageAlt: "customer support team",
|
||||
},
|
||||
{
|
||||
@@ -89,7 +89,7 @@ export default function ContactPage() {
|
||||
description:
|
||||
"123 Galaxy Avenue, Premium District | Conveniently located with ample parking and easy access. Located in the heart of the premium dining district.",
|
||||
tags: ["Easy Access", "Parking Available", "Walkable"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/table-chairs-bar_107420-65857.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/table-chairs-bar_107420-65857.jpg?_wi=3",
|
||||
imageAlt: "cafe location",
|
||||
},
|
||||
{
|
||||
@@ -99,7 +99,7 @@ export default function ContactPage() {
|
||||
description:
|
||||
"Monday to Sunday: 10 AM - 2 AM. We're open around the clock for late-night dining. Special accommodations for private events available.",
|
||||
tags: ["24/7 Open", "Late Night", "Flexible"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-cooking_23-2148723237.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-cooking_23-2148723237.jpg?_wi=2",
|
||||
imageAlt: "kitchen operations",
|
||||
},
|
||||
{
|
||||
@@ -109,7 +109,7 @@ export default function ContactPage() {
|
||||
description:
|
||||
"Host your corporate meetings, celebrations, or gatherings at Orbit Cafe. We offer customizable packages and dedicated event planning support.",
|
||||
tags: ["Group Bookings", "Corporate Events", "Catering"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-table-enjoying-feast-first-day-passover-seder_23-2150247764.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-table-enjoying-feast-first-day-passover-seder_23-2150247764.jpg?_wi=2",
|
||||
imageAlt: "group dining",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,24 +1,57 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Archivo } 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 { Archivo } 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 archivo = Archivo({
|
||||
variable: "--font-archivo",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Orbit Cafe - Premium 3D Dining Experience",
|
||||
description: "Experience premium dining with immersive 3D aesthetics. Handcrafted burgers, pizzas, momos & more. Open 24/7 with cutting-edge design.",
|
||||
keywords: "premium cafe, 3D restaurant, fine dining, burgers, pizza, momos, gourmet food, luxury experience",
|
||||
metadataBase: new URL("https://orbitcafe.com"),
|
||||
alternates: {
|
||||
canonical: "https://orbitcafe.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Orbit Cafe - Premium 3D Dining",
|
||||
description: "Enter the Orbit. Experience premium dining through immersive 3D aesthetics and culinary excellence.",
|
||||
url: "https://orbitcafe.com",
|
||||
siteName: "Orbit Cafe",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/empty-lounge-area-hotel-lobby_482257-78142.jpg",
|
||||
alt: "premium cafe 3d rendering dark theme",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Orbit Cafe - Premium 3D Dining",
|
||||
description: "Experience premium dining with immersive 3D design and world-class cuisine.",
|
||||
images: ["http://img.b2bpic.net/free-photo/empty-lounge-area-hotel-lobby_482257-78142.jpg"],
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +60,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${archivo.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +74,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -54,42 +54,42 @@ export default function MenuPage() {
|
||||
id: "burger-1",
|
||||
name: "Stellar Burger",
|
||||
price: "$18.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-vegetarian-burger-plate-with-copy-space_23-2148784529.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-vegetarian-burger-plate-with-copy-space_23-2148784529.jpg?_wi=2",
|
||||
imageAlt: "premium gourmet burger",
|
||||
},
|
||||
{
|
||||
id: "burger-2",
|
||||
name: "Prime Angus Burger",
|
||||
price: "$22.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-vegetarian-burger-plate-with-copy-space_23-2148784529.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-vegetarian-burger-plate-with-copy-space_23-2148784529.jpg?_wi=3",
|
||||
imageAlt: "angus burger premium",
|
||||
},
|
||||
{
|
||||
id: "pizza-1",
|
||||
name: "Cosmic Pizza",
|
||||
price: "$22.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/food-catering-bread-pizzas-menu_624325-1355.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/food-catering-bread-pizzas-menu_624325-1355.jpg?_wi=2",
|
||||
imageAlt: "wood-fired pizza",
|
||||
},
|
||||
{
|
||||
id: "pizza-2",
|
||||
name: "Truffle Infusion",
|
||||
price: "$28.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/food-catering-bread-pizzas-menu_624325-1355.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/food-catering-bread-pizzas-menu_624325-1355.jpg?_wi=3",
|
||||
imageAlt: "truffle pizza",
|
||||
},
|
||||
{
|
||||
id: "momo-1",
|
||||
name: "Nebula Momos",
|
||||
price: "$12.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-chinese-steamed-buns-with-copyspace_23-2148297963.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-chinese-steamed-buns-with-copyspace_23-2148297963.jpg?_wi=2",
|
||||
imageAlt: "authentic momos",
|
||||
},
|
||||
{
|
||||
id: "momo-2",
|
||||
name: "Spicy Dragon Momos",
|
||||
price: "$14.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-chinese-steamed-buns-with-copyspace_23-2148297963.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-chinese-steamed-buns-with-copyspace_23-2148297963.jpg?_wi=3",
|
||||
imageAlt: "spicy momos",
|
||||
},
|
||||
]}
|
||||
@@ -112,7 +112,7 @@ export default function MenuPage() {
|
||||
description:
|
||||
"Handcrafted burgers featuring premium beef, gourmet toppings, and house-made sauces. Each burger is a masterpiece.",
|
||||
tags: ["Beef", "Premium", "Classic"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-vegetarian-burger-plate-with-copy-space_23-2148784529.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-vegetarian-burger-plate-with-copy-space_23-2148784529.jpg?_wi=4",
|
||||
imageAlt: "artisan burgers",
|
||||
},
|
||||
{
|
||||
@@ -122,7 +122,7 @@ export default function MenuPage() {
|
||||
description:
|
||||
"Authentic Italian-style pizzas baked in our traditional wood-fired oven. Crispy crust, premium toppings, perfect every time.",
|
||||
tags: ["Italian", "Authentic", "Fresh"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/food-catering-bread-pizzas-menu_624325-1355.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/food-catering-bread-pizzas-menu_624325-1355.jpg?_wi=4",
|
||||
imageAlt: "wood-fired pizzas",
|
||||
},
|
||||
{
|
||||
@@ -132,7 +132,7 @@ export default function MenuPage() {
|
||||
description:
|
||||
"Authentic momos, dumplings, and pan-Asian dishes prepared with traditional techniques and premium ingredients.",
|
||||
tags: ["Asian", "Traditional", "Authentic"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-chinese-steamed-buns-with-copyspace_23-2148297963.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-chinese-steamed-buns-with-copyspace_23-2148297963.jpg?_wi=4",
|
||||
imageAlt: "asian specialties",
|
||||
},
|
||||
{
|
||||
@@ -142,7 +142,7 @@ export default function MenuPage() {
|
||||
description:
|
||||
"Specialty coffees, craft teas, and unique drink creations. From espresso to artisanal lattes, we have it all.",
|
||||
tags: ["Coffee", "Tea", "Specialty"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/milk-poured-into-transparent-glass_23-2148349577.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/milk-poured-into-transparent-glass_23-2148349577.jpg?_wi=2",
|
||||
imageAlt: "premium beverages",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -82,7 +82,7 @@ export default function HomePage() {
|
||||
description="Orbit Cafe redefines premium dining by merging culinary innovation with immersive digital experiences. Every detail is meticulously designed to elevate your journey."
|
||||
subdescription="From handcrafted burgers to authentic momos, our offerings celebrate global flavors in an atmosphere that feels like stepping into the future."
|
||||
icon={Zap}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/table-chairs-bar_107420-65857.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/table-chairs-bar_107420-65857.jpg?_wi=1"
|
||||
imageAlt="Orbit Cafe interior ambiance"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -123,7 +123,7 @@ export default function HomePage() {
|
||||
description:
|
||||
"State-of-the-art kitchen technology ensures your meals arrive at peak perfection without the wait.",
|
||||
tags: ["Efficient", "Tech-Enabled", "Quick"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-cooking_23-2148723237.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-cooking_23-2148723237.jpg?_wi=1",
|
||||
imageAlt: "professional kitchen modern equipment technology",
|
||||
},
|
||||
{
|
||||
@@ -158,7 +158,7 @@ export default function HomePage() {
|
||||
role: "Food Critic",
|
||||
company: "Culinary Review Weekly",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-professional_1098-12931.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-professional_1098-12931.jpg?_wi=1",
|
||||
imageAlt: "professional woman portrait business headshot",
|
||||
},
|
||||
{
|
||||
@@ -235,21 +235,21 @@ export default function HomePage() {
|
||||
id: "burger-1",
|
||||
name: "Stellar Burger",
|
||||
price: "$18.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-vegetarian-burger-plate-with-copy-space_23-2148784529.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-vegetarian-burger-plate-with-copy-space_23-2148784529.jpg?_wi=1",
|
||||
imageAlt: "premium gourmet burger high-res photography",
|
||||
},
|
||||
{
|
||||
id: "pizza-1",
|
||||
name: "Cosmic Pizza",
|
||||
price: "$22.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/food-catering-bread-pizzas-menu_624325-1355.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/food-catering-bread-pizzas-menu_624325-1355.jpg?_wi=1",
|
||||
imageAlt: "wood-fired pizza premium gourmet photography",
|
||||
},
|
||||
{
|
||||
id: "momo-1",
|
||||
name: "Nebula Momos",
|
||||
price: "$12.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-chinese-steamed-buns-with-copyspace_23-2148297963.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-chinese-steamed-buns-with-copyspace_23-2148297963.jpg?_wi=1",
|
||||
imageAlt: "authentic momos asian dumplings food photography",
|
||||
},
|
||||
{
|
||||
@@ -263,14 +263,14 @@ export default function HomePage() {
|
||||
id: "beverage-1",
|
||||
name: "Midnight Espresso",
|
||||
price: "$5.49",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/milk-poured-into-transparent-glass_23-2148349577.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/milk-poured-into-transparent-glass_23-2148349577.jpg?_wi=1",
|
||||
imageAlt: "premium espresso coffee art professional photo",
|
||||
},
|
||||
{
|
||||
id: "combo-1",
|
||||
name: "Orbit Supreme Combo",
|
||||
price: "$39.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-table-enjoying-feast-first-day-passover-seder_23-2150247764.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-table-enjoying-feast-first-day-passover-seder_23-2150247764.jpg?_wi=1",
|
||||
imageAlt: "gourmet food combo platter professional photo",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user