3 Commits

Author SHA1 Message Date
90f84d1dec Update src/app/page.tsx 2026-03-07 15:48:11 +00:00
19cf21cb49 Update src/app/page.tsx 2026-03-07 15:46:59 +00:00
377d312e52 Update src/app/layout.tsx 2026-03-07 15:46:58 +00:00
2 changed files with 17 additions and 47 deletions

View File

@@ -1,57 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } 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 geistSans = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "GUJARATI RASOI - Authentic Vegetarian Restaurant in Muscat", description: "Experience authentic Gujarati, Punjabi & Jain cuisine at GUJARATI RASOI in Muscat. Pure vegetarian, family-friendly, open daily till 11 PM. Call 7980 2301 to reserve.", keywords: "Gujarati restaurant Muscat, vegetarian restaurant Muscat, Jain food Muscat, authentic Indian cuisine, pure vegetarian dishes", metadataBase: new URL("https://gujarati-rasoi.com"),
alternates: {
canonical: "https://gujarati-rasoi.com"},
openGraph: {
title: "GUJARATI RASOI - Authentic Gujarati Vegetarian Restaurant", description: "Pure vegetarian & Jain authentic cuisine in Muscat. Fresh, flavorful, family-friendly. Reserve your table today!", url: "https://gujarati-rasoi.com", siteName: "GUJARATI RASOI", type: "website", images: [
{
url: "https://gujarati-rasoi.com/og-image.jpg", alt: "Authentic Gujarati Thali"},
],
},
twitter: {
card: "summary_large_image", title: "GUJARATI RASOI - Authentic Vegetarian Restaurant", description: "Experience pure vegetarian & Jain authentic Gujarati cuisine in Muscat.", images: ["https://gujarati-rasoi.com/twitter-image.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -66,13 +66,13 @@ export default function LandingPage() {
],
stats: [
{
title: "Pure Vegetarian", values: ["100%", "100%", "100%"],
title: "Pure Vegetarian", values: [100, 100, 100],
valuePrefix: "", description: "Authentic recipes, no compromise."},
{
title: "Customer Rating", values: ["4.4", "4.5", "4.4"],
title: "Customer Rating", values: [4.4, 4.5, 4.4],
valuePrefix: "", valueSuffix: "★", description: "Rated by 279+ satisfied diners."},
{
title: "Hours", values: ["10:00 AM", "11:00 PM", "10:30 AM"],
title: "Hours", values: [10, 23, 10.5],
valuePrefix: "", description: "Open daily till late evening."},
],
chartTitle: "Customer Favorites", chartData: [
@@ -199,8 +199,8 @@ export default function LandingPage() {
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="Enter your email"
buttonText="Get Reservation Details"
termsText="We'll send you reservation confirmation and special offers. Your information is secure with us."
buttonText="Reserve Now"
termsText="We'll confirm your reservation via email and text message"
/>
</div>