5 Commits

Author SHA1 Message Date
ca62d811e8 Update src/app/page.tsx 2026-03-05 17:05:43 +00:00
5096dc1aa3 Update src/app/layout.tsx 2026-03-05 17:05:43 +00:00
90f54a0b82 Merge version_1 into main
Merge version_1 into main
2026-03-05 17:04:34 +00:00
a2d042a5b0 Merge version_1 into main
Merge version_1 into main
2026-03-05 17:03:44 +00:00
2c1bc909a8 Merge version_1 into main
Merge version_1 into main
2026-03-05 17:02:33 +00:00
2 changed files with 13 additions and 43 deletions

View File

@@ -1,54 +1,25 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Libre_Baskerville } from "next/font/google"; import localFont from "next/font/local";
import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const libreBaskerville = Libre_Baskerville({ const geistSans = localFont({
variable: "--font-libre-baskerville", subsets: ["latin"], src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"});
weight: ["400", "700"], const geistMono = localFont({
}); src: "./fonts/GeistMonoVF.woff2", variable: "--font-geist-mono", weight: "100 900"});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = { 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"), title: "Masala Kitchen - Authentic Indian & Chinese Cuisine", description: "Experience authentic Indian delicacies and delicious Chinese cuisine prepared with the finest ingredients and traditional recipes."};
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
}
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1416,7 +1387,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

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