From b87ef73f78285d61274066d60dd76cd0aa3d919c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 22:49:15 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 240 ++++++----------------------------------------- 1 file changed, 30 insertions(+), 210 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 63cb93d..2ab4332 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,16 +2,17 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; import FaqBase from '@/components/sections/faq/FaqBase'; import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import FooterCard from '@/components/sections/footer/FooterCard'; import HeroLogo from '@/components/sections/hero/HeroLogo'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; +import { MapPin, Phone, Mail } from 'lucide-react'; export default function LandingPage() { return ( @@ -31,22 +32,10 @@ export default function LandingPage() { @@ -94,27 +68,9 @@ export default function LandingPage() { textboxLayout="split-description" useInvertedBackground={false} features={[ - { - id: "f1", - title: "Fresh Beef", - description: "100% real beef, cooked to perfection.", - tag: "Beef", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-burger-ingredients-slate-background_23-2148235015.jpg", - }, - { - id: "f2", - title: "Golden Fries", - description: "Crispy, hot, and seasoned just right.", - tag: "Fries", - imageSrc: "http://img.b2bpic.net/free-photo/nectarine-slices-with-drink-wooden-cutting-board-table-flat-lay_176474-8879.jpg", - }, - { - id: "f3", - title: "Cool Drinks", - description: "Refreshing beverages to quench your thirst.", - tag: "Drinks", - imageSrc: "http://img.b2bpic.net/free-photo/beverage-glass-near-lemons-ice-blocks_23-2148216355.jpg", - }, + { id: "f1", title: "Fresh Beef", description: "100% real beef, cooked to perfection.", tag: "Beef", imageSrc: "http://img.b2bpic.net/free-photo/top-view-burger-ingredients-slate-background_23-2148235015.jpg" }, + { id: "f2", title: "Golden Fries", description: "Crispy, hot, and seasoned just right.", tag: "Fries", imageSrc: "http://img.b2bpic.net/free-photo/nectarine-slices-with-drink-wooden-cutting-board-table-flat-lay_176474-8879.jpg" }, + { id: "f3", title: "Cool Drinks", description: "Refreshing beverages to quench your thirst.", tag: "Drinks", imageSrc: "http://img.b2bpic.net/free-photo/beverage-glass-near-lemons-ice-blocks_23-2148216355.jpg" }, ]} title="Quality Ingredients" description="We source the finest ingredients to bring you the taste you love, every single time." @@ -128,118 +84,24 @@ export default function LandingPage() { gridVariant="two-columns-alternating-heights" useInvertedBackground={true} products={[ - { - id: "p1", - name: "Big Mac", - price: "$5.99", - variant: "Classic", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-burgers-frame-with-orange-background_23-2148235004.jpg", - }, - { - id: "p2", - name: "French Fries", - price: "$2.99", - variant: "Side", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-plate-with-crackers-pink-plate-wooden-desk-grey-snack-crisp-cracker_140725-20794.jpg", - }, - { - id: "p3", - name: "McFlurry", - price: "$3.49", - variant: "Dessert", - imageSrc: "http://img.b2bpic.net/free-photo/hot-chocolate-cup-with-whipped-cream_1220-4741.jpg", - }, - { - id: "p4", - name: "Chicken Nuggets", - price: "$4.99", - variant: "Snack", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-yummy-chicken-wings-cutting-board-dark-background-lunch-dinner-sandwich-fries-meal-burger-food-salad_140725-158650.jpg", - }, - { - id: "p5", - name: "Egg McMuffin", - price: "$3.99", - variant: "Breakfast", - imageSrc: "http://img.b2bpic.net/free-photo/cup-coffee-wooden_1150-8063.jpg", - }, - { - id: "p6", - name: "Happy Meal", - price: "$4.50", - variant: "Kids", - imageSrc: "http://img.b2bpic.net/free-photo/arrangement-delicious-exotic-fruits_23-2149090888.jpg", - }, + { id: "p1", name: "Big Mac", price: "$5.99", variant: "Classic", imageSrc: "http://img.b2bpic.net/free-photo/top-view-burgers-frame-with-orange-background_23-2148235004.jpg" }, + { id: "p2", name: "French Fries", price: "$2.99", variant: "Side", imageSrc: "http://img.b2bpic.net/free-photo/front-view-plate-with-crackers-pink-plate-wooden-desk-grey-snack-crisp-cracker_140725-20794.jpg" }, + { id: "p3", name: "McFlurry", price: "$3.49", variant: "Dessert", imageSrc: "http://img.b2bpic.net/free-photo/hot-chocolate-cup-with-whipped-cream_1220-4741.jpg" }, + { id: "p4", name: "Chicken Nuggets", price: "$4.99", variant: "Snack", imageSrc: "http://img.b2bpic.net/free-photo/front-view-yummy-chicken-wings-cutting-board-dark-background-lunch-dinner-sandwich-fries-meal-burger-food-salad_140725-158650.jpg" }, ]} title="Our Menu" description="Explore the classics and new favorites." /> -
- -
-
-
); -} +} \ No newline at end of file