Merge version_1 into main #1

Merged
bender merged 6 commits from version_1 into main 2026-03-16 05:05:30 +00:00
6 changed files with 78 additions and 39 deletions

View File

@@ -99,28 +99,28 @@ export default function AboutPage() {
id: 1,
title: "Famous Jaipur Landmark",
description: "Recognized as one of Jaipur's most iconic food destinations, featured in local guides and travel recommendations",
imageSrc: "http://img.b2bpic.net/free-photo/woman-talking-bartender_23-2147680669.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/woman-talking-bartender_23-2147680669.jpg?_wi=2",
imageAlt: "traditional indian food shop storefront",
},
{
id: 2,
title: "Thousands of Happy Customers",
description: "Trusted by locals and tourists alike for authentic taste and consistent quality across decades",
imageSrc: "http://img.b2bpic.net/free-photo/friends-arab-restaurant_23-2147794258.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/friends-arab-restaurant_23-2147794258.jpg?_wi=3",
imageAlt: "happy customers eating indian food together",
},
{
id: 3,
title: "Authentic Recipes",
description: "Traditional Rajasthani recipes passed down through generations, keeping the authentic flavors intact",
imageSrc: "http://img.b2bpic.net/free-photo/mexican-food_23-2148024714.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mexican-food_23-2148024714.jpg?_wi=2",
imageAlt: "traditional food preparation recipes cooking",
},
{
id: 4,
title: "Fresh Daily Preparation",
description: "All items prepared fresh daily using quality ingredients without artificial preservatives",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-eating-fresh-cheese_23-2150267639.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-eating-fresh-cheese_23-2150267639.jpg?_wi=2",
imageAlt: "fresh food preparation daily ingredients",
},
]}

View File

@@ -94,7 +94,7 @@ export default function ContactPage() {
]}
buttonAnimation="slide-up"
background={{ variant: "aurora" }}
imageSrc="http://img.b2bpic.net/free-photo/woman-talking-bartender_23-2147680669.jpg"
imageSrc="http://img.b2bpic.net/free-photo/woman-talking-bartender_23-2147680669.jpg?_wi=3"
imageAlt="Contact us at Rawat Misthan Bhandar"
mediaAnimation="slide-up"
frameStyle="card"

View File

