Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4adf398e17 | |||
| fabbf8fb7c | |||
| e568e37371 | |||
| 1422c7034e |
@@ -9,7 +9,7 @@ import ProductCardFour from "@/components/sections/product/ProductCardFour";
|
||||
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
||||
import ContactFaq from "@/components/sections/contact/ContactFaq";
|
||||
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
||||
import { ChefHat, Flame, Heart, Images, Phone, Star, Utensils } from "lucide-react";
|
||||
import { ChefHat, Flame, Heart, Images, Phone, Star, Utensils, Clock, Users } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -31,9 +31,9 @@ export default function LandingPage() {
|
||||
navItems={[
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reserve", id: "contact" },
|
||||
{ name: "Reserve", id: "booking" },
|
||||
{ name: "Gallery", id: "gallery" },
|
||||
{ name: "Contact", id: "#" },
|
||||
{ name: "Order", id: "zomato-order" },
|
||||
]}
|
||||
bottomLeftText="Experience Fine Dining"
|
||||
bottomRightText="+1 (926) 521-0349"
|
||||
@@ -63,7 +63,7 @@ export default function LandingPage() {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-close-up-view-stuffed-cabbage-plate-stuffed-cabbage-with-lemon-herbs-sauce-bowls-rice-colorful-spices-black-pepper-black-table_140725-110561.jpg?_wi=1", imageAlt: "Cheese Dosa specialty"},
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Reserve a Table", href: "contact" },
|
||||
{ text: "Reserve a Table", href: "booking" },
|
||||
{ text: "View Full Menu", href: "menu" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -100,6 +100,35 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="booking" data-section="booking">
|
||||
<FeatureCardOne
|
||||
title="Booking Table"
|
||||
description="Reserve your perfect dining experience at Swad Sarnim. Check availability and book your table in advance."
|
||||
tag="Reservations"
|
||||
tagIcon={Clock}
|
||||
tagAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "Lunch Service", description: "Experience our lunch menu from 11:00 AM to 3:00 PM. Perfect for business meetings, family gatherings, and casual dining. Our lunch specials offer great value and authentic flavors.", imageSrc: "http://img.b2bpic.net/free-photo/delicious-indian-dosa-composition_23-2149086045.jpg?_wi=2", imageAlt: "Lunch Service", button: { text: "Book Lunch", href: "tel:+19265210349" },
|
||||
},
|
||||
{
|
||||
title: "Dinner Service", description: "Elevate your evening with our premium dinner experience from 5:00 PM to 10:00 PM. Enjoy an ambiance perfect for special occasions, romantic dinners, or celebration events.", imageSrc: "http://img.b2bpic.net/free-photo/wine-glass_74190-1308.jpg?_wi=2", imageAlt: "Dinner Service", button: { text: "Book Dinner", href: "tel:+19265210349" },
|
||||
},
|
||||
{
|
||||
title: "Group Reservations", description: "Planning a party or large gathering? We accommodate groups of all sizes. Contact us for customized menus and special arrangements for corporate events and celebrations.", imageSrc: "http://img.b2bpic.net/free-photo/people-enjoying-feast-first-day-passover-seder_23-2150247731.jpg?_wi=2", imageAlt: "Group Dining", button: { text: "Reserve Group", href: "tel:+19265210349" },
|
||||
},
|
||||
{
|
||||
title: "Private Events", description: "Host your special event at Swad Sarnim. From intimate dinners to grand celebrations, our team ensures a memorable culinary experience with personalized service.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-food-concept_23-2148510918.jpg?_wi=2", imageAlt: "Private Events", button: { text: "Plan Event", href: "tel:+19265210349" },
|
||||
},
|
||||
]}
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
ariaLabel="Booking and reservations section"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TestimonialAboutCard
|
||||
tag="Our Story"
|
||||
@@ -198,6 +227,16 @@ export default function LandingPage() {
|
||||
ariaLabel="Footer"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
if (typeof window !== 'undefined' && window.location.hash === '#zomato-order') {
|
||||
window.open('https://www.zomato.com', '_blank');
|
||||
}
|
||||
`,
|
||||
}}
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user