Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 14:36:46 +00:00
2 changed files with 24 additions and 42 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import { Halant } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Shri ji Restaurant - Fine Dining in Palwal | Chinese & Indian Cuisine", description: "Experience authentic Indian and Chinese cuisine at Shri ji Restaurant in Palwal. Order online, reserve your table, and enjoy exceptional dining with premium ambience and quality service.", keywords: "restaurant Palwal, Indian Chinese food, fine dining, online food delivery, Momos, Chow Mein, Pizza", openGraph: {
title: "Shri ji Restaurant - Premium Dining Experience", description: "Discover culinary excellence at Shri ji Restaurant. Authentic flavors, premium service, and unforgettable dining moments.", siteName: "Shri ji Restaurant", type: "website", url: "http://img.b2bpic.net/free-photo/life-style_1122-1806.jpg", images: [
{
url: "http://img.b2bpic.net/free-photo/life-style_1122-1806.jpg", alt: "Shri ji Restaurant dining ambience"},
],
},
twitter: {
card: "summary_large_image", title: "Shri ji Restaurant - Fine Dining in Palwal", description: "Experience authentic Indian & Chinese cuisine with exceptional service and ambience.", images: ["http://img.b2bpic.net/free-photo/life-style_1122-1806.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Shri ji Restaurant", description: "Experience authentic Indian & Chinese cuisine at Shri ji Restaurant in Palwal"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -33,6 +33,8 @@ export default function LandingPage() {
{ name: "Home", id: "home" },
{ name: "About", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Features", id: "features" },
{ name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" }
]}
bottomLeftText="New Colony, Palwal"
@@ -93,6 +95,7 @@ export default function LandingPage() {
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
carouselMode="buttons"
products={[
{
id: "1", name: "Sizzling Chow Mein", price: "₹280", imageSrc: "http://img.b2bpic.net/free-photo/spaghetti-japannese-sausage-with-tobiko_1339-7882.jpg?_wi=1", imageAlt: "Sizzling Chow Mein noodles with vegetables"
@@ -102,10 +105,24 @@ export default function LandingPage() {
},
{
id: "3", name: "Thin Crust Pizza", price: "₹350", imageSrc: "http://img.b2bpic.net/free-photo/half-meat-pizza-with-bell-pepper-tomato-mushroom-cheese_140725-5019.jpg?_wi=1", imageAlt: "Freshly baked thin crust pizza"
},
{
id: "4", name: "Hakka Noodles", price: "₹260", imageSrc: "http://img.b2bpic.net/free-photo/spaghetti-japannese-sausage-with-tobiko_1339-7882.jpg?_wi=1", imageAlt: "Hakka noodles with crispy vegetables"
},
{
id: "5", name: "Butter Chicken", price: "₹320", imageSrc: "http://img.b2bpic.net/free-photo/man-chef-cooking-asian-chicken-cafe-kitchen_1303-32155.jpg?_wi=1", imageAlt: "Creamy butter chicken curry"
},
{
id: "6", name: "Paneer Tikka", price: "₹290", imageSrc: "http://img.b2bpic.net/free-photo/set-knife-lemon-cucumber-cheese-greens-tomatoes-cutting-board-gray-surface_176474-6460.jpg?_wi=1", imageAlt: "Grilled paneer tikka skewers"
},
{
id: "7", name: "Spring Rolls", price: "₹240", imageSrc: "http://img.b2bpic.net/free-photo/side-view-traditional-asian-dumplings-with-meat-vegetables-served-with-soy-sauce-plate-rustic_141793-11562.jpg?_wi=1", imageAlt: "Crispy spring rolls with dipping sauce"
},
{
id: "8", name: "Tandoori Fish", price: "₹380", imageSrc: "http://img.b2bpic.net/free-photo/life-style_1122-1806.jpg", imageAlt: "Smoky tandoori fish fillet"
}
]}
gridVariant="three-columns-all-equal-width"
carouselMode="buttons"
/>
</div>