Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-06 14:01:03 +00:00
2 changed files with 13 additions and 40 deletions

View File

@@ -1,55 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } 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 montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Tadka - Authentic Indian Restaurant in Varanshi | Order Now", description: "Experience authentic Indian cuisine at Tadka restaurant in Lanka Varanshi, near Paprika. Order delicious butter chicken, biryani, and more via WhatsApp at +91 8924038584.", keywords: "Indian restaurant, Tadka restaurant, Varanshi food, authentic Indian cuisine, butter chicken, biryani, order online, WhatsApp ordering", metadataBase: new URL("https://tadka-restaurant.com"),
alternates: {
canonical: "https://tadka-restaurant.com"
},
openGraph: {
title: "Tadka - Authentic Indian Restaurant in Varanshi", description: "Taste authentic Indian flavors at Tadka. Order through WhatsApp now at +91 8924038584", url: "https://tadka-restaurant.com", siteName: "Tadka Restaurant", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/farfalle-with-chicken-leg-fork-with-orange-juice-black-surface_141793-1316.jpg", alt: "Tadka - Authentic Indian Cuisine"
}
]
},
twitter: {
card: "summary_large_image", title: "Tadka - Authentic Indian Restaurant", description: "Order delicious Indian food through WhatsApp at +91 8924038584", images: ["http://img.b2bpic.net/free-photo/farfalle-with-chicken-leg-fork-with-orange-juice-black-surface_141793-1316.jpg"]
}
};
title: "Tadka - Authentic Indian Cuisine in Varanasi", description: "Experience the finest Indian cuisine at Tadka. Located near Paprika on Lanka Varanshi. Order through WhatsApp or dine in."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -199,6 +199,7 @@ export default function LandingPage() {
{ text: "Order Now on WhatsApp", href: "https://wa.me/918924038584?text=Hello%20Tadka!%20I%20would%20like%20to%20place%20an%20order.%20Please%20send%20me%20the%20menu%20and%20details." },
{ text: "Call Us", href: "tel:+918924038584" }
]}
buttonClassName="[&:nth-child(2)]:order-last [&:nth-child(1)]:order-first"
/>
</div>