Update src/app/cakes/page.tsx

This commit is contained in:
2026-03-09 20:36:04 +00:00
parent 4bdab6c55e
commit 997b0fac57

View File

@@ -28,14 +28,13 @@ export default function CakesPage() {
brandName="International Bakery"
navItems={[
{ name: "Home", id: "/" },
{ name: "Menu", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "About", id: "/about" },
{ name: "Cakes", id: "/cakes" },
{ name: "Contact", id: "/" }
{ name: "Contact", id: "/contact" }
]}
button={{
text: "Visit Today",
href: "#visit"
text: "Visit Today", href: "#visit"
}}
/>
</div>
@@ -53,25 +52,13 @@ export default function CakesPage() {
gridVariant="three-columns-all-equal-width"
products={[
{
id: "tres-leches",
name: "Tres Leches Cake",
price: "$24.99",
imageSrc: "http://img.b2bpic.net/free-photo/sweet-cake-with-basket-roses-marble-surface_114579-21578.jpg?_wi=2",
imageAlt: "Traditional tres leches cake with cream and fruit"
id: "tres-leches", name: "Tres Leches Cake", price: "$24.99", imageSrc: "http://img.b2bpic.net/free-photo/sweet-cake-with-basket-roses-marble-surface_114579-21578.jpg?_wi=2", imageAlt: "Traditional tres leches cake with cream and fruit"
},
{
id: "chocolate",
name: "Chocolate Celebration Cake",
price: "$22.99",
imageSrc: "http://img.b2bpic.net/free-photo/epiphany-day-dessert-with-paper-crown-tablecloth_23-2148740590.jpg?_wi=5",
imageAlt: "Rich chocolate celebration cake"
id: "chocolate", name: "Chocolate Celebration Cake", price: "$22.99", imageSrc: "http://img.b2bpic.net/free-photo/epiphany-day-dessert-with-paper-crown-tablecloth_23-2148740590.jpg?_wi=5", imageAlt: "Rich chocolate celebration cake"
},
{
id: "vanilla",
name: "Vanilla Dream Cake",
price: "$20.99",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-food-frame_23-2148708269.jpg?_wi=4",
imageAlt: "Classic vanilla dream cake with fresh toppings"
id: "vanilla", name: "Vanilla Dream Cake", price: "$20.99", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-food-frame_23-2148708269.jpg?_wi=4", imageAlt: "Classic vanilla dream cake with fresh toppings"
}
]}
/>
@@ -86,40 +73,22 @@ export default function CakesPage() {
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Maria Lopez",
imageSrc: "http://img.b2bpic.net/free-photo/confectioner-uniform-decorates-cake_1157-33465.jpg?_wi=2",
imageAlt: "Maria Lopez celebration photo"
id: "1", name: "Maria Lopez", imageSrc: "http://img.b2bpic.net/free-photo/confectioner-uniform-decorates-cake_1157-33465.jpg?_wi=2", imageAlt: "Maria Lopez celebration photo"
},
{
id: "2",
name: "James Wilson",
imageSrc: "http://img.b2bpic.net/free-photo/happy-young-bakery-shop-owner-taking-phone-order_23-2148028001.jpg?_wi=2",
imageAlt: "James Wilson celebration photo"
id: "2", name: "James Wilson", imageSrc: "http://img.b2bpic.net/free-photo/happy-young-bakery-shop-owner-taking-phone-order_23-2148028001.jpg?_wi=2", imageAlt: "James Wilson celebration photo"
},
{
id: "3",
name: "Sofia Garcia",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-afro-american-woman_23-2148332136.jpg?_wi=2",
imageAlt: "Sofia Garcia celebration photo"
id: "3", name: "Sofia Garcia", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-afro-american-woman_23-2148332136.jpg?_wi=2", imageAlt: "Sofia Garcia celebration photo"
},
{
id: "4",
name: "Carlos Mendez",
imageSrc: "http://img.b2bpic.net/free-photo/queer-couple-celebrating-birthday-together_23-2149570899.jpg?_wi=2",
imageAlt: "Carlos Mendez celebration photo"
id: "4", name: "Carlos Mendez", imageSrc: "http://img.b2bpic.net/free-photo/queer-couple-celebrating-birthday-together_23-2149570899.jpg?_wi=2", imageAlt: "Carlos Mendez celebration photo"
},
{
id: "5",
name: "Isabella Santos",
imageSrc: "http://img.b2bpic.net/free-photo/shop-assistant-preparing-croissant-bag_23-2147985156.jpg?_wi=2",
imageAlt: "Isabella Santos celebration photo"
id: "5", name: "Isabella Santos", imageSrc: "http://img.b2bpic.net/free-photo/shop-assistant-preparing-croissant-bag_23-2147985156.jpg?_wi=2", imageAlt: "Isabella Santos celebration photo"
},
{
id: "6",
name: "Diego Ruiz",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-showing-approval_23-2148334512.jpg?_wi=2",
imageAlt: "Diego Ruiz celebration photo"
id: "6", name: "Diego Ruiz", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-showing-approval_23-2148334512.jpg?_wi=2", imageAlt: "Diego Ruiz celebration photo"
}
]}
/>
@@ -148,12 +117,10 @@ export default function CakesPage() {
<FooterLogoReveal
logoText="International Bakery Inc"
leftLink={{
text: "Privacy Policy",
href: "#"
text: "Privacy Policy", href: "#"
}}
rightLink={{
text: "Follow Us",
href: "#"
text: "Follow Us", href: "#"
}}
/>
</div>