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 15 additions and 7 deletions

View File

@@ -1,11 +1,17 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
const geistSans = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
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."};
title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
@@ -14,7 +20,9 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.className}>{children}
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `

View File

@@ -113,7 +113,7 @@ export default function LandingPage() {
<div id="menu" data-section="menu">
<ProductCardFour
title="Menu Highlights"
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."
description="Discover our most beloved dishes, carefully selected from our full vegetarian menu."
tag="Popular Dishes"
tagIcon={ChefHat}
tagAnimation="slide-up"
@@ -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>