From 543b9909ad1118ca648981d2262253a1f1547726 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 23 May 2026 21:39:53 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 319 +++++++---------------------------------------- 1 file changed, 46 insertions(+), 273 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1d7c28b..9026067 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,80 +30,35 @@ export default function LandingPage() {
@@ -113,89 +68,25 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="split" gridVariant="four-items-2x2-equal-grid" - useInvertedBackground={false} + title="Our Smoked Menu" + description="Everything is smoked in-house daily. Get it while it's hot." products={[ - { - id: "1", - brand: "Tacos", - name: "Trailer Park Taco", - price: "$5.25", - rating: 5, - reviewCount: "1.2k", - imageSrc: "http://img.b2bpic.net/free-photo/plate-with-tacos-near-brown-napkin_23-2148181574.jpg", - }, - { - id: "2", - brand: "Breakfast", - name: "BYO Breakfast Taco", - price: "$4.50", - rating: 4, - reviewCount: "800", - imageSrc: "http://img.b2bpic.net/free-photo/tacos-placed-wooden-table_23-2148181611.jpg", - }, - { - id: "3", - brand: "Tacos", - name: "Chicken Fajita Taco", - price: "$5.75", - rating: 5, - reviewCount: "950", - imageSrc: "http://img.b2bpic.net/free-photo/fajitas_23-2148024765.jpg", - }, - { - id: "4", - brand: "Veggie", - name: "Fried Avocado Taco", - price: "$4.95", - rating: 5, - reviewCount: "700", - imageSrc: "http://img.b2bpic.net/free-photo/vegetarian-tacos-arrangement_23-2148750458.jpg", - }, - { - id: "5", - brand: "Appetizers", - name: "Green Chile Queso", - price: "$6.50", - rating: 5, - reviewCount: "2.1k", - imageSrc: "http://img.b2bpic.net/free-photo/milk-tea-shaved-ice_1339-4127.jpg", - }, - { - id: "6", - brand: "Appetizers", - name: "Guacamole & Chips", - price: "$5.95", - rating: 4, - reviewCount: "600", - imageSrc: "http://img.b2bpic.net/free-photo/nachos-plate-various-sauces-wooden-table_23-2148254361.jpg", - }, + { id: "1", brand: "Meat", name: "Prime Brisket", price: "$24/lb", rating: 5, reviewCount: "450", imageSrc: "https://images.unsplash.com/photo-1555939594-58d7cb561ad1?q=80&w=400" }, + { id: "2", brand: "Meat", name: "St. Louis Ribs", price: "$18/half", rating: 5, reviewCount: "320", imageSrc: "https://images.unsplash.com/photo-1529193591184-b1ddf806a36e?q=80&w=400" }, + { id: "3", brand: "Meat", name: "House Sausage", price: "$12/link", rating: 4, reviewCount: "280", imageSrc: "https://images.unsplash.com/photo-1603048297172-c92544798d5e?q=80&w=400" }, + { id: "4", brand: "Sides", name: "Smoked Mac & Cheese", price: "$6", rating: 5, reviewCount: "500", imageSrc: "https://images.unsplash.com/photo-1543339308-43e59d6b73a6?q=80&w=400" }, ]} - title="Fan Favorites" - description="Check out our most popular, inventive taco creations and snacks." />
@@ -206,173 +97,55 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="split" useInvertedBackground={false} + title="What Locals Say" + description="Join the hundreds of happy neighbors enjoying the best BBQ in Fulshear." testimonials={[ - { - id: "1", - name: "Patrick Z.", - role: "Local Guide", - company: "Katy, TX", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/couple-enjoying-food-restaurant_23-2149269176.jpg", - }, - { - id: "2", - name: "Holly G.", - role: "Local Guide", - company: "LaCenterra", - rating: 4, - imageSrc: "http://img.b2bpic.net/free-photo/communicating-with-multicultural-colleagues-small-local-cosy-restaurant-with-delicious-food_8353-10023.jpg", - }, - { - id: "3", - name: "Sarah J.", - role: "Foodie", - company: "Nearby", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/full-shot-family-eating-together_23-2148972775.jpg", - }, - { - id: "4", - name: "Michael C.", - role: "Visitor", - company: "Katy", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/woman-taking-selfie-with-food_23-2147826855.jpg", - }, - { - id: "5", - name: "Emily R.", - role: "Customer", - company: "Regular", - rating: 4, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-girl-shows-okay-ok-signs-look-satisfied-recommend-good-company-perfect-quality-praise-good-job-well-done-standing-pleased-against-white-background_176420-54380.jpg", - }, - { - id: "6", - name: "David K.", - role: "Local", - company: "Cinco Ranch", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/would-you-like-some-salad-dear_637285-12955.jpg", - }, + { id: "1", name: "John D.", role: "Local Resident", company: "Fulshear", rating: 5 }, + { id: "2", name: "Mary S.", role: "Regular", company: "Cinco Ranch", rating: 5 }, ]} kpiItems={[ - { - value: "4.3", - label: "Google Rating", - }, - { - value: "2616", - label: "Guest Reviews", - }, - { - value: "100%", - label: "Taco Satisfaction", - }, + { value: "500+", label: "Happy Neighbors" }, + { value: "100%", label: "Local Beef" }, + { value: "4.9", label: "Average Rating" }, ]} - title="What Our Guests Say" - description="Authentic Mexican flavors, inventive recipes, and a community vibe." />
); -} +} \ No newline at end of file -- 2.49.1