Update src/app/custom-cakes/page.tsx
This commit is contained in:
@@ -22,17 +22,15 @@ export default function CustomCakesPage() {
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
title: "Quick Links", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Menu", href: "/menu" },
|
||||
{ label: "About", href: "/" },
|
||||
{ label: "About", href: "/#about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
title: "Services", items: [
|
||||
{ label: "Table Reservation", href: "/contact" },
|
||||
{ label: "Custom Cakes", href: "/custom-cakes" },
|
||||
{ label: "Catering & Events", href: "/catering" },
|
||||
@@ -40,17 +38,15 @@ export default function CustomCakesPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Locations",
|
||||
items: [
|
||||
{ label: "Blue Area Branch", href: "/" },
|
||||
{ label: "F-11 Branch", href: "/" },
|
||||
{ label: "Hours & Info", href: "/" },
|
||||
{ label: "Directions", href: "/" },
|
||||
title: "Locations", items: [
|
||||
{ label: "Blue Area Branch", href: "/locations" },
|
||||
{ label: "F-11 Branch", href: "/locations" },
|
||||
{ label: "Hours & Info", href: "/locations" },
|
||||
{ label: "Directions", href: "/locations" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
title: "Connect", items: [
|
||||
{ label: "WhatsApp Us", href: "https://wa.me/923005555555" },
|
||||
{ label: "Call Now", href: "tel:+923005555555" },
|
||||
{ label: "Email", href: "mailto:hello@loafology.com" },
|
||||
@@ -75,14 +71,16 @@ export default function CustomCakesPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Loafology"
|
||||
navItems={navItems.map((item) => ({
|
||||
name: item.name,
|
||||
id: item.id,
|
||||
}))}
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Custom Cakes", id: "/custom-cakes" },
|
||||
{ name: "Locations", id: "/locations" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
button={{
|
||||
text: "Call Now",
|
||||
href: "tel:+923005555555",
|
||||
}}
|
||||
text: "Call Now", href: "tel:+923005555555"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -95,9 +93,7 @@ export default function CustomCakesPage() {
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{
|
||||
text: "Start Your Design",
|
||||
href: "/contact",
|
||||
},
|
||||
text: "Start Your Design", href: "/contact"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -111,33 +107,17 @@ export default function CustomCakesPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Wedding & Engagement Cakes",
|
||||
tags: ["Premium", "Multi-Tier"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-products-arrangement-bakery_23-2150273142.jpg?_wi=5",
|
||||
imageAlt: "Elegant wedding cake display",
|
||||
},
|
||||
id: "1", title: "Wedding & Engagement Cakes", tags: ["Premium", "Multi-Tier"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-products-arrangement-bakery_23-2150273142.jpg?_wi=5", imageAlt: "Elegant wedding cake display"},
|
||||
{
|
||||
id: "2",
|
||||
title: "Birthday & Anniversary Cakes",
|
||||
tags: ["Custom Design", "Personalized"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/plates-table-birthday-party_23-2147716853.jpg?_wi=1",
|
||||
imageAlt: "Colorful birthday celebration cake",
|
||||
},
|
||||
id: "2", title: "Birthday & Anniversary Cakes", tags: ["Custom Design", "Personalized"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/plates-table-birthday-party_23-2147716853.jpg?_wi=1", imageAlt: "Colorful birthday celebration cake"},
|
||||
{
|
||||
id: "3",
|
||||
title: "Corporate & Event Cakes",
|
||||
tags: ["Branding", "Large Format"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheese-plate-sausages-with-vegetables_140725-3366.jpg?_wi=4",
|
||||
imageAlt: "Professional corporate event cake",
|
||||
},
|
||||
id: "3", title: "Corporate & Event Cakes", tags: ["Branding", "Large Format"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheese-plate-sausages-with-vegetables_140725-3366.jpg?_wi=4", imageAlt: "Professional corporate event cake"},
|
||||
{
|
||||
id: "4",
|
||||
title: "Specialty & Dietary Cakes",
|
||||
tags: ["Gluten-Free", "Vegan Options"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/individual-epiphany-cake-roscon-de-reyes-wooden-table_123827-28614.jpg?_wi=3",
|
||||
imageAlt: "Specialty dietary inclusive cakes",
|
||||
},
|
||||
id: "4", title: "Specialty & Dietary Cakes", tags: ["Gluten-Free", "Vegan Options"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/individual-epiphany-cake-roscon-de-reyes-wooden-table_123827-28614.jpg?_wi=3", imageAlt: "Specialty dietary inclusive cakes"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -152,53 +132,21 @@ export default function CustomCakesPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Classic Vanilla Sponge",
|
||||
price: "From PKR 3,500",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-products-arrangement-bakery_23-2150273142.jpg?_wi=6",
|
||||
imageAlt: "Classic vanilla sponge cake",
|
||||
},
|
||||
id: "1", name: "Classic Vanilla Sponge", price: "From PKR 3,500", imageSrc: "http://img.b2bpic.net/free-photo/delicious-products-arrangement-bakery_23-2150273142.jpg?_wi=6", imageAlt: "Classic vanilla sponge cake"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Rich Chocolate Decadence",
|
||||
price: "From PKR 4,200",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/croissants-flat-lay-plaster-kitchen-towel_176474-8190.jpg?_wi=4",
|
||||
imageAlt: "Rich chocolate cake",
|
||||
},
|
||||
id: "2", name: "Rich Chocolate Decadence", price: "From PKR 4,200", imageSrc: "http://img.b2bpic.net/free-photo/croissants-flat-lay-plaster-kitchen-towel_176474-8190.jpg?_wi=4", imageAlt: "Rich chocolate cake"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Strawberry Cream Dream",
|
||||
price: "From PKR 4,500",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wooden-board-homemade-sandwich-sliced-vegetables-marble-surface_114579-38904.jpg?_wi=3",
|
||||
imageAlt: "Strawberry cream cake",
|
||||
},
|
||||
id: "3", name: "Strawberry Cream Dream", price: "From PKR 4,500", imageSrc: "http://img.b2bpic.net/free-photo/wooden-board-homemade-sandwich-sliced-vegetables-marble-surface_114579-38904.jpg?_wi=3", imageAlt: "Strawberry cream cake"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Lemon Zest Delight",
|
||||
price: "From PKR 3,800",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/individual-epiphany-cake-roscon-de-reyes-wooden-table_123827-28614.jpg?_wi=4",
|
||||
imageAlt: "Lemon zest cake",
|
||||
},
|
||||
id: "4", name: "Lemon Zest Delight", price: "From PKR 3,800", imageSrc: "http://img.b2bpic.net/free-photo/individual-epiphany-cake-roscon-de-reyes-wooden-table_123827-28614.jpg?_wi=4", imageAlt: "Lemon zest cake"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Red Velvet Romance",
|
||||
price: "From PKR 4,000",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheese-plate-sausages-with-vegetables_140725-3366.jpg?_wi=5",
|
||||
imageAlt: "Red velvet cake",
|
||||
},
|
||||
id: "5", name: "Red Velvet Romance", price: "From PKR 4,000", imageSrc: "http://img.b2bpic.net/free-photo/cheese-plate-sausages-with-vegetables_140725-3366.jpg?_wi=5", imageAlt: "Red velvet cake"},
|
||||
{
|
||||
id: "6",
|
||||
name: "Carrot Cake Elegance",
|
||||
price: "From PKR 3,900",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-friends-eating-restaurant_23-2150491788.jpg?_wi=3",
|
||||
imageAlt: "Carrot cake",
|
||||
},
|
||||
id: "6", name: "Carrot Cake Elegance", price: "From PKR 3,900", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-friends-eating-restaurant_23-2150491788.jpg?_wi=3", imageAlt: "Carrot cake"},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "View All Flavors",
|
||||
href: "/contact",
|
||||
},
|
||||
text: "View All Flavors", href: "/contact"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -211,13 +159,9 @@ export default function CustomCakesPage() {
|
||||
description="Our expert bakers are ready to bring your cake vision to life. Contact us today to discuss your requirements, preferred flavors, design, and delivery date. We take orders 2-3 weeks in advance to ensure the highest quality."
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Our Bakers",
|
||||
href: "/contact",
|
||||
},
|
||||
text: "Contact Our Bakers", href: "/contact"},
|
||||
{
|
||||
text: "Call Directly",
|
||||
href: "tel:+923005555555",
|
||||
},
|
||||
text: "Call Directly", href: "tel:+923005555555"},
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={true}
|
||||
|
||||
Reference in New Issue
Block a user