Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 17:05:48 +00:00
2 changed files with 13 additions and 43 deletions

View File

@@ -1,54 +1,25 @@
import type { Metadata } from "next";
import { Libre_Baskerville } from "next/font/google";
import { Inter } from "next/font/google";
import localFont from "next/font/local";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville", subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const geistSans = localFont({
src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"});
const geistMono = localFont({
src: "./fonts/GeistMonoVF.woff2", variable: "--font-geist-mono", weight: "100 900"});
export const metadata: Metadata = {
title: "Masala Kitchen - Authentic Indian & Chinese Cuisine", description: "Experience authentic Indian and Chinese food at Masala Kitchen. Premium vegetarian, non-vegetarian dishes and Asian specialties. Order online or visit us today!", keywords: "Indian restaurant, Chinese food, Indian cuisine, vegetarian, non-vegetarian, biryani, butter chicken, chow mein, authentic flavors", metadataBase: new URL("https://maslakitchen.com"),
alternates: {
canonical: "https://maslakitchen.com"
},
openGraph: {
title: "Masala Kitchen - Authentic Indian & Chinese Restaurant", description: "Taste authentic Indian delicacies and delicious Chinese cuisine prepared with finest ingredients. Order online or make a reservation.", url: "https://maslakitchen.com", siteName: "Masala Kitchen", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/indian-butter-chicken-black-bowl-wooden-table_123827-20634.jpg", alt: "Masala Kitchen - Authentic Indian & Chinese Food"
}
]
},
twitter: {
card: "summary_large_image", title: "Masala Kitchen - Indian & Chinese Food", description: "Experience authentic flavors with our premium Indian and Chinese cuisine.", images: ["http://img.b2bpic.net/free-photo/indian-butter-chicken-black-bowl-wooden-table_123827-20634.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Masala Kitchen - Authentic Indian & Chinese Cuisine", description: "Experience authentic Indian delicacies and delicious Chinese cuisine prepared with the finest ingredients and traditional recipes."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1387,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -61,7 +61,7 @@ export default function LandingPage() {
]}
buttons={[
{ text: "View Menu", href: "#menu" },
{ text: "Order Online", href: "#contact" }
{ text: "Reserve a Table", href: "#contact" }
]}
buttonAnimation="slide-up"
carouselPosition="right"