Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -120,14 +120,14 @@ export default function GalleryPage() {
|
||||
id: "gal-6",
|
||||
name: "Tandoori Naan",
|
||||
price: "₹40",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-assortment-nutritious-roti_23-2149033975.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-assortment-nutritious-roti_23-2149033975.jpg?_wi=2",
|
||||
imageAlt: "Fresh Tandoori Naan",
|
||||
},
|
||||
{
|
||||
id: "gal-7",
|
||||
name: "Biryani",
|
||||
price: "₹280",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-cooked-rice-along-with-seasonings-dark-surface-food-dish-photo-meal_140725-82227.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-cooked-rice-along-with-seasonings-dark-surface-food-dish-photo-meal_140725-82227.jpg?_wi=2",
|
||||
imageAlt: "Authentic Biryani",
|
||||
},
|
||||
{
|
||||
@@ -141,7 +141,7 @@ export default function GalleryPage() {
|
||||
id: "gal-9",
|
||||
name: "Paneer Tikka Masala",
|
||||
price: "₹320",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pakistani-dish-arrangement-view_23-2148825114.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pakistani-dish-arrangement-view_23-2148825114.jpg?_wi=2",
|
||||
imageAlt: "North Indian Paneer",
|
||||
},
|
||||
]}
|
||||
@@ -162,7 +162,7 @@ export default function GalleryPage() {
|
||||
handle: "@rajesh_food_lover",
|
||||
testimonial: "The food was absolutely delicious, and the service was excellent. The biryani is the best I've had in Medchal. Highly recommended!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-prosperous-businesswoman-elegant-grey-formal-clothes-gazes-happily-aside-wears-transparent-glasses-feels-successful-lead-new-project-accomplished-business-affairs_273609-43206.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-prosperous-businesswoman-elegant-grey-formal-clothes-gazes-happily-aside-wears-transparent-glasses-feels-successful-lead-new-project-accomplished-business-affairs_273609-43206.jpg?_wi=3",
|
||||
imageAlt: "Rajesh Kumar",
|
||||
icon: "Star",
|
||||
},
|
||||
@@ -172,7 +172,7 @@ export default function GalleryPage() {
|
||||
handle: "@priya.dines",
|
||||
testimonial: "Very tasty and quality food. Price was very reasonable. Our family visits every weekend. Great ambience and friendly staff!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-showing-ok-sign_23-2148990150.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-showing-ok-sign_23-2148990150.jpg?_wi=2",
|
||||
imageAlt: "Priya Sharma",
|
||||
icon: "Star",
|
||||
},
|
||||
@@ -182,7 +182,7 @@ export default function GalleryPage() {
|
||||
handle: "@vikram_medchal",
|
||||
testimonial: "Good ambience and friendly staff. The portions are generous and the flavors are authentic. Perfect place for family dinners.",
|
||||
rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-smiling-hipster-model-sexy-unshaven-man-dressed-sweater-jeans-clothes-fashion-male-posing-near-blue-wall-studiolooking-camera_158538-26862.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-smiling-hipster-model-sexy-unshaven-man-dressed-sweater-jeans-clothes-fashion-male-posing-near-blue-wall-studiolooking-camera_158538-26862.jpg?_wi=3",
|
||||
imageAlt: "Vikram Reddy",
|
||||
icon: "Star",
|
||||
},
|
||||
@@ -192,7 +192,7 @@ export default function GalleryPage() {
|
||||
handle: "@patel_family_fun",
|
||||
testimonial: "Kids love the food, and parents appreciate the value. We've been coming here for 2 years. Consistent quality every time!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mother-love-elementary-positive-together_1262-2824.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mother-love-elementary-positive-together_1262-2824.jpg?_wi=2",
|
||||
imageAlt: "The Patel Family",
|
||||
icon: "Star",
|
||||
},
|
||||
|
||||
@@ -1,29 +1,71 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { DM_Sans } 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";
|
||||
import { DM_Sans } 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"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Dhana Paani | Best Family Restaurant & Dhaba in Medchal",
|
||||
description: "Authentic dhaba-style cuisine in Medchal. 4.5★ rated family restaurant with biryani, north Indian dishes, vegetarian options. Order online, call, or visit today.",
|
||||
keywords: "best restaurant in Medchal, family restaurant near Medchal, dhaba near Medchal Hyderabad, best biryani near Medchal, affordable family dining, Dhana Paani restaurant",
|
||||
metadataBase: new URL("https://dhanapaani.com"),
|
||||
alternates: {
|
||||
canonical: "https://dhanapaani.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Dhana Paani Family Restaurant & Dhaba - Medchal",
|
||||
description: "Experience authentic dhaba-style cuisine in warm, welcoming ambience. ₹200-₹400 per person. Free parking. Call +91 96766 71459.",
|
||||
url: "https://dhanapaani.com",
|
||||
siteName: "Dhana Paani Family Restaurant & Dhaba",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://dhanapaani.com/og-image-biryani.jpg",
|
||||
alt: "Dhana Paani Biryani",
|
||||
},
|
||||
{
|
||||
url: "https://dhanapaani.com/og-image-restaurant.jpg",
|
||||
alt: "Dhana Paani Family Restaurant",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Dhana Paani Family Restaurant",
|
||||
description: "Best family restaurant in Medchal. Authentic biryani & north Indian cuisine. 4.5★ rated.",
|
||||
images: ["https://dhanapaani.com/og-image-biryani.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -32,7 +74,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -44,4 +88,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -57,7 +57,7 @@ export default function MenuPage() {
|
||||
name: "Hyderabadi Biryani",
|
||||
price: "₹220-350",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/top-view-cooked-rice-along-with-seasonings-dark-surface-food-dish-photo-meal_140725-82227.jpg",
|
||||
"http://img.b2bpic.net/free-photo/top-view-cooked-rice-along-with-seasonings-dark-surface-food-dish-photo-meal_140725-82227.jpg?_wi=1",
|
||||
imageAlt: "Authentic Biryani",
|
||||
},
|
||||
{
|
||||
@@ -65,7 +65,7 @@ export default function MenuPage() {
|
||||
name: "Paneer Tikka Masala",
|
||||
price: "₹280",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/pakistani-dish-arrangement-view_23-2148825114.jpg",
|
||||
"http://img.b2bpic.net/free-photo/pakistani-dish-arrangement-view_23-2148825114.jpg?_wi=1",
|
||||
imageAlt: "North Indian Paneer",
|
||||
},
|
||||
{
|
||||
@@ -97,7 +97,7 @@ export default function MenuPage() {
|
||||
name: "Tandoori Naan",
|
||||
price: "₹40-60",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/delicious-assortment-nutritious-roti_23-2149033975.jpg",
|
||||
"http://img.b2bpic.net/free-photo/delicious-assortment-nutritious-roti_23-2149033975.jpg?_wi=1",
|
||||
imageAlt: "Fresh Tandoori Naan",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -198,7 +198,7 @@ export default function HomePage() {
|
||||
"The food was absolutely delicious, and the service was excellent. The biryani is the best I've had in Medchal. Highly recommended!",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/cheerful-prosperous-businesswoman-elegant-grey-formal-clothes-gazes-happily-aside-wears-transparent-glasses-feels-successful-lead-new-project-accomplished-business-affairs_273609-43206.jpg",
|
||||
"http://img.b2bpic.net/free-photo/cheerful-prosperous-businesswoman-elegant-grey-formal-clothes-gazes-happily-aside-wears-transparent-glasses-feels-successful-lead-new-project-accomplished-business-affairs_273609-43206.jpg?_wi=1",
|
||||
imageAlt: "Rajesh Kumar",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -210,7 +210,7 @@ export default function HomePage() {
|
||||
"Very tasty and quality food. Price was very reasonable. Our family visits every weekend. Great ambience and friendly staff!",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/woman-showing-ok-sign_23-2148990150.jpg",
|
||||
"http://img.b2bpic.net/free-photo/woman-showing-ok-sign_23-2148990150.jpg?_wi=1",
|
||||
imageAlt: "Priya Sharma",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -222,7 +222,7 @@ export default function HomePage() {
|
||||
"Good ambience and friendly staff. The portions are generous and the flavors are authentic. Perfect place for family dinners.",
|
||||
rating: 4,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/handsome-smiling-hipster-model-sexy-unshaven-man-dressed-sweater-jeans-clothes-fashion-male-posing-near-blue-wall-studiolooking-camera_158538-26862.jpg",
|
||||
"http://img.b2bpic.net/free-photo/handsome-smiling-hipster-model-sexy-unshaven-man-dressed-sweater-jeans-clothes-fashion-male-posing-near-blue-wall-studiolooking-camera_158538-26862.jpg?_wi=1",
|
||||
imageAlt: "Vikram Reddy",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -234,7 +234,7 @@ export default function HomePage() {
|
||||
"Kids love the food, and parents appreciate the value. We've been coming here for 2 years. Consistent quality every time!",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/mother-love-elementary-positive-together_1262-2824.jpg",
|
||||
"http://img.b2bpic.net/free-photo/mother-love-elementary-positive-together_1262-2824.jpg?_wi=1",
|
||||
imageAlt: "The Patel Family",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -246,7 +246,7 @@ export default function HomePage() {
|
||||
"Authentic north Indian and Telangana cuisine. The dal makhani and tandoori items are superb. Worth every rupee!",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/cheerful-prosperous-businesswoman-elegant-grey-formal-clothes-gazes-happily-aside-wears-transparent-glasses-feels-successful-lead-new-project-accomplished-business-affairs_273609-43206.jpg",
|
||||
"http://img.b2bpic.net/free-photo/cheerful-prosperous-businesswoman-elegant-grey-formal-clothes-gazes-happily-aside-wears-transparent-glasses-feels-successful-lead-new-project-accomplished-business-affairs_273609-43206.jpg?_wi=2",
|
||||
imageAlt: "Anita Verma",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -258,7 +258,7 @@ export default function HomePage() {
|
||||
"Stopped by during a road trip. Amazing food at honest prices. The hospitality made us feel like family. Will definitely visit again!",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/handsome-smiling-hipster-model-sexy-unshaven-man-dressed-sweater-jeans-clothes-fashion-male-posing-near-blue-wall-studiolooking-camera_158538-26862.jpg",
|
||||
"http://img.b2bpic.net/free-photo/handsome-smiling-hipster-model-sexy-unshaven-man-dressed-sweater-jeans-clothes-fashion-male-posing-near-blue-wall-studiolooking-camera_158538-26862.jpg?_wi=2",
|
||||
imageAlt: "Suresh Rao",
|
||||
icon: Star,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user