Update src/app/departments/page.tsx

This commit is contained in:
2026-03-26 23:54:28 +00:00
parent c97a1dba88
commit a79f4ca220

View File

@@ -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"
/>
@@ -50,20 +47,11 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
title: "Produce",
description: "Hand-picked, locally sourced fruits and vegetables delivered daily.",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-box-with-green-vegetables_23-2148678872.jpg?_wi=2",
},
title: "Produce", description: "Hand-picked, locally sourced fruits and vegetables delivered daily.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-box-with-green-vegetables_23-2148678872.jpg"},
{
title: "Premium Meats",
description: "Expertly cut premium meats from pasture-raised animals.",
imageSrc: "http://img.b2bpic.net/free-photo/butcher-workwear-posing-with-two-axes-refrigerated-warehouse-midst-meat-carcasses_613910-21674.jpg?_wi=2",
},
title: "Premium Meats", description: "Expertly cut premium meats from pasture-raised animals.", imageSrc: "http://img.b2bpic.net/free-photo/butcher-workwear-posing-with-two-axes-refrigerated-warehouse-midst-meat-carcasses_613910-21674.jpg"},
{
title: "Fresh Seafood",
description: "Daily arrivals of fresh catches from sustainable fisheries.",
imageSrc: "http://img.b2bpic.net/free-photo/fresh-vegetables-blue-crates-shelf-with-price-label_23-2147916211.jpg?_wi=2",
},
title: "Fresh Seafood", description: "Daily arrivals of fresh catches from sustainable fisheries.", imageSrc: "http://img.b2bpic.net/free-photo/fresh-vegetables-blue-crates-shelf-with-price-label_23-2147916211.jpg"},
]}
title="Our Departments"
description="Discover our world-class departments, designed to bring the best ingredients to your kitchen table."
@@ -74,29 +62,19 @@ export default function LandingPage() {
<FooterBase
columns={[
{
title: "Shop",
items: [
title: "Shop", items: [
{
label: "Produce",
href: "/departments",
},
label: "Produce", href: "/departments"},
{
label: "Meat & Seafood",
href: "/departments",
},
label: "Meat & Seafood", href: "/departments"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
]}