Merge version_3 into main #3

Merged
bender merged 1 commits from version_3 into main 2026-03-10 12:42:35 +00:00

View File

@@ -10,7 +10,7 @@ import TestimonialCardThirteen from '@/components/sections/testimonial/Testimoni
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import { Heart, Sparkles, Star, UtensilsCrossed, Zap } from 'lucide-react';
import { Heart, Sparkles, Star, UtensilsCrossed, Zap, ArrowRight } from 'lucide-react';
export default function LandingPage() {
return (
@@ -48,8 +48,8 @@ export default function LandingPage() {
tagIcon={Sparkles}
tagAnimation="slide-up"
buttons={[
{ text: "View Menu & Visit", href: "#menu" },
{ text: "Order on WhatsApp", href: "https://wa.me/919876543210" }
{ text: "Explore Our Menu", href: "#menu" },
{ text: "Order Now on WhatsApp", href: "https://wa.me/919876543210" }
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/smiling-young-woman-having-cup-coffee_171337-17117.jpg"
@@ -67,7 +67,8 @@ export default function LandingPage() {
tagIcon={Heart}
tagAnimation="blur-reveal"
buttons={[
{ text: "Learn More", href: "#community" }
{ text: "Discover Our Values", href: "#community" },
{ text: "Reserve Your Table", href: "#contact" }
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/high-angle-man-cooking-delicious-pizza_23-2150306995.jpg"
@@ -104,6 +105,10 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[
{ text: "Learn More About Us", href: "#about" }
]}
buttonAnimation="slide-up"
/>
</div>
@@ -129,6 +134,10 @@ export default function LandingPage() {
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
buttons={[
{ text: "View Full Menu & Order", href: "https://wa.me/919876543210" }
]}
buttonAnimation="slide-up"
/>
</div>
@@ -169,6 +178,10 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[
{ text: "Join Our Community", href: "#contact" }
]}
buttonAnimation="slide-up"
/>
</div>
@@ -190,6 +203,10 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[
{ text: "Support Our Mission", href: "#contact" }
]}
buttonAnimation="slide-up"
/>
</div>
@@ -247,4 +264,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}