Merge version_1 into main #1

Merged
bender merged 3 commits from version_1 into main 2026-03-21 09:29:19 +00:00
3 changed files with 54 additions and 20 deletions

View File

@@ -1,24 +1,56 @@
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: "Thenmanam - Premium South Indian Non-Veg Restaurant | Anna Nagar, Chennai",
description: "Experience authentic Tamil non-veg cuisine at Thenmanam. Famous for Seeraga Samba biryani, live starter display, and exceptional service. Located in Anna Nagar, Chennai. No reservations—first come, first served.",
keywords: "south indian restaurant, non veg restaurant Chennai, Michelin style dining, biryani, Anna Nagar restaurants, Tamil cuisine, premium dining",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Thenmanam - Premium South Indian Dining Experience",
description: "Authentic Tamil non-veg cuisine with modern luxury. Most talked-about restaurant in Anna Nagar, Chennai.",
siteName: "Thenmanam Restaurant",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/tomato-soup-with-spicy-ingredient-top_114579-2430.jpg",
alt: "Thenmanam Premium Dining",
},
],
},
twitter: {
card: "summary_large_image",
title: "Thenmanam - Premium South Indian Restaurant",
description: "Experience authentic Tamil non-veg cuisine. Rated 5★ by 1000+ food lovers.",
images: ["http://img.b2bpic.net/free-photo/tomato-soup-with-spicy-ingredient-top_114579-2430.jpg"],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +59,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 +73,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -92,7 +92,7 @@ export default function MenuPage() {
id: "seeraga-samba",
name: "Seeraga Samba Mutton Biryani",
price: "₹450",
imageSrc: "http://img.b2bpic.net/free-photo/khan-pilav-with-various-fruits-inside_140725-1802.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/khan-pilav-with-various-fruits-inside_140725-1802.jpg?_wi=2",
imageAlt: "Seeraga Samba Mutton Biryani",
isFavorited: false,
},
@@ -100,7 +100,7 @@ export default function MenuPage() {
id: "chinthamani-chicken",
name: "Chinthamani Chicken",
price: "₹380",
imageSrc: "http://img.b2bpic.net/free-photo/chicken-sauce-curry-served-bowl-with-sticks-table-closeup_1220-7638.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/chicken-sauce-curry-served-bowl-with-sticks-table-closeup_1220-7638.jpg?_wi=2",
imageAlt: "Chinthamani Chicken",
isFavorited: false,
},
@@ -108,7 +108,7 @@ export default function MenuPage() {
id: "moru-moru-prawn",
name: "Moru Moru Prawn",
price: "₹520",
imageSrc: "http://img.b2bpic.net/free-photo/green-curry-with-eggs-black-cups-with-lemon-lemongrass-chili-tomatoes_1150-25746.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/green-curry-with-eggs-black-cups-with-lemon-lemongrass-chili-tomatoes_1150-25746.jpg?_wi=2",
imageAlt: "Moru Moru Prawn",
isFavorited: false,
},
@@ -116,7 +116,7 @@ export default function MenuPage() {
id: "nethili-fry",
name: "Nethili Fry",
price: "₹320",
imageSrc: "http://img.b2bpic.net/free-photo/fried-tilapia-with-chili-sauce-lemon-salad-garlic-plate-white-wooden-table_1150-20828.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fried-tilapia-with-chili-sauce-lemon-salad-garlic-plate-white-wooden-table_1150-20828.jpg?_wi=2",
imageAlt: "Nethili Fry",
isFavorited: false,
},
@@ -124,7 +124,7 @@ export default function MenuPage() {
id: "mutton-chukka",
name: "Mutton Chukka",
price: "₹400",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-goulash-ready-dinner_23-2149370901.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-goulash-ready-dinner_23-2149370901.jpg?_wi=2",
imageAlt: "Mutton Chukka",
isFavorited: false,
},
@@ -132,7 +132,7 @@ export default function MenuPage() {
id: "sura-puttu",
name: "Sura Puttu",
price: "₹280",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-potato-pies-with-mushed-pumpkin-its-seeds-dark-grey-background-bake-oven-cake-color-pie_140725-121440.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-potato-pies-with-mushed-pumpkin-its-seeds-dark-grey-background-bake-oven-cake-color-pie_140725-121440.jpg?_wi=2",
imageAlt: "Sura Puttu",
isFavorited: false,
},

View File

@@ -166,7 +166,7 @@ export default function HomePage() {
id: "seeraga-samba",
name: "Seeraga Samba Mutton Biryani",
price: "₹450",
imageSrc: "http://img.b2bpic.net/free-photo/khan-pilav-with-various-fruits-inside_140725-1802.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/khan-pilav-with-various-fruits-inside_140725-1802.jpg?_wi=1",
imageAlt: "Seeraga Samba Mutton Biryani - Most Loved",
isFavorited: false,
},
@@ -174,7 +174,7 @@ export default function HomePage() {
id: "chinthamani-chicken",
name: "Chinthamani Chicken",
price: "₹380",
imageSrc: "http://img.b2bpic.net/free-photo/chicken-sauce-curry-served-bowl-with-sticks-table-closeup_1220-7638.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/chicken-sauce-curry-served-bowl-with-sticks-table-closeup_1220-7638.jpg?_wi=1",
imageAlt: "Chinthamani Chicken - Chef's Pick",
isFavorited: false,
},
@@ -182,7 +182,7 @@ export default function HomePage() {
id: "moru-moru-prawn",
name: "Moru Moru Prawn",
price: "₹520",
imageSrc: "http://img.b2bpic.net/free-photo/green-curry-with-eggs-black-cups-with-lemon-lemongrass-chili-tomatoes_1150-25746.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/green-curry-with-eggs-black-cups-with-lemon-lemongrass-chili-tomatoes_1150-25746.jpg?_wi=1",
imageAlt: "Moru Moru Prawn - Seafood Specialty",
isFavorited: false,
},
@@ -190,7 +190,7 @@ export default function HomePage() {
id: "nethili-fry",
name: "Nethili Fry",
price: "₹320",
imageSrc: "http://img.b2bpic.net/free-photo/fried-tilapia-with-chili-sauce-lemon-salad-garlic-plate-white-wooden-table_1150-20828.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fried-tilapia-with-chili-sauce-lemon-salad-garlic-plate-white-wooden-table_1150-20828.jpg?_wi=1",
imageAlt: "Nethili Fry - Crispy Perfection",
isFavorited: false,
},
@@ -198,7 +198,7 @@ export default function HomePage() {
id: "mutton-chukka",
name: "Mutton Chukka",
price: "₹400",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-goulash-ready-dinner_23-2149370901.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-goulash-ready-dinner_23-2149370901.jpg?_wi=1",
imageAlt: "Mutton Chukka - Dry Spiced Delight",
isFavorited: false,
},
@@ -206,7 +206,7 @@ export default function HomePage() {
id: "sura-puttu",
name: "Sura Puttu",
price: "₹280",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-potato-pies-with-mushed-pumpkin-its-seeds-dark-grey-background-bake-oven-cake-color-pie_140725-121440.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-potato-pies-with-mushed-pumpkin-its-seeds-dark-grey-background-bake-oven-cake-color-pie_140725-121440.jpg?_wi=1",
imageAlt: "Sura Puttu - Traditional Starter",
isFavorited: false,
},