20 Commits

Author SHA1 Message Date
d3e26c1bea Merge version_4 into main
Merge version_4 into main
2026-03-07 16:09:01 +00:00
dc4ab81b4b Update src/app/page.tsx 2026-03-07 16:08:57 +00:00
f21ed0689b Update src/app/layout.tsx 2026-03-07 16:08:56 +00:00
233eea809e Merge version_3 into main
Merge version_3 into main
2026-03-07 15:50:33 +00:00
db28006890 Update src/app/page.tsx 2026-03-07 15:50:28 +00:00
8373015a23 Merge version_3 into main
Merge version_3 into main
2026-03-07 15:49:15 +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
f60265de9b Switch to version 1: modified src/app/page.tsx 2026-03-07 15:48:37 +00:00
0099ccf1f0 Switch to version 1: modified src/app/layout.tsx 2026-03-07 15:48:36 +00:00
e6b723c499 Merge version_2 into main
Merge version_2 into main
2026-03-07 15:48:16 +00:00
90f84d1dec Update src/app/page.tsx 2026-03-07 15:48:11 +00:00
0a3d98f3a8 Merge version_2 into main
Merge version_2 into main
2026-03-07 15:47:03 +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
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
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 12 additions and 50 deletions

View File

@@ -1,57 +1,20 @@
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 "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const halant = Halant({
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"],
});
const inter = Inter({ 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: "GUJARATI RASOI - Authentic Vegetarian & Jain Cuisine in Muscat", description: "Experience pure vegetarian and Jain authentic Gujarati, Punjabi & specialty dishes in Muscat. Fresh, flavorful, and lovingly prepared for your family."};
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={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -49,8 +49,8 @@ export default function LandingPage() {
tagAnimation="slide-up"
background={{ variant: "radial-gradient" }}
buttons={[
{ text: "Call Now: 7980 2301", href: "tel:+96879802301" },
{ text: "Reserve a Table", href: "#contact" },
{ text: "Call Now: 7980 2301", href: "tel:+96879802301" },
]}
buttonAnimation="slide-up"
dashboard={{
@@ -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: [
@@ -113,7 +113,7 @@ export default function LandingPage() {
<div id="menu" data-section="menu">
<ProductCardFour
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"
tagIcon={ChefHat}
tagAnimation="slide-up"