diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 7826b5a..341aca9 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -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", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1bfe997..ae60d7e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}