@@ -100,42 +100,42 @@ export default function GalleryPage() {
id: "pyaaz-kachori",
name: "Pyaaz Kachori",
price: "₹50",
imageSrc: "http://img.b2bpic.net/free-photo/homemade-apple-strudel_123827-36356.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/homemade-apple-strudel_123827-36356.jpg?_wi=4",
imageAlt: "Golden crispy Pyaaz Kachori filled with spiced onions",
},
{
id: "mawa-kachori",
name: "Mawa Kachori",
price: "₹60",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-little-delicious-cakes-inside-plate-dark-surface-pie-biscuit-cake-sweet-tea-sugar-cookie_140725-118222.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-little-delicious-cakes-inside-plate-dark-surface-pie-biscuit-cake-sweet-tea-sugar-cookie_140725-118222.jpg?_wi=4",
imageAlt: "Mawa Kachori with khoya filling and sugar syrup",
},
{
id: "mirchi-vada",
name: "Mirchi Vada",
price: "₹40",
imageSrc: "http://img.b2bpic.net/free-psd/delicious-zucchini-fritters-with-creamy-dipping-sauce_84443-77735.jpg",
imageSrc: "http://img.b2bpic.net/free-psd/delicious-zucchini-fritters-with-creamy-dipping-sauce_84443-77735.jpg?_wi=3",
imageAlt: "Crispy fried green chili fritters",
},
{
id: "ghewar",
name: "Ghewar",
price: "₹120",
imageSrc: "http://img.b2bpic.net/free-photo/slice-honey-cake-with-butter-cookies-waffles_114579-14809.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/slice-honey-cake-with-butter-cookies-waffles_114579-14809.jpg?_wi=3",
imageAlt: "Traditional Rajasthani Ghewar sweet with dry fruits",
},
{
id: "jalebi",
name: "Jalebi",
price: "₹30",
imageSrc: "http://img.b2bpic.net/free-photo/chips-with-fried-dushbara_140725-6086.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/chips-with-fried-dushbara_140725-6086.jpg?_wi=3",
imageAlt: "Bright orange spirals of Jalebi in sugar syrup",
},
{
id: "lassi",
name: "Traditional Lassi",
price: "₹35",
imageSrc: "http://img.b2bpic.net/free-photo/glass-rice-milk-with-rice-plant-rice-seed-put-dark-floor_1150-34534.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/glass-rice-milk-with-rice-plant-rice-seed-put-dark-floor_1150-34534.jpg?_wi=4",
imageAlt: "Creamy fresh lassi in traditional glass",
},
]}

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Manrope } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Rawat Misthan Bhandar - Famous Kachori in Jaipur",
description: "Authentic Rajasthani snacks and sweets since decades. Famous Pyaaz Kachori, Mawa Kachori, Ghewar. Order online or visit near Sindhi Camp.",
keywords: "best kachori in Jaipur, Pyaaz Kachori, Mawa Kachori, Rajasthani sweets, Sindhi Camp food, Jaipur breakfast",
metadataBase: new URL("https://rawatmishthan.com"),
alternates: {
canonical: "https://rawatmishthan.com",
},
openGraph: {
title: "Rawat Misthan Bhandar - Jaipur's Famous Kachori",
description: "Experience authentic Rajasthani cuisine at Jaipur's most trusted food destination",
url: "https://rawatmishthan.com",
siteName: "Rawat Misthan Bhandar",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/top-view-fried-cutlets-with-cooked-rice-seasonings-dark-surface-dish-meat_140725-82474.jpg",
alt: "Rawat Misthan Bhandar - Famous Pyaaz Kachori",
},
],
},
twitter: {
card: "summary_large_image",
title: "Rawat Misthan Bhandar - Famous Kachori in Jaipur",
description: "Authentic Rajasthani snacks loved by locals and tourists",
images: ["http://img.b2bpic.net/free-photo/top-view-fried-cutlets-with-cooked-rice-seasonings-dark-surface-dish-meat_140725-82474.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -97,42 +97,42 @@ export default function MenuPage() {
id: "pyaaz-kachori",
name: "Pyaaz Kachori",
price: "₹50",
imageSrc: "http://img.b2bpic.net/free-photo/homemade-apple-strudel_123827-36356.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/homemade-apple-strudel_123827-36356.jpg?_wi=2",
imageAlt: "Golden crispy Pyaaz Kachori filled with spiced onions",
},
{
id: "mawa-kachori",
name: "Mawa Kachori",
price: "₹60",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-little-delicious-cakes-inside-plate-dark-surface-pie-biscuit-cake-sweet-tea-sugar-cookie_140725-118222.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-little-delicious-cakes-inside-plate-dark-surface-pie-biscuit-cake-sweet-tea-sugar-cookie_140725-118222.jpg?_wi=2",
imageAlt: "Mawa Kachori with khoya filling and sugar syrup",
},
{
id: "mirchi-vada",
name: "Mirchi Vada",
price: "₹40",
imageSrc: "http://img.b2bpic.net/free-psd/delicious-zucchini-fritters-with-creamy-dipping-sauce_84443-77735.jpg",
imageSrc: "http://img.b2bpic.net/free-psd/delicious-zucchini-fritters-with-creamy-dipping-sauce_84443-77735.jpg?_wi=2",
imageAlt: "Crispy fried green chili fritters",
},
{
id: "ghewar",
name: "Ghewar",
price: "₹120",
imageSrc: "http://img.b2bpic.net/free-photo/slice-honey-cake-with-butter-cookies-waffles_114579-14809.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/slice-honey-cake-with-butter-cookies-waffles_114579-14809.jpg?_wi=2",
imageAlt: "Traditional Rajasthani Ghewar sweet with dry fruits",
},
{
id: "jalebi",
name: "Jalebi",
price: "₹30",
imageSrc: "http://img.b2bpic.net/free-photo/chips-with-fried-dushbara_140725-6086.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/chips-with-fried-dushbara_140725-6086.jpg?_wi=2",
imageAlt: "Bright orange spirals of Jalebi in sugar syrup",
},
{
id: "lassi",
name: "Traditional Lassi",
price: "₹35",
imageSrc: "http://img.b2bpic.net/free-photo/glass-rice-milk-with-rice-plant-rice-seed-put-dark-floor_1150-34534.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/glass-rice-milk-with-rice-plant-rice-seed-put-dark-floor_1150-34534.jpg?_wi=2",
imageAlt: "Creamy fresh lassi in traditional glass",
},
]}
@@ -156,28 +156,28 @@ export default function MenuPage() {
id: 1,
title: "Savory Snacks",
description: "Crispy, fried, and packed with authentic spices. Our savory options include Pyaaz Kachori, Mirchi Vada, and more traditional favorites.",
imageSrc: "http://img.b2bpic.net/free-photo/homemade-apple-strudel_123827-36356.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/homemade-apple-strudel_123827-36356.jpg?_wi=3",
imageAlt: "Traditional savory snacks variety",
},
{
id: 2,
title: "Sweet Delights",
description: "Indulge in our collection of traditional Rajasthani sweets including Mawa Kachori, Ghewar, and Jalebi made with premium ingredients.",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-little-delicious-cakes-inside-plate-dark-surface-pie-biscuit-cake-sweet-tea-sugar-cookie_140725-118222.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-little-delicious-cakes-inside-plate-dark-surface-pie-biscuit-cake-sweet-tea-sugar-cookie_140725-118222.jpg?_wi=3",
imageAlt: "Sweet traditional Indian desserts",
},
{
id: 3,
title: "Beverages",
description: "Cool off with our refreshing Traditional Lassi and other authentic Rajasthani drinks that perfectly complement your meal.",
imageSrc: "http://img.b2bpic.net/free-photo/glass-rice-milk-with-rice-plant-rice-seed-put-dark-floor_1150-34534.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/glass-rice-milk-with-rice-plant-rice-seed-put-dark-floor_1150-34534.jpg?_wi=3",
imageAlt: "Traditional Indian beverages",
},
{
id: 4,
title: "Bulk Orders & Catering",
description: "Plan an event or party? We offer special bulk orders and catering services for weddings, celebrations, and corporate events.",
imageSrc: "http://img.b2bpic.net/free-photo/friends-arab-restaurant_23-2147794258.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/friends-arab-restaurant_23-2147794258.jpg?_wi=2",
imageAlt: "Group dining and catering service",
},
]}

