diff --git a/src/app/page.tsx b/src/app/page.tsx index 9a13ddf..49634f8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,43 +31,23 @@ export default function LandingPage() {
@@ -102,60 +72,12 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={false} products={[ - { - id: "1", - brand: "Starter", - name: "Oak-Smoked Scallops", - price: "$28", - rating: 5, - reviewCount: "120", - imageSrc: "http://img.b2bpic.net/free-photo/creative-assortment-delicious-food_23-2148949024.jpg", - }, - { - id: "2", - brand: "Main", - name: "Charred Wagyu Fillet", - price: "$85", - rating: 5, - reviewCount: "85", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-person-slicing-freshly-baked-bread-wooden-board-with-butter-marmalade_181624-16136.jpg", - }, - { - id: "3", - brand: "Dessert", - name: "Dark Cocoa Ember", - price: "$18", - rating: 4, - reviewCount: "205", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-chocolate-cake-concept_23-2148769254.jpg", - }, - { - id: "4", - brand: "Starter", - name: "Heritage Beet Carpaccio", - price: "$22", - rating: 4, - reviewCount: "45", - imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-with-tomato-slices-greens-sauce-rosemary-sprig-2_140725-8550.jpg", - }, - { - id: "5", - brand: "Main", - name: "Herb-Crusted Lamb Rack", - price: "$72", - rating: 5, - reviewCount: "92", - imageSrc: "http://img.b2bpic.net/free-photo/bread-with-butter_1160-439.jpg", - }, - { - id: "6", - brand: "Drink", - name: "Smoked Maple Old Fashioned", - price: "$20", - rating: 5, - reviewCount: "310", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-cookies-cupcakes-arrangement_23-2149528345.jpg", - }, + { id: "1", brand: "Starter", name: "Oak-Smoked Scallops", price: "$28", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/creative-assortment-delicious-food_23-2148949024.jpg" }, + { id: "2", brand: "Main", name: "Charred Wagyu Fillet", price: "$85", rating: 5, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/top-view-person-slicing-freshly-baked-bread-wooden-board-with-butter-marmalade_181624-16136.jpg" }, + { id: "3", brand: "Dessert", name: "Dark Cocoa Ember", price: "$18", rating: 4, reviewCount: "205", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-chocolate-cake-concept_23-2148769254.jpg" }, + { id: "4", brand: "Starter", name: "Heritage Beet Carpaccio", price: "$22", rating: 4, reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-with-tomato-slices-greens-sauce-rosemary-sprig-2_140725-8550.jpg" }, + { id: "5", brand: "Main", name: "Herb-Crusted Lamb Rack", price: "$72", rating: 5, reviewCount: "92", imageSrc: "http://img.b2bpic.net/free-photo/bread-with-butter_1160-439.jpg" }, + { id: "6", brand: "Drink", name: "Smoked Maple Old Fashioned", price: "$20", rating: 5, reviewCount: "310", imageSrc: "http://img.b2bpic.net/free-photo/top-view-cookies-cupcakes-arrangement_23-2149528345.jpg" }, ]} title="Signature Dishes" description="Each plate is an exploration of texture, fire, and season." @@ -164,24 +86,13 @@ export default function LandingPage() { @@ -257,21 +132,9 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} faqs={[ - { - id: "1", - title: "Do you offer dietary accommodations?", - content: "Yes, our team can tailor dishes for most dietary needs.", - }, - { - id: "2", - title: "Is the dress code strictly formal?", - content: "We recommend smart elegant attire for the best atmosphere.", - }, - { - id: "3", - title: "Do you accept large party bookings?", - content: "We offer private room dining for groups up to 12 people.", - }, + { id: "1", title: "Do you offer dietary accommodations?", content: "Yes, our team can tailor dishes for most dietary needs." }, + { id: "2", title: "Is the dress code strictly formal?", content: "We recommend smart elegant attire for the best atmosphere." }, + { id: "3", title: "Do you accept large party bookings?", content: "We offer private room dining for groups up to 12 people." }, ]} imageSrc="http://img.b2bpic.net/free-photo/top-view-birthday-cake-golden-cutlery_23-2148409089.jpg" title="Dining Queries" @@ -284,18 +147,11 @@ export default function LandingPage() {
@@ -305,46 +161,22 @@ export default function LandingPage() { logoText="EMBER" columns={[ { - title: "Navigate", - items: [ - { - label: "Story", - href: "#about", - }, - { - label: "Menu", - href: "#menu", - }, - { - label: "Reserve", - href: "#reserve", - }, + title: "Navigate", items: [ + { label: "Story", href: "#about" }, + { label: "Menu", href: "#menu" }, + { label: "Reserve", href: "#reserve" }, ], }, { - title: "Connect", - items: [ - { - label: "Instagram", - href: "#", - }, - { - label: "Newsletter", - href: "#", - }, + title: "Connect", items: [ + { label: "Instagram", href: "#" }, + { label: "Newsletter", href: "#" }, ], }, { - title: "Legal", - items: [ - { - label: "Privacy Policy", - href: "#", - }, - { - label: "Terms of Service", - href: "#", - }, + title: "Legal", items: [ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, ], }, ]} @@ -354,4 +186,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file