Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 13:15:23 +00:00
2 changed files with 15 additions and 62 deletions

View File

@@ -1,74 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Archivo } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const archivo = Archivo({
variable: "--font-archivo",
subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Oxford Bar & Family Restaurant - Best Dining in Shahganj",
description: "Experience authentic Indian cuisine and warm hospitality at Oxford Bar & Family Restaurant in Shahganj. Open daily with dine-in, drive-through, and bar service.",
keywords: "restaurant in Shahganj, family restaurant, bar restaurant, best restaurant Azamgarh Road, Indian food, authentic cuisine",
metadataBase: new URL("https://www.oxfordbar-restaurant.com"),
alternates: {
canonical: "https://www.oxfordbar-restaurant.com",
},
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Oxford Bar & Family Restaurant - Best Dining in Shahganj",
description: "Delicious food, refreshing drinks, and a comfortable place to enjoy time with family and friends.",
url: "https://www.oxfordbar-restaurant.com",
siteName: "Oxford Bar & Family Restaurant",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/group-diverse-friends-are-having-dinner-together_53876-40927.jpg",
alt: "Oxford Bar & Family Restaurant dining experience",
},
],
},
twitter: {
card: "summary_large_image",
title: "Oxford Bar & Family Restaurant",
description: "Best family dining in Shahganj with authentic Indian cuisine",
images: ["http://img.b2bpic.net/free-photo/group-diverse-friends-are-having-dinner-together_53876-40927.jpg"],
},
};
title: "Oxford Bar & Family Restaurant", description: "Best Family Restaurant in Shahganj"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable}`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -52,7 +52,7 @@ export default function HomePage() {
tag="Welcome"
background={{ variant: "plain" }}
buttons={[
{ text: "Call Now", href: "tel:+9105453358746" },
{ text: "Reserve Table", href: "tel:+9105453358746" },
{ text: "Get Directions", href: "https://maps.google.com/?q=Oxford+Bar+Restaurant+Azamgarh" },
]}
dashboard={{
@@ -244,4 +244,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}