4 Commits

Author SHA1 Message Date
da3521c588 Update src/app/page.tsx 2026-03-18 11:32:18 +00:00
cab2e5e592 Merge version_1 into main
Merge version_1 into main
2026-03-18 11:24:37 +00:00
187d7d9aa2 Merge version_1 into main
Merge version_1 into main
2026-03-18 11:24:13 +00:00
9c3541083d Merge version_1 into main
Merge version_1 into main
2026-03-18 11:23:45 +00:00

View File

@@ -10,7 +10,8 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
import ContactText from '@/components/sections/contact/ContactText';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { UtensilsCrossed, Package, Truck } from 'lucide-react';
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
import { UtensilsCrossed, Package, Truck, Check } from 'lucide-react';
export default function LandingPage() {
return (
@@ -33,6 +34,7 @@ export default function LandingPage() {
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Pricing", id: "pricing" },
{ name: "Gallery", id: "gallery" },
{ name: "Contact", id: "contact" }
]}
@@ -186,6 +188,41 @@ export default function LandingPage() {
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardFive
title="Our Pricing Plans"
description="Choose the perfect plan for your dining experience at Selene."
tag="Transparent Pricing"
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={true}
animationType="slide-up"
plans={[
{
id: "casual-dining", tag: "Popular", tagIcon: Check,
price: "Rs 650800", period: "per person", description: "Enjoy our signature Rice & Curry buffet with authentic flavors.", button: { text: "Reserve Table", href: "#contact" },
featuresTitle: "What's Included", features: [
"Unlimited Rice & Curry buffet", "Selection of curries and sides", "Fresh beverages included", "Warm, welcoming ambiance"
]
},
{
id: "premium-experience", tag: "Best Value", tagIcon: Check,
price: "Rs 1,2001,500", period: "per person", description: "Premium dining with exclusive menu items and personalized service.", button: { text: "Book Premium", href: "#contact" },
featuresTitle: "What's Included", features: [
"Full buffet with premium selections", "Chef's special dishes", "Premium beverages & desserts", "Dedicated table service", "Complimentary welcome drink"
]
},
{
id: "catering-events", tag: "Corporate", tagIcon: Check,
price: "Custom Quote", period: "starting from Rs 25,000", description: "Perfect for corporate events, celebrations, and large gatherings.", button: { text: "Get Quote", href: "#contact" },
featuresTitle: "What's Included", features: [
"Customized menu options", "Full catering & delivery", "Professional service team", "Flexible timing options", "Bulk order discounts"
]
}
]}
/>
</div>
<div id="gallery" data-section="gallery">
<BlogCardThree
title="Gallery"
@@ -239,6 +276,7 @@ export default function LandingPage() {
{ label: "Home", href: "#hero" },
{ label: "About", href: "#about" },
{ label: "Menu", href: "#menu" },
{ label: "Pricing", href: "#pricing" },
{ label: "Gallery", href: "#gallery" }
]
},
@@ -247,6 +285,7 @@ export default function LandingPage() {
{ label: "Dine-In", href: "#services" },
{ label: "Takeaway", href: "#services" },
{ label: "Delivery", href: "#services" },
{ label: "Catering", href: "#pricing" },
{ label: "Contact", href: "#contact" }
]
},
@@ -264,4 +303,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}