Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2de740e522 | |||
| 5c44b1d6f8 | |||
| a219213eab | |||
| f657b6d09c | |||
| 34b26dba66 | |||
| 951741ff2b | |||
| 2688b66f1d | |||
| 3507c88baf | |||
| 7494986d6f | |||
| 35dee43959 | |||
| dcd1886de4 | |||
| 61409d7a6f | |||
| e3553a2750 |
@@ -7,57 +7,42 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const halant = Halant({
|
const halant = Halant({
|
||||||
variable: "--font-halant",
|
variable: "--font-halant", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
weight: ["300", "400", "500", "600", "700"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const inter = Inter({
|
||||||
variable: "--font-inter",
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const poppins = Poppins({
|
const poppins = Poppins({
|
||||||
variable: "--font-poppins",
|
variable: "--font-poppins", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "The Ora Cafe - Bhilwara's Premier Rooftop Cafe & Restaurant",
|
title: "The Ora Cafe - Bhilwara's Premier Rooftop Cafe & Restaurant", description: "Discover The Ora Cafe in Bhilwara - your favorite rooftop hangout with delicious fusion food, cozy vibes, and Instagram-worthy ambience. Reserve a table today.", keywords: "cafe in Bhilwara, best cafe Bhilwara, rooftop cafe, restaurant Bhilwara, hangout place Bhilwara, The Ora Cafe", metadataBase: new URL("https://theoracafe.com"),
|
||||||
description: "Discover The Ora Cafe in Bhilwara - your favorite rooftop hangout with delicious fusion food, cozy vibes, and Instagram-worthy ambience. Reserve a table today.",
|
|
||||||
keywords: "cafe in Bhilwara, best cafe Bhilwara, rooftop cafe, restaurant Bhilwara, hangout place Bhilwara, The Ora Cafe",
|
|
||||||
metadataBase: new URL("https://theoracafe.com"),
|
|
||||||
alternates: {
|
alternates: {
|
||||||
canonical: "https://theoracafe.com",
|
canonical: "https://theoracafe.com"
|
||||||
},
|
},
|
||||||
openGraph: {
|
openGraph: {
|
||||||
title: "The Ora Cafe - Bhilwara's Favorite Rooftop Cafe",
|
title: "The Ora Cafe - Bhilwara's Favorite Rooftop Cafe", description: "Experience premium dining at The Ora Cafe. Rooftop seating, creative fusion food, and the perfect vibe for friends and family.", url: "https://theoracafe.com", siteName: "The Ora Cafe", type: "website", images: [
|
||||||
description: "Experience premium dining at The Ora Cafe. Rooftop seating, creative fusion food, and the perfect vibe for friends and family.",
|
|
||||||
url: "https://theoracafe.com",
|
|
||||||
siteName: "The Ora Cafe",
|
|
||||||
type: "website",
|
|
||||||
images: [
|
|
||||||
{
|
{
|
||||||
url: "http://img.b2bpic.net/free-photo/friends-having-nice-barbeque-together_23-2149271952.jpg",
|
url: "http://img.b2bpic.net/free-photo/friends-having-nice-barbeque-together_23-2149271952.jpg", alt: "The Ora Cafe rooftop dining experience"
|
||||||
alt: "The Ora Cafe rooftop dining experience",
|
}
|
||||||
},
|
]
|
||||||
],
|
|
||||||
},
|
},
|
||||||
twitter: {
|
twitter: {
|
||||||
card: "summary_large_image",
|
card: "summary_large_image", title: "The Ora Cafe - Rooftop Dining in Bhilwara", description: "Join us for an unforgettable rooftop dining experience. Book your table now!", images: ["http://img.b2bpic.net/free-photo/friends-having-nice-barbeque-together_23-2149271952.jpg"]
|
||||||
title: "The Ora Cafe - Rooftop Dining in Bhilwara",
|
|
||||||
description: "Join us for an unforgettable rooftop dining experience. Book your table now!",
|
|
||||||
images: ["http://img.b2bpic.net/free-photo/friends-having-nice-barbeque-together_23-2149271952.jpg"],
|
|
||||||
},
|
},
|
||||||
robots: {
|
robots: {
|
||||||
index: true,
|
index: true,
|
||||||
follow: true,
|
follow: true
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children
|
||||||
}: Readonly<{
|
}: Readonly<{
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}>) {
|
||||||
|
|||||||
186
src/app/page.tsx
186
src/app/page.tsx
@@ -48,8 +48,7 @@ export default function HomePage() {
|
|||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Reserve Table",
|
text: "Reserve Table", href: "#contact"
|
||||||
href: "#contact",
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -61,12 +60,10 @@ export default function HomePage() {
|
|||||||
description="Bhilwara's Favorite Rooftop Cafe Experience. Enjoy delicious food, cozy vibes, and the perfect place to hang out with friends and family."
|
description="Bhilwara's Favorite Rooftop Cafe Experience. Enjoy delicious food, cozy vibes, and the perfect place to hang out with friends and family."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Call Now",
|
text: "Reserve Now", href: "#contact"
|
||||||
href: "tel:+919460351156",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "View Menu",
|
text: "Call Now", href: "tel:+919460351156"
|
||||||
href: "/menu",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/friends-having-nice-barbeque-together_23-2149271952.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/friends-having-nice-barbeque-together_23-2149271952.jpg"
|
||||||
@@ -85,66 +82,50 @@ export default function HomePage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 1,
|
||||||
title: "Rooftop Ambience",
|
title: "Rooftop Ambience", description:
|
||||||
description:
|
"Beautiful rooftop seating with warm lighting and panoramic views of Bhilwara's skyline", phoneOne: {
|
||||||
"Beautiful rooftop seating with warm lighting and panoramic views of Bhilwara's skyline",
|
|
||||||
phoneOne: {
|
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/young-woman-using-phone-outside-night-street_1303-17020.jpg",
|
"http://img.b2bpic.net/free-photo/young-woman-using-phone-outside-night-street_1303-17020.jpg", imageAlt: "Rooftop ambience with beautiful lighting"
|
||||||
imageAlt: "Rooftop ambience with beautiful lighting",
|
|
||||||
},
|
},
|
||||||
phoneTwo: {
|
phoneTwo: {
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/guy-brought-order-friends-have-meeting-evening-nice-outside-restaurant_146671-14492.jpg",
|
"http://img.b2bpic.net/free-photo/guy-brought-order-friends-have-meeting-evening-nice-outside-restaurant_146671-14492.jpg", imageAlt: "Rooftop seating at night"
|
||||||
imageAlt: "Rooftop seating at night",
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 2,
|
id: 2,
|
||||||
title: "Perfect Hangout Spot",
|
title: "Perfect Hangout Spot", description:
|
||||||
description:
|
"Ideal for friends gathering, casual meetups, dates, and family celebrations with cozy seating", phoneOne: {
|
||||||
"Ideal for friends gathering, casual meetups, dates, and family celebrations with cozy seating",
|
|
||||||
phoneOne: {
|
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/positive-young-women-smiling-dinner-party_23-2148454161.jpg",
|
"http://img.b2bpic.net/free-photo/positive-young-women-smiling-dinner-party_23-2148454161.jpg", imageAlt: "Friends hanging out at cafe"
|
||||||
imageAlt: "Friends hanging out at cafe",
|
|
||||||
},
|
},
|
||||||
phoneTwo: {
|
phoneTwo: {
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/roommates-sharing-meal-together_23-2149112123.jpg",
|
"http://img.b2bpic.net/free-photo/roommates-sharing-meal-together_23-2149112123.jpg", imageAlt: "Friends dining together"
|
||||||
imageAlt: "Friends dining together",
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 3,
|
id: 3,
|
||||||
title: "Creative Food",
|
title: "Creative Food", description:
|
||||||
description:
|
"Delicious Indian fusion dishes and cafe favorites crafted by our talented culinary team", phoneOne: {
|
||||||
"Delicious Indian fusion dishes and cafe favorites crafted by our talented culinary team",
|
|
||||||
phoneOne: {
|
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/top-view-dessert-sweet-baked-pumpkin-with-nuts-cream_141793-4312.jpg?_wi=1",
|
"http://img.b2bpic.net/free-photo/top-view-dessert-sweet-baked-pumpkin-with-nuts-cream_141793-4312.jpg?_wi=1", imageAlt: "Creative food plating"
|
||||||
imageAlt: "Creative food plating",
|
|
||||||
},
|
},
|
||||||
phoneTwo: {
|
phoneTwo: {
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/eggplant-dolma-with-tomato-belly-pepper_140725-4615.jpg?_wi=1",
|
"http://img.b2bpic.net/free-photo/eggplant-dolma-with-tomato-belly-pepper_140725-4615.jpg?_wi=1", imageAlt: "Fusion dishes"
|
||||||
imageAlt: "Fusion dishes",
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 4,
|
id: 4,
|
||||||
title: "Instagram-Worthy",
|
title: "Instagram-Worthy", description:
|
||||||
description:
|
"A photogenic cafe loved by social media users with stunning backdrops and beautiful plating", phoneOne: {
|
||||||
"A photogenic cafe loved by social media users with stunning backdrops and beautiful plating",
|
|
||||||
phoneOne: {
|
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/close-up-food-lover-taking-pictures-meal_23-2149286401.jpg",
|
"http://img.b2bpic.net/free-photo/close-up-food-lover-taking-pictures-meal_23-2149286401.jpg", imageAlt: "Instagram worthy food photography"
|
||||||
imageAlt: "Instagram worthy food photography",
|
|
||||||
},
|
},
|
||||||
phoneTwo: {
|
phoneTwo: {
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/close-up-hands-taking-photos-with-phone_23-2149250092.jpg",
|
"http://img.b2bpic.net/free-photo/close-up-hands-taking-photos-with-phone_23-2149250092.jpg", imageAlt: "Social media food photography"
|
||||||
imageAlt: "Social media food photography",
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -163,36 +144,20 @@ export default function HomePage() {
|
|||||||
tag="Menu Favorites"
|
tag="Menu Favorites"
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Chur Chur Naan", price: "₹180", imageSrc:
|
||||||
name: "Chur Chur Naan",
|
"http://img.b2bpic.net/free-photo/delicious-composition-traditional-roti_23-2149034026.jpg?_wi=1", imageAlt: "Crispy Chur Chur Naan"
|
||||||
price: "₹180",
|
|
||||||
imageSrc:
|
|
||||||
"http://img.b2bpic.net/free-photo/delicious-composition-traditional-roti_23-2149034026.jpg?_wi=1",
|
|
||||||
imageAlt: "Crispy Chur Chur Naan",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Cold Coffee", price: "₹150", imageSrc:
|
||||||
name: "Cold Coffee",
|
"http://img.b2bpic.net/free-photo/delicious-iced-coffee-table-beans_23-2149600676.jpg?_wi=1", imageAlt: "Refreshing Cold Coffee"
|
||||||
price: "₹150",
|
|
||||||
imageSrc:
|
|
||||||
"http://img.b2bpic.net/free-photo/delicious-iced-coffee-table-beans_23-2149600676.jpg?_wi=1",
|
|
||||||
imageAlt: "Refreshing Cold Coffee",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Pizza", price: "₹250", imageSrc:
|
||||||
name: "Pizza",
|
"http://img.b2bpic.net/free-photo/mixed-pizza-with-sausages-tomato_140725-3789.jpg?_wi=1", imageAlt: "Wood-fired Pizza"
|
||||||
price: "₹250",
|
|
||||||
imageSrc:
|
|
||||||
"http://img.b2bpic.net/free-photo/mixed-pizza-with-sausages-tomato_140725-3789.jpg?_wi=1",
|
|
||||||
imageAlt: "Wood-fired Pizza",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Cigar Rolls", price: "₹120", imageSrc:
|
||||||
name: "Cigar Rolls",
|
"http://img.b2bpic.net/free-photo/egg-roll-fried-spring-rolls-white-plate-thai-food-top-view_1150-21489.jpg?_wi=1", imageAlt: "Crispy Cigar Rolls"
|
||||||
price: "₹120",
|
|
||||||
imageSrc:
|
|
||||||
"http://img.b2bpic.net/free-photo/egg-roll-fried-spring-rolls-white-plate-thai-food-top-view_1150-21489.jpg?_wi=1",
|
|
||||||
imageAlt: "Crispy Cigar Rolls",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
gridVariant="four-items-2x2-equal-grid"
|
gridVariant="four-items-2x2-equal-grid"
|
||||||
@@ -201,8 +166,7 @@ export default function HomePage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "View Full Menu",
|
text: "Order Now", href: "#contact"
|
||||||
href: "/menu",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -231,64 +195,34 @@ export default function HomePage() {
|
|||||||
tag="Visual Stories"
|
tag="Visual Stories"
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Food Plating", role: "Culinary Art", company: "The Ora Cafe", rating: 5,
|
||||||
name: "Food Plating",
|
|
||||||
role: "Culinary Art",
|
|
||||||
company: "The Ora Cafe",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/vertical-view-delicious-tuna-dish-with-glass-wine-cheese-set_8353-10584.jpg?_wi=1",
|
"http://img.b2bpic.net/free-photo/vertical-view-delicious-tuna-dish-with-glass-wine-cheese-set_8353-10584.jpg?_wi=1", imageAlt: "Gourmet food plating"
|
||||||
imageAlt: "Gourmet food plating",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Rooftop View", role: "Ambience", company: "Evening Scene", rating: 5,
|
||||||
name: "Rooftop View",
|
|
||||||
role: "Ambience",
|
|
||||||
company: "Evening Scene",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/middle-age-friends-having-fun_23-2149150932.jpg?_wi=1",
|
"http://img.b2bpic.net/free-photo/middle-age-friends-having-fun_23-2149150932.jpg?_wi=1", imageAlt: "Rooftop view with friends"
|
||||||
imageAlt: "Rooftop view with friends",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Interior Design", role: "Decor", company: "Modern Cafe", rating: 5,
|
||||||
name: "Interior Design",
|
|
||||||
role: "Decor",
|
|
||||||
company: "Modern Cafe",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/woman-golden-suit-sits-cafe_8353-301.jpg?_wi=1",
|
"http://img.b2bpic.net/free-photo/woman-golden-suit-sits-cafe_8353-301.jpg?_wi=1", imageAlt: "Modern cafe interior"
|
||||||
imageAlt: "Modern cafe interior",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Coffee & Desserts", role: "Beverages", company: "Specialties", rating: 5,
|
||||||
name: "Coffee & Desserts",
|
|
||||||
role: "Beverages",
|
|
||||||
company: "Specialties",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/top-view-cup-coffee-with-creamy-cake-pillow-formed-cookies-along-with-berries-grey-desk-berry-biscuit-cookie-photo-color_140725-33953.jpg?_wi=1",
|
"http://img.b2bpic.net/free-photo/top-view-cup-coffee-with-creamy-cake-pillow-formed-cookies-along-with-berries-grey-desk-berry-biscuit-cookie-photo-color_140725-33953.jpg?_wi=1", imageAlt: "Coffee and desserts"
|
||||||
imageAlt: "Coffee and desserts",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Friends Enjoying", role: "Social Scene", company: "Happy Moments", rating: 5,
|
||||||
name: "Friends Enjoying",
|
|
||||||
role: "Social Scene",
|
|
||||||
company: "Happy Moments",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/two-young-women-with-cup-coffee-looking-each-other_23-2147894404.jpg?_wi=1",
|
"http://img.b2bpic.net/free-photo/two-young-women-with-cup-coffee-looking-each-other_23-2147894404.jpg?_wi=1", imageAlt: "Friends enjoying coffee"
|
||||||
imageAlt: "Friends enjoying coffee",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", name: "Night Lighting", role: "Atmosphere", company: "Evening Glow", rating: 5,
|
||||||
name: "Night Lighting",
|
|
||||||
role: "Atmosphere",
|
|
||||||
company: "Evening Glow",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/antique-ceiling-lamp_1203-804.jpg?_wi=1",
|
"http://img.b2bpic.net/free-photo/antique-ceiling-lamp_1203-804.jpg?_wi=1", imageAlt: "Cafe night lighting"
|
||||||
imageAlt: "Cafe night lighting",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
gridVariant="bento-grid"
|
gridVariant="bento-grid"
|
||||||
@@ -297,8 +231,7 @@ export default function HomePage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Follow on Instagram",
|
text: "Follow on Instagram", href: "https://instagram.com"
|
||||||
href: "https://instagram.com",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -312,28 +245,20 @@ export default function HomePage() {
|
|||||||
tag="Reviews & Ratings"
|
tag="Reviews & Ratings"
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", icon: Star,
|
||||||
icon: Star,
|
title: "Rating", value: "4.0★"
|
||||||
title: "Rating",
|
|
||||||
value: "4.0★",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", icon: Users,
|
||||||
icon: Users,
|
title: "Reviews", value: "1,100+"
|
||||||
title: "Reviews",
|
|
||||||
value: "1,100+",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", icon: TrendingUp,
|
||||||
icon: TrendingUp,
|
title: "Visitors", value: "1,000+/mo"
|
||||||
title: "Visitors",
|
|
||||||
value: "1,000+/mo",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", icon: MapPin,
|
||||||
icon: MapPin,
|
title: "Location", value: "Bhilwara"
|
||||||
title: "Location",
|
|
||||||
value: "Bhilwara",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
@@ -350,11 +275,11 @@ export default function HomePage() {
|
|||||||
description="Join us at The Ora Cafe for an unforgettable dining experience. Call us, visit Google Maps for directions, or fill out the form below to make your reservation."
|
description="Join us at The Ora Cafe for an unforgettable dining experience. Call us, visit Google Maps for directions, or fill out the form below to make your reservation."
|
||||||
tagIcon={Phone}
|
tagIcon={Phone}
|
||||||
background={{
|
background={{
|
||||||
variant: "rotated-rays-animated-grid",
|
variant: "rotated-rays-animated-grid"
|
||||||
}}
|
}}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
inputPlaceholder="your.email@example.com"
|
inputPlaceholder="your.email@example.com"
|
||||||
buttonText="Get Updates"
|
buttonText="Reserve Table"
|
||||||
termsText="We respect your privacy. Unsubscribe at any time. You can also call us at +91 94603 51156 or visit us at G38 Rooftop, The Grandstand, Bhilwara."
|
termsText="We respect your privacy. Unsubscribe at any time. You can also call us at +91 94603 51156 or visit us at G38 Rooftop, The Grandstand, Bhilwara."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -367,18 +292,15 @@ export default function HomePage() {
|
|||||||
socialLinks={[
|
socialLinks={[
|
||||||
{
|
{
|
||||||
icon: Instagram,
|
icon: Instagram,
|
||||||
href: "https://instagram.com",
|
href: "https://instagram.com", ariaLabel: "Instagram"
|
||||||
ariaLabel: "Instagram",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: Facebook,
|
icon: Facebook,
|
||||||
href: "https://facebook.com",
|
href: "https://facebook.com", ariaLabel: "Facebook"
|
||||||
ariaLabel: "Facebook",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: MapPin,
|
icon: MapPin,
|
||||||
href: "https://maps.google.com",
|
href: "https://maps.google.com", ariaLabel: "Google Maps"
|
||||||
ariaLabel: "Google Maps",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user