diff --git a/src/app/page.tsx b/src/app/page.tsx index 3c694e6..d226dc5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,115 +31,48 @@ export default function LandingPage() {
@@ -149,14 +82,7 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} names={[ - "Texas Monthly Top 50 BBQ", - "Most delicious BBQ of my entire lifetime", - "Truck parking available", - "Award-winning brisket & ribs", - "Sweetwater institution", - "Road-trip essential", - "Authentic Texas BBQ", - ]} + "Texas Monthly Top 50 BBQ", "Most delicious BBQ of my entire lifetime", "Truck parking available", "Award-winning brisket & ribs", "Sweetwater institution", "Road-trip essential", "Authentic Texas BBQ"]} title="Why They Keep Coming Back" description="Featured in major publications and loved by travelers across the nation." /> @@ -167,21 +93,9 @@ export default function LandingPage() { useInvertedBackground={false} title="Not Your Average Pit Stop." metrics={[ - { - icon: Flame, - label: "Cooking Method", - value: "Direct Heat", - }, - { - icon: Award, - label: "Status", - value: "Top 50", - }, - { - icon: Truck, - label: "Community", - value: "Trucker Loved", - }, + { icon: Flame, label: "Cooking Method", value: "Direct Heat" }, + { icon: Award, label: "Status", value: "Top 50" }, + { icon: Truck, label: "Community", value: "Trucker Loved" }, ]} metricsAnimation="slide-up" /> @@ -194,106 +108,41 @@ export default function LandingPage() { gridVariant="bento-grid" useInvertedBackground={false} products={[ - { - id: "p1", - name: "Prime Brisket", - price: "Market", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-focus-grilled-meat-thin-sliced-wooden-board_346278-727.jpg?_wi=1", - imageAlt: "Prime Brisket", - }, - { - id: "p2", - name: "Pork Ribs", - price: "Market", - imageSrc: "http://img.b2bpic.net/free-photo/hot-grilled-spare-ribs-with-barbecue-sauce-crumpled-paper-top-view-ai-generative_123827-23832.jpg?_wi=1", - imageAlt: "Pork Ribs", - }, - { - id: "p3", - name: "BBQ Sandwich", - price: "$12.00", - imageSrc: "http://img.b2bpic.net/free-photo/japanese-sandwich-with-breaded-pork-chop-cabbage-tonkatsu-sauce_2829-18640.jpg?_wi=1", - imageAlt: "BBQ Sandwich", - }, - { - id: "p4", - name: "Smoked Sausage", - price: "$15.00", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-focus-grilled-meat-thin-sliced-wooden-board_346278-727.jpg?_wi=2", - imageAlt: "Smoked Sausage", - }, - { - id: "p5", - name: "Burnt Ends", - price: "$18.00", - imageSrc: "http://img.b2bpic.net/free-photo/hot-grilled-spare-ribs-with-barbecue-sauce-crumpled-paper-top-view-ai-generative_123827-23832.jpg?_wi=2", - imageAlt: "Burnt Ends", - }, - { - id: "p6", - name: "Pulled Pork", - price: "$14.00", - imageSrc: "http://img.b2bpic.net/free-photo/japanese-sandwich-with-breaded-pork-chop-cabbage-tonkatsu-sauce_2829-18640.jpg?_wi=2", - imageAlt: "Pulled Pork", - }, + { id: "p1", name: "Prime Brisket", price: "Market", imageSrc: "http://img.b2bpic.net/free-photo/close-up-focus-grilled-meat-thin-sliced-wooden-board_346278-727.jpg", imageAlt: "Prime Brisket" }, + { id: "p2", name: "Pork Ribs", price: "Market", imageSrc: "http://img.b2bpic.net/free-photo/hot-grilled-spare-ribs-with-barbecue-sauce-crumpled-paper-top-view-ai-generative_123827-23832.jpg", imageAlt: "Pork Ribs" }, + { id: "p3", name: "BBQ Sandwich", price: "$12.00", imageSrc: "http://img.b2bpic.net/free-photo/japanese-sandwich-with-breaded-pork-chop-cabbage-tonkatsu-sauce_2829-18640.jpg", imageAlt: "BBQ Sandwich" }, + { id: "p4", name: "Smoked Sausage", price: "$15.00", imageSrc: "http://img.b2bpic.net/free-photo/close-up-focus-grilled-meat-thin-sliced-wooden-board_346278-727.jpg", imageAlt: "Smoked Sausage" }, + { id: "p5", name: "Burnt Ends", price: "$18.00", imageSrc: "http://img.b2bpic.net/free-photo/hot-grilled-spare-ribs-with-barbecue-sauce-crumpled-paper-top-view-ai-generative_123827-23832.jpg", imageAlt: "Burnt Ends" }, + { id: "p6", name: "Pulled Pork", price: "$14.00", imageSrc: "http://img.b2bpic.net/free-photo/japanese-sandwich-with-breaded-pork-chop-cabbage-tonkatsu-sauce_2829-18640.jpg", imageAlt: "Pulled Pork" }, ]} title="Signature Items" description="Mesquite-kissed, never overpowering. Serious flavor." - buttons={[ - { - text: "View Full Menu", - href: "/menu", - }, - ]} + buttons={[{ text: "View Full Menu", href: "/menu" }]} />
@@ -348,33 +178,16 @@ export default function LandingPage() { logoText="Big Boys Bar-B-Que" columns={[ { - title: "Navigate", - items: [ - { - label: "Menu", - href: "#menu", - }, - { - label: "Story", - href: "#story", - }, - { - label: "Reviews", - href: "#reviews", - }, + title: "Navigate", items: [ + { label: "Menu", href: "#menu" }, + { label: "Story", href: "#story" }, + { label: "Reviews", href: "#reviews" }, ], }, { - title: "Contact", - items: [ - { - label: "(325) 555-0199", - href: "tel:3255550199", - }, - { - label: "Directions", - href: "#location", - }, + title: "Contact", items: [ + { label: "(325) 555-0199", href: "tel:3255550199" }, + { label: "Directions", href: "#location" }, ], }, ]}