Update src/app/deals/page.tsx
This commit is contained in:
@@ -12,31 +12,28 @@ export default function LandingPage() {
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "Departments",
|
||||
id: "/departments",
|
||||
},
|
||||
name: "Departments", id: "/departments"},
|
||||
{
|
||||
name: "Weekly Deals",
|
||||
id: "/deals",
|
||||
},
|
||||
name: "Weekly Deals", id: "/deals"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="Milam's Market"
|
||||
/>
|
||||
@@ -47,25 +44,14 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Organic Honeycrisp Apples",
|
||||
price: "$2.99/lb",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-box-with-green-vegetables_23-2148678872.jpg?_wi=3",
|
||||
},
|
||||
id: "1", name: "Organic Honeycrisp Apples", price: "$2.99/lb", imageSrc: "http://img.b2bpic.net/free-photo/front-view-box-with-green-vegetables_23-2148678872.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Grass-Fed Ground Beef",
|
||||
price: "$7.49/lb",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/butcher-workwear-posing-with-two-axes-refrigerated-warehouse-midst-meat-carcasses_613910-21674.jpg?_wi=3",
|
||||
},
|
||||
id: "2", name: "Grass-Fed Ground Beef", price: "$7.49/lb", imageSrc: "http://img.b2bpic.net/free-photo/butcher-workwear-posing-with-two-axes-refrigerated-warehouse-midst-meat-carcasses_613910-21674.jpg"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Fresh Atlantic Salmon",
|
||||
price: "$12.99/lb",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-vegetables-blue-crates-shelf-with-price-label_23-2147916211.jpg?_wi=3",
|
||||
},
|
||||
id: "3", name: "Fresh Atlantic Salmon", price: "$12.99/lb", imageSrc: "http://img.b2bpic.net/free-photo/fresh-vegetables-blue-crates-shelf-with-price-label_23-2147916211.jpg"},
|
||||
]}
|
||||
title="Weekly Market Deals"
|
||||
description="Explore our hand-picked selection of items on sale this week at Milam's Market."
|
||||
@@ -76,25 +62,17 @@ export default function LandingPage() {
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Offers",
|
||||
items: [
|
||||
title: "Offers", items: [
|
||||
{
|
||||
label: "Weekly Deals",
|
||||
href: "/deals",
|
||||
},
|
||||
label: "Weekly Deals", href: "/deals"},
|
||||
{
|
||||
label: "Store Locations",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Store Locations", href: "/contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Help",
|
||||
items: [
|
||||
title: "Help", items: [
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Contact Us", href: "/contact"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user