View File

@@ -117,42 +117,42 @@ export default function HomePage() {
id: "pyaaz-kachori",
name: "Pyaaz Kachori",
price: "₹50",
imageSrc: "http://img.b2bpic.net/free-photo/homemade-apple-strudel_123827-36356.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/homemade-apple-strudel_123827-36356.jpg?_wi=1",
imageAlt: "Golden crispy Pyaaz Kachori filled with spiced onions",
},
{
id: "mawa-kachori",
name: "Mawa Kachori",
price: "₹60",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-little-delicious-cakes-inside-plate-dark-surface-pie-biscuit-cake-sweet-tea-sugar-cookie_140725-118222.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-little-delicious-cakes-inside-plate-dark-surface-pie-biscuit-cake-sweet-tea-sugar-cookie_140725-118222.jpg?_wi=1",
imageAlt: "Mawa Kachori with khoya filling and sugar syrup",
},
{
id: "mirchi-vada",
name: "Mirchi Vada",
price: "₹40",
imageSrc: "http://img.b2bpic.net/free-psd/delicious-zucchini-fritters-with-creamy-dipping-sauce_84443-77735.jpg",
imageSrc: "http://img.b2bpic.net/free-psd/delicious-zucchini-fritters-with-creamy-dipping-sauce_84443-77735.jpg?_wi=1",
imageAlt: "Crispy fried green chili fritters",
},
{
id: "ghewar",
name: "Ghewar",
price: "₹120",
imageSrc: "http://img.b2bpic.net/free-photo/slice-honey-cake-with-butter-cookies-waffles_114579-14809.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/slice-honey-cake-with-butter-cookies-waffles_114579-14809.jpg?_wi=1",
imageAlt: "Traditional Rajasthani Ghewar sweet with dry fruits",
},
{
id: "jalebi",
name: "Jalebi",
price: "₹30",
imageSrc: "http://img.b2bpic.net/free-photo/chips-with-fried-dushbara_140725-6086.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/chips-with-fried-dushbara_140725-6086.jpg?_wi=1",
imageAlt: "Bright orange spirals of Jalebi in sugar syrup",
},
{
id: "lassi",
name: "Traditional Lassi",
price: "₹35",
imageSrc: "http://img.b2bpic.net/free-photo/glass-rice-milk-with-rice-plant-rice-seed-put-dark-floor_1150-34534.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/glass-rice-milk-with-rice-plant-rice-seed-put-dark-floor_1150-34534.jpg?_wi=1",
imageAlt: "Creamy fresh lassi in traditional glass",
},
]}
@@ -176,28 +176,28 @@ export default function HomePage() {
id: 1,
title: "Famous Jaipur Landmark",
description: "Recognized as one of Jaipur's most iconic food destinations, featured in local guides and travel recommendations",
imageSrc: "http://img.b2bpic.net/free-photo/woman-talking-bartender_23-2147680669.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/woman-talking-bartender_23-2147680669.jpg?_wi=1",
imageAlt: "Traditional Indian food shop storefront",
},
{
id: 2,
title: "Thousands of Happy Customers",
description: "Trusted by locals and tourists alike for authentic taste and consistent quality across decades",
imageSrc: "http://img.b2bpic.net/free-photo/friends-arab-restaurant_23-2147794258.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/friends-arab-restaurant_23-2147794258.jpg?_wi=1",
imageAlt: "Happy customers eating Indian food together",
},
{
id: 3,
title: "Authentic Recipes",
description: "Traditional Rajasthani recipes passed down through generations, keeping the authentic flavors intact",
imageSrc: "http://img.b2bpic.net/free-photo/mexican-food_23-2148024714.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mexican-food_23-2148024714.jpg?_wi=1",
imageAlt: "Traditional food preparation recipes cooking",
},
{
id: 4,
title: "Fresh Daily Preparation",
description: "All items prepared fresh daily using quality ingredients without artificial preservatives",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-eating-fresh-cheese_23-2150267639.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-eating-fresh-cheese_23-2150267639.jpg?_wi=1",
imageAlt: "Fresh food preparation daily ingredients",
},
]}