Merge version_3 into main #3

Merged
bender merged 1 commits from version_3 into main 2026-03-08 18:00:44 +00:00

View File

@@ -34,7 +34,8 @@ export default function LandingPage() {
{ name: "Contact", id: "contact" },
]}
button={{
text: "Reserve a Table", href: "#contact"}}
text: "Reserve a Table", href: "#contact"
}}
animateOnLoad={true}
/>
</div>
@@ -57,13 +58,16 @@ export default function LandingPage() {
testimonials={[
{
name: "Sarah Mitchell", handle: "Food Critic", testimonial: "Exceptional flavors and impeccable service. A true gem for authentic Thai cuisine.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-blonde-woman-white_181624-33452.jpg"},
imageSrc: "http://img.b2bpic.net/free-photo/smiling-blonde-woman-white_181624-33452.jpg"
},
{
name: "David Chen", handle: "Chef & Restaurateur", testimonial: "The authenticity and attention to detail in every dish is remarkable. Highly recommended.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-pretty-young-woman-posing-camera_1262-18333.jpg"},
imageSrc: "http://img.b2bpic.net/free-photo/smiling-pretty-young-woman-posing-camera_1262-18333.jpg"
},
{
name: "Emma Rodriguez", handle: "Travel Blogger", testimonial: "This restaurant captures the true essence of Thailand. An unforgettable experience.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-natural-woman_329181-4328.jpg"},
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-natural-woman_329181-4328.jpg"
},
]}
testimonialRotationInterval={5000}
useInvertedBackground={false}
@@ -100,13 +104,16 @@ export default function LandingPage() {
features={[
{
id: 1,
title: "Green Curry", description: "Fragrant green curry with chicken, basil leaves, and coconut milk. A perfect balance of heat and creaminess that defines authentic Thai cuisine.", imageSrc: "http://img.b2bpic.net/free-photo/top-close-up-view-vegetables-roasted-vegetables-fork-red-tablecloth-spices_140725-72163.jpg", imageAlt: "Thai Green Curry"},
title: "Green Curry", description: "Fragrant green curry with chicken, basil leaves, and coconut milk. A perfect balance of heat and creaminess that defines authentic Thai cuisine.", imageSrc: "http://img.b2bpic.net/free-photo/top-close-up-view-vegetables-roasted-vegetables-fork-red-tablecloth-spices_140725-72163.jpg", imageAlt: "Thai Green Curry"
},
{
id: 2,
title: "Tom Yum Soup", description: "Legendary hot and sour soup with shrimp, lemongrass, and galangal. A harmonious blend of bold flavors that awakens the palate.", imageSrc: "http://img.b2bpic.net/free-photo/delicious-shrimp-meal-top-view_23-2148771283.jpg", imageAlt: "Tom Yum Soup"},
title: "Tom Yum Soup", description: "Legendary hot and sour soup with shrimp, lemongrass, and galangal. A harmonious blend of bold flavors that awakens the palate.", imageSrc: "http://img.b2bpic.net/free-photo/delicious-shrimp-meal-top-view_23-2148771283.jpg", imageAlt: "Tom Yum Soup"
},
{
id: 3,
title: "Spring Rolls", description: "Crispy vegetable spring rolls served with our house-made peanut sauce. The perfect appetizer to begin your culinary journey.", imageSrc: "http://img.b2bpic.net/free-photo/spring-rolls_74190-1373.jpg", imageAlt: "Thai Spring Rolls"},
title: "Spring Rolls", description: "Crispy vegetable spring rolls served with our house-made peanut sauce. The perfect appetizer to begin your culinary journey.", imageSrc: "http://img.b2bpic.net/free-photo/spring-rolls_74190-1373.jpg", imageAlt: "Thai Spring Rolls"
},
]}
textboxLayout="default"
animationType="blur-reveal"
@@ -121,13 +128,17 @@ export default function LandingPage() {
author="James Patterson, Michelin-Rated Food Writer"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/smiling-blonde-woman-white_181624-33452.jpg", alt: "Sarah Mitchell"},
src: "http://img.b2bpic.net/free-photo/smiling-blonde-woman-white_181624-33452.jpg", alt: "Sarah Mitchell"
},
{
src: "http://img.b2bpic.net/free-photo/smiling-pretty-young-woman-posing-camera_1262-18333.jpg", alt: "David Chen"},
src: "http://img.b2bpic.net/free-photo/smiling-pretty-young-woman-posing-camera_1262-18333.jpg", alt: "David Chen"
},
{
src: "http://img.b2bpic.net/free-photo/portrait-beautiful-natural-woman_329181-4328.jpg", alt: "Emma Rodriguez"},
src: "http://img.b2bpic.net/free-photo/portrait-beautiful-natural-woman_329181-4328.jpg", alt: "Emma Rodriguez"
},
{
src: "http://img.b2bpic.net/free-photo/confident-businessman-smiling-outside-office-building_107420-74332.jpg", alt: "Michael Thompson"},
src: "http://img.b2bpic.net/free-photo/confident-businessman-smiling-outside-office-building_107420-74332.jpg", alt: "Michael Thompson"
},
]}
ratingAnimation="slide-up"
avatarsAnimation="slide-up"
@@ -183,4 +194,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}