8 Commits

Author SHA1 Message Date
db28006890 Update src/app/page.tsx 2026-03-07 15:50:28 +00:00
0b8536b5ba Update src/app/page.tsx 2026-03-07 15:49:11 +00:00
b62b36a209 Update src/app/layout.tsx 2026-03-07 15:49:10 +00:00
23496e2626 Update src/app/page.tsx 2026-03-07 15:47:01 +00:00
14e98379f0 Update src/app/layout.tsx 2026-03-07 15:47:01 +00:00
c57532d407 Merge version_1 into main
Merge version_1 into main
2026-03-07 15:39:31 +00:00
d3187059eb Merge version_1 into main
Merge version_1 into main
2026-03-07 15:38:14 +00:00
e010a3f7d9 Merge version_1 into main
Merge version_1 into main
2026-03-07 15:36:58 +00:00
2 changed files with 10 additions and 48 deletions

View File

@@ -1,57 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
});
export const metadata: Metadata = { 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"), title: "GUJARATI RASOI - Authentic Vegetarian & Jain Cuisine in Muscat", description: "Experience pure vegetarian and Jain authentic Gujarati, Punjabi & specialty dishes. Fresh, flavorful, and lovingly prepared for your family."};
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,
},
};
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={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -66,13 +66,13 @@ export default function LandingPage() {
], ],
stats: [ stats: [
{ {
title: "Pure Vegetarian", values: ["100%", "100%", "100%"], title: "Pure Vegetarian", values: [100, 100, 100],
valuePrefix: "", description: "Authentic recipes, no compromise."}, 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."}, 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."}, valuePrefix: "", description: "Open daily till late evening."},
], ],
chartTitle: "Customer Favorites", chartData: [ chartTitle: "Customer Favorites", chartData: [
@@ -113,7 +113,7 @@ export default function LandingPage() {
<div id="menu" data-section="menu"> <div id="menu" data-section="menu">
<ProductCardFour <ProductCardFour
title="Menu Highlights" title="Menu Highlights"
description="Discover our most beloved dishes, carefully selected from our full vegetarian menu." description="Discover our most beloved dishes from 279+ customer reviews with a 4.4★ rating. Carefully selected from our full vegetarian menu, each dish is prepared with authentic recipes and the freshest ingredients to ensure your complete satisfaction."
tag="Popular Dishes" tag="Popular Dishes"
tagIcon={ChefHat} tagIcon={ChefHat}
tagAnimation="slide-up" tagAnimation="slide-up"