Merge version_1 into main #1

Merged
bender merged 1 commits from version_1 into main 2026-04-22 15:17:42 +00:00

View File

@@ -26,25 +26,15 @@ export default function LandingPage() {
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Menu",
id: "/menu",
},
name: "Menu", id: "/menu"},
{
name: "About",
id: "/about",
},
name: "About", id: "/about"},
{
name: "Order",
id: "/order",
},
name: "Order", id: "/order"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="Sheescakes'N More"
/>
@@ -56,9 +46,7 @@ export default function LandingPage() {
title="Baked with Passion in Northern Cambria"
buttons={[
{
text: "Read More",
href: "/about",
},
text: "Read More", href: "/about"},
]}
/>
</div>
@@ -68,19 +56,13 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Our Staff"
tag="Meet the Team"
membersAnimation="fade-in"
membersAnimation="slide-up"
memberVariant="card"
members={[
{
id: "a1",
name: "Elena R.",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-serving-pastry-cake-female-customer-coffee-shop_23-2148028059.jpg",
},
id: "a1", name: "Elena R.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-serving-pastry-cake-female-customer-coffee-shop_23-2148028059.jpg"},
{
id: "a2",
name: "Tom B.",
imageSrc: "http://img.b2bpic.net/free-photo/female-male-baker-holding-basket-baked-croissant-pastry-shop_23-2148189111.jpg",
},
id: "a2", name: "Tom B.", imageSrc: "http://img.b2bpic.net/free-photo/female-male-baker-holding-basket-baked-croissant-pastry-shop_23-2148189111.jpg"},
]}
/>
</div>
@@ -89,29 +71,19 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "Menu",
items: [
title: "Menu", items: [
{
label: "Cheesecakes",
href: "/menu",
},
label: "Cheesecakes", href: "/menu"},
{
label: "Cupcakes",
href: "/menu",
},
label: "Cupcakes", href: "/menu"},
],
},
{
title: "Bakery",
items: [
title: "Bakery", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
]}