From 1a26c8c840dbf2491b65d6513116548555c4088c Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 10 Apr 2026 07:17:53 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 254 ++++++++--------------------------------------- 1 file changed, 44 insertions(+), 210 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a668b7f..f939f28 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,7 +6,7 @@ import ContactCTA from '@/components/sections/contact/ContactCTA'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import HeroCentered from '@/components/sections/hero/HeroCentered'; -import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; @@ -28,28 +28,13 @@ export default function LandingPage() { > @@ -143,60 +83,12 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={false} products={[ - { - id: "p1", - brand: "Signature", - name: "Prime Ribeye", - price: "$65", - rating: 5, - reviewCount: "120", - imageSrc: "http://img.b2bpic.net/free-photo/fried-piece-meat-potatoes-fried-tomato_140725-6649.jpg", - }, - { - id: "p2", - brand: "Classic", - name: "Beef Tacos Trio", - price: "$28", - rating: 5, - reviewCount: "89", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-mexican-food-with-onions_23-2148614393.jpg", - }, - { - id: "p3", - brand: "Artisan", - name: "Premium Roast Beef", - price: "$32", - rating: 4, - reviewCount: "56", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-person-holding-burger-with-fried-egg_23-2148784520.jpg", - }, - { - id: "p4", - brand: "Appetizer", - name: "Grilled Beef Skewers", - price: "$24", - rating: 5, - reviewCount: "45", - imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-table-top-view_140725-9675.jpg", - }, - { - id: "p5", - brand: "Signature", - name: "Smoked Brisket", - price: "$48", - rating: 5, - reviewCount: "112", - imageSrc: "http://img.b2bpic.net/free-photo/view-from-side-yummy-snack-plate-lying-table_651396-1435.jpg", - }, - { - id: "p6", - brand: "Luxury", - name: "Filet Mignon", - price: "$72", - rating: 5, - reviewCount: "78", - imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-with-arugula-grilled-eggplants_141793-744.jpg", - }, + { id: "p1", brand: "Signature", name: "Prime Ribeye", price: "$65", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/fried-piece-meat-potatoes-fried-tomato_140725-6649.jpg" }, + { id: "p2", brand: "Classic", name: "Beef Tacos Trio", price: "$28", rating: 5, reviewCount: "89", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-mexican-food-with-onions_23-2148614393.jpg" }, + { id: "p3", brand: "Artisan", name: "Premium Roast Beef", price: "$32", rating: 4, reviewCount: "56", imageSrc: "http://img.b2bpic.net/free-photo/front-view-person-holding-burger-with-fried-egg_23-2148784520.jpg" }, + { id: "p4", brand: "Appetizer", name: "Grilled Beef Skewers", price: "$24", rating: 5, reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-table-top-view_140725-9675.jpg" }, + { id: "p5", brand: "Signature", name: "Smoked Brisket", price: "$48", rating: 5, reviewCount: "112", imageSrc: "http://img.b2bpic.net/free-photo/view-from-side-yummy-snack-plate-lying-table_651396-1435.jpg" }, + { id: "p6", brand: "Luxury", name: "Filet Mignon", price: "$72", rating: 5, reviewCount: "78", imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-with-arugula-grilled-eggplants_141793-744.jpg" }, ]} title="Our Signature Selections" description="Hand-cut, precision-grilled, and delivered with perfection." @@ -207,31 +99,11 @@ export default function LandingPage() { @@ -295,34 +147,16 @@ export default function LandingPage() { columns={[ { items: [ - { - label: "About Us", - href: "#about", - }, - { - label: "Our Menu", - href: "#products", - }, - { - label: "Reservations", - href: "#contact", - }, + { label: "About Us", href: "#about" }, + { label: "Our Menu", href: "#products" }, + { label: "Reservations", href: "#contact" }, ], }, { items: [ - { - label: "Privacy Policy", - href: "#", - }, - { - label: "Terms of Service", - href: "#", - }, - { - label: "Contact", - href: "#contact", - }, + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + { label: "Contact", href: "#contact" }, ], }, ]}