diff --git a/src/app/page.tsx b/src/app/page.tsx index e640f8b..0e89ac7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -78,18 +78,26 @@ export default function LandingPage() { tagIcon={Utensils} products={[ { - id: "1", name: "Crispy Fried Chicken", price: "Signature Item", imageSrc: "http://img.b2bpic.net/free-photo/man-squeezing-lemon-top-crispy-fried-cheese_140725-1575.jpg?_wi=1", imageAlt: "Golden crispy fried chicken with biscuits"}, + id: "1", name: "Crispy Fried Chicken", price: "Signature Item", imageSrc: "http://img.b2bpic.net/free-photo/man-squeezing-lemon-top-crispy-fried-cheese_140725-1575.jpg?_wi=1", imageAlt: "Golden crispy fried chicken with biscuits" + }, { - id: "2", name: "2x2x2 Breakfast Special", price: "Signature Item", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-pancakes-with-honey-strawberries-light_140725-121102.jpg?_wi=1", imageAlt: "Fluffy pancakes, bacon, and eggs breakfast plate"}, + id: "2", name: "2x2x2 Breakfast Special", price: "Signature Item", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-pancakes-with-honey-strawberries-light_140725-121102.jpg?_wi=1", imageAlt: "Fluffy pancakes, bacon, and eggs breakfast plate" + }, { - id: "3", name: "Classic Diner Burger", price: "Signature Item", imageSrc: "http://img.b2bpic.net/free-photo/hamburgers-tomatoes-with-copy-space_23-2148374907.jpg", imageAlt: "Homemade burger with fries and coleslaw"}, + id: "3", name: "Classic Diner Burger", price: "Signature Item", imageSrc: "http://img.b2bpic.net/free-photo/hamburgers-tomatoes-with-copy-space_23-2148374907.jpg", imageAlt: "Homemade burger with fries and coleslaw" + }, { - id: "4", name: "Biscuits & Gravy", price: "Signature Item", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-hot-chocolate-cashmere-background_23-2148312038.jpg", imageAlt: "Warm homemade biscuits with creamy sausage gravy"}, + id: "4", name: "Biscuits & Gravy", price: "Signature Item", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-hot-chocolate-cashmere-background_23-2148312038.jpg", imageAlt: "Warm homemade biscuits with creamy sausage gravy" + }, ]} gridVariant="two-columns-alternating-heights" animationType="slide-up" textboxLayout="default" useInvertedBackground={false} + buttons={[ + { text: "View Full Menu", href: "#menu" }, + { text: "Make Reservation", href: "#contact" }, + ]} /> @@ -98,19 +106,39 @@ export default function LandingPage() { features={[ { id: "atmosphere", label: "Atmosphere", title: "Step back in time", items: [ - "Retro 1950s-inspired décor", "Nostalgic time capsule diner feel", "Cozy booths and counter seating", "Warm, inviting ambiance"], + "Retro 1950s-inspired décor", "Nostalgic time capsule diner feel", "Cozy booths and counter seating", "Warm, inviting ambiance" + ], + buttons: [ + { text: "View Full Menu", href: "#menu" }, + { text: "Make Reservation", href: "#contact" }, + ] }, { id: "service", label: "Service", title: "Legendary hospitality", items: [ - "Friendly, attentive staff", "Fast and efficient service", "Known for genuine care", "Always treated like family"], + "Friendly, attentive staff", "Fast and efficient service", "Known for genuine care", "Always treated like family" + ], + buttons: [ + { text: "View Full Menu", href: "#menu" }, + { text: "Make Reservation", href: "#contact" }, + ] }, { id: "portions", label: "Portions", title: "Hearty and generous", items: [ - "Large, satisfying servings", "Premium comfort food quality", "Affordable prices", "Value for your money"], + "Large, satisfying servings", "Premium comfort food quality", "Affordable prices", "Value for your money" + ], + buttons: [ + { text: "View Full Menu", href: "#menu" }, + { text: "Make Reservation", href: "#contact" }, + ] }, { id: "convenience", label: "Convenience", title: "Always open", items: [ - "24-hour operation", "Popular late-night spot", "Easy parking available", "Credit cards accepted"], + "24-hour operation", "Popular late-night spot", "Easy parking available", "Credit cards accepted" + ], + buttons: [ + { text: "View Full Menu", href: "#menu" }, + { text: "Make Reservation", href: "#contact" }, + ] }, ]} animationType="opacity" @@ -127,17 +155,23 @@ export default function LandingPage() { ); -} +} \ No newline at end of file