diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index 07afc98..a6aae05 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -4,9 +4,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import TextAbout from '@/components/sections/about/TextAbout'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; export default function LandingPage() { return ( @@ -26,15 +26,11 @@ export default function LandingPage() { @@ -46,24 +42,12 @@ export default function LandingPage() { gridVariant="bento-grid" useInvertedBackground={false} products={[ - { - id: "c1", brand: "Toast ", name: "Bubble Tea ", price: "$6 - $7", rating: 5, - reviewCount: "120", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775501251342-0zntpynz.png"}, - { - id: "c2", brand: "Toast ", name: "Beet and Pickled Onion Toast ", price: "$10.95", rating: 5, - reviewCount: "85", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775446159736-6ddgpu4s.png"}, - { - id: "c3", brand: "Sweets ", name: "Dubai Cup ", price: "$13.95", rating: 5, - reviewCount: "95", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775445253627-8k9zsc19.jpg"}, - { - id: "c4", brand: "Waffle ", name: "Strawberry Bubble Waffle ", price: "$11.95 - $16.95", rating: 5, - reviewCount: "60", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775669412046-4kmmj6cs.png"}, - { - id: "c5", brand: "Salad", name: "Strawberry Blast Salad", price: "$12.95", rating: 5, - reviewCount: "70", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775670140815-68elexev.png"}, - { - id: "c6", brand: "Crepes ", name: "Signature Sweet Crepes", price: "$6.95 - $15.95", rating: 5, - reviewCount: "40", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775670729257-vt0ro02r.png"}, + { id: "c1", brand: "Toast ", name: "Bubble Tea ", price: "$6 - $7", rating: 5, reviewCount: "120", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775501251342-0zntpynz.png"}, + { id: "c2", brand: "Toast ", name: "Beet and Pickled Onion Toast ", price: "$10.95", rating: 5, reviewCount: "85", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775446159736-6ddgpu4s.png"}, + { id: "c3", brand: "Sweets ", name: "Dubai Cup ", price: "$13.95", rating: 5, reviewCount: "95", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775445253627-8k9zsc19.jpg"}, + { id: "c4", brand: "Waffle ", name: "Strawberry Bubble Waffle ", price: "$11.95 - $16.95", rating: 5, reviewCount: "60", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775669412046-4kmmj6cs.png"}, + { id: "c5", brand: "Salad", name: "Strawberry Blast Salad", price: "$12.95", rating: 5, reviewCount: "70", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775670140815-68elexev.png"}, + { id: "c6", brand: "Crepes ", name: "Signature Sweet Crepes", price: "$6.95 - $15.95", rating: 5, reviewCount: "40", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775670729257-vt0ro02r.png"}, ]} title="Our Menu" description="Exquisite selections prepared to satisfy your cravings." @@ -87,10 +71,8 @@ export default function LandingPage() { title="Specialty Beverages" description="Handcrafted coffee blends." products={[ - { - id: "b1", name: "Signature Latte", price: "$5.50", imageSrc: "http://img.b2bpic.net/free-photo/pouring-milk-cup-coffee_1153-548.jpg?_wi=2"}, - { - id: "b2", name: "Gold Drip Coffee", price: "$4.00", imageSrc: "http://img.b2bpic.net/free-photo/pouring-milk-cup-coffee_1153-548.jpg?_wi=3"}, + { id: "b1", name: "Signature Latte", price: "$5.50", imageSrc: "http://img.b2bpic.net/free-photo/pouring-milk-cup-coffee_1153-548.jpg?_wi=2"}, + { id: "b2", name: "Gold Drip Coffee", price: "$4.00", imageSrc: "http://img.b2bpic.net/free-photo/pouring-milk-cup-coffee_1153-548.jpg?_wi=3"}, ]} /> @@ -100,18 +82,16 @@ export default function LandingPage() { columns={[ { items: [ - { - label: "24 Elm St, Westfield, MA 01085"}, - { - label: "Open Daily | 7:00 AM - 4:00 PM"}, + { label: "24 Elm St, Westfield, MA 01085" }, + { label: "Tue-Fri: 10 AM - 7 PM" }, + { label: "Sat: 9 AM - 6 PM" }, + { label: "Sun-Mon: Closed" }, ], }, { items: [ - { - label: "Instagram", href: "https://instagram.com"}, - { - label: "Facebook", href: "https://facebook.com"}, + { label: "Instagram", href: "https://instagram.com" }, + { label: "Facebook", href: "https://facebook.com" }, ], }, ]} diff --git a/src/app/page.tsx b/src/app/page.tsx index a12d0f7..53bbba2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -123,7 +123,14 @@ export default function LandingPage() {