diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 7276c3d..1f20b7a 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -6,166 +6,138 @@ import MetricsMediaCards from '@/components/sections/metrics/MetricsMediaCards'; import PricingMediaCards from '@/components/sections/pricing/PricingMediaCards'; import TeamListCards from '@/components/sections/team/TeamListCards'; import TestimonialRatingCards from '@/components/sections/testimonial/TestimonialRatingCards'; -import { Award, Flame, Smile } from "lucide-react"; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; export default function HomePage() { return ( <> -
- +
+ - -
+ tag="Since 1998" + title="Authentic Chinese Flavors, Crafted Fresh Daily" + description="Indulge in our exquisite selection of wok-fired dishes and traditional delicacies, served in a sophisticated, modern setting that honors centuries of culinary excellence." + primaryButton={{ text: "Order Online", href: "#order" }} + secondaryButton={{ text: "View Menu", href: "#menu" }} + items={[ + { imageSrc: "http://img.b2bpic.net/free-photo/tray-with-bowl-sprouts-mint_23-2148381194.jpg" }, + { imageSrc: "http://img.b2bpic.net/free-photo/meat-plate-with-meat-rolls-chicken-drumstick-served-with-pear_140725-7978.jpg" }, + ]} + /> +
+
- -
- +
+ - -
+ tag="Our Commitment" + title="A Legacy of Culinary Passion" + description="At Thai Chin Wok, we treat every dish as a masterpiece. Our chefs bring decades of experience to the wok, ensuring every meal is an unforgettable journey." + items={[ + { icon: "Flame", title: "Wok-Fired Fresh", description: "Every meal prepared instantly on high heat." }, + { icon: "Award", title: "Premium Sourcing", description: "Only the finest local and imported spices." }, + { icon: "Smile", title: "Guest Focus", description: "Your experience is our utmost priority." }, + ]} + imageSrc="http://img.b2bpic.net/free-photo/female-chef-kitchen-dressed-apron-uniform_23-2149720712.jpg" + /> +
+
-
- +
+ - -
+ tag="The Culinary Team" + title="Meet Our Visionary Chefs" + description="Our kitchen is guided by passionate experts dedicated to preserving authentic tastes with a modern culinary twist." + groups={[ + { + title: "Kitchen Staff", members: [ + { + name: "Chef Wei Zhang", role: "Executive Chef", detail: "30 years of experience in Szechuan traditions.", imageSrc: "http://img.b2bpic.net/free-photo/woman-head-chef-adding-herbs-complete-gourmet-dish-modern-kitchen_482257-121214.jpg" + }, + ], + }, + ]} + /> +
+
-
- +
+ - -
+ tag="Customer Reviews" + title="Loved by Our Community" + description="Read what our cherished guests have to say about their Thai Chin Wok experience." + testimonials={[ + { name: "Sarah Miller", role: "Food Critic", quote: "The most authentic Peking duck I've had in years. Incredible depth of flavor.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/two-happy-cheerful-girl-friends-business-partners-having-fun-lunch-seafood-restaurant_496169-2077.jpg" }, + { name: "James Chen", role: "Local Patron", quote: "The Szechuan Beef is addictive! Consistent quality every single visit.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/black-american-male-female-eating-vegan-food-restaurant_613910-7323.jpg" }, + { name: "Elena Rossi", role: "Blogger", quote: "Such a beautifully moody and modern setting. Perfect for date nights.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/serious-young-redhead-curly-lady-standing-cafe_171337-16581.jpg" }, + { name: "David Wu", role: "Regular Guest", quote: "Fast service, fresh ingredients, and the best momos in the city.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598347.jpg" }, + { name: "Linda Song", role: "Food Enthusiast", quote: "A truly premium experience. The waitstaff made our evening unforgettable.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081863.jpg" }, + ]} + /> +
+
-
- +
+ - -
+ tag="By the Numbers" + title="Our Impact on Fine Dining" + description="Data doesn't lie, but it also doesn't taste this good. We take pride in our numbers." + metrics={[ + { value: "15,000+", title: "Wok-Fired Meals", description: "Served to happy patrons since opening.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157820.jpg" }, + { value: "45", title: "Unique Ingredients", description: "Used in our secret spice blends.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-wedding-table-arrangement_23-2150279480.jpg" }, + { value: "5.0", title: "Average Rating", description: "Based on over 2,000 reviews.", imageSrc: "http://img.b2bpic.net/free-photo/safari-party-table-arrangement-decoration_52683-96535.jpg" }, + ]} + /> +
+
-
- +
+ - -
+ tag="Special Offers" + title="Exclusive Dining Experiences" + description="Enjoy curated pairings and seasonal specials designed for a complete Thai Chin Wok experience." + plans={[ + { + tag: "Limited Time", price: "Pairing Menu", period: "Seasonal", features: ["Curated Appetizer", "Chef's Signature Wok", "Signature Cocktail", "Dessert Duo"], + primaryButton: { text: "Reserve Now", href: "#contact" }, + imageSrc: "http://img.b2bpic.net/free-photo/delicious-white-tuna-recipe-still-life_23-2151143249.jpg" + }, + ]} + /> +
+
-
- +
+ - -
+ tag="Visit Us" + text="Ready to experience the best Asian fusion in the city? Join us today for dinner or reserve your table for a special occasion." + primaryButton={{ text: "Reserve a Table", href: "#reservations" }} + secondaryButton={{ text: "Order for Pickup", href: "#order" }} + /> +
+
); }