Update src/app/page.tsx
This commit is contained in:
126
src/app/page.tsx
126
src/app/page.tsx
@@ -9,7 +9,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
|
||||
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
import { Cake, MapPin, Smile } from "lucide-react";
|
||||
import { Cake, MapPin, Smile, Sparkles } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -30,17 +30,11 @@ export default function LandingPage() {
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
name: "Gallery", id: "/gallery"},
|
||||
{
|
||||
name: "My Orders",
|
||||
id: "/orders",
|
||||
},
|
||||
name: "My Orders", id: "/orders"},
|
||||
]}
|
||||
brandName="Craveable Cakes"
|
||||
/>
|
||||
@@ -52,13 +46,9 @@ export default function LandingPage() {
|
||||
description="Designed by you. Baked by us. Your Ethiopian premium cake experience."
|
||||
buttons={[
|
||||
{
|
||||
text: "Build My Cake",
|
||||
href: "/build?step=1",
|
||||
},
|
||||
text: "Build My Cake", href: "/build?step=1"},
|
||||
{
|
||||
text: "Order Cookies",
|
||||
href: "/cookies",
|
||||
},
|
||||
text: "Order Cookies", href: "/cookies"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-vector/vintage-cake-set-with-pink-bows_107791-34056.jpg"
|
||||
imageAlt="Minimalist illustrated cake"
|
||||
@@ -71,28 +61,16 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Birthday Delight",
|
||||
description: "Classic cakes for your special days.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/muffin-with-flower_1157-588.jpg",
|
||||
buttonIcon: "Sparkles",
|
||||
title: "Birthday Delight", description: "Classic cakes for your special days.", imageSrc: "http://img.b2bpic.net/free-photo/muffin-with-flower_1157-588.jpg", buttonIcon: Sparkles,
|
||||
},
|
||||
{
|
||||
title: "Elegant Weddings",
|
||||
description: "Grand designs for grand moments.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pair-dessert-with-cinnamon-cup-tea_140725-2894.jpg",
|
||||
buttonIcon: "Sparkles",
|
||||
title: "Elegant Weddings", description: "Grand designs for grand moments.", imageSrc: "http://img.b2bpic.net/free-photo/pair-dessert-with-cinnamon-cup-tea_140725-2894.jpg", buttonIcon: Sparkles,
|
||||
},
|
||||
{
|
||||
title: "Corporate Events",
|
||||
description: "Professional cakes for your team.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pyramid-beautiful-white-porcelain-cups-saucers-with-nontraditional-wedding-cake-top_346278-1078.jpg",
|
||||
buttonIcon: "Sparkles",
|
||||
title: "Corporate Events", description: "Professional cakes for your team.", imageSrc: "http://img.b2bpic.net/free-photo/pyramid-beautiful-white-porcelain-cups-saucers-with-nontraditional-wedding-cake-top_346278-1078.jpg", buttonIcon: Sparkles,
|
||||
},
|
||||
{
|
||||
title: "Floral Minimalist",
|
||||
description: "Clean designs for natural lovers.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-freshly-baked-cake-with-raspberries-babies-white-tray-mixed-color-table_140725-91889.jpg",
|
||||
buttonIcon: "Sparkles",
|
||||
title: "Floral Minimalist", description: "Clean designs for natural lovers.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-freshly-baked-cake-with-raspberries-babies-white-tray-mixed-color-table_140725-91889.jpg", buttonIcon: Sparkles,
|
||||
},
|
||||
]}
|
||||
title="Every cake starts with an idea."
|
||||
@@ -108,37 +86,13 @@ export default function LandingPage() {
|
||||
description="Real stories from our happy customers across Ethiopia."
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
title: "Amazing Quality!",
|
||||
quote: "The cake was exactly as I designed it. Truly magical!",
|
||||
name: "Abebe G.",
|
||||
role: "Wedding Planner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-hands-holding-cake_23-2150154714.jpg",
|
||||
},
|
||||
id: "t1", title: "Amazing Quality!", quote: "The cake was exactly as I designed it. Truly magical!", name: "Abebe G.", role: "Wedding Planner", imageSrc: "http://img.b2bpic.net/free-photo/side-view-hands-holding-cake_23-2150154714.jpg"},
|
||||
{
|
||||
id: "t2",
|
||||
title: "Best Birthday Cake",
|
||||
quote: "So delicious and beautiful. Everyone at the party asked for the source.",
|
||||
name: "Sara M.",
|
||||
role: "Customer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-yummy-chocolate-cake-getting-decorated-with-fresh-fruits-by-female-dark-wall_179666-30719.jpg",
|
||||
},
|
||||
id: "t2", title: "Best Birthday Cake", quote: "So delicious and beautiful. Everyone at the party asked for the source.", name: "Sara M.", role: "Customer", imageSrc: "http://img.b2bpic.net/free-photo/front-view-yummy-chocolate-cake-getting-decorated-with-fresh-fruits-by-female-dark-wall_179666-30719.jpg"},
|
||||
{
|
||||
id: "t3",
|
||||
title: "Perfect Minimalist Design",
|
||||
quote: "Found the exact aesthetic I was looking for. Very professional.",
|
||||
name: "Fikre T.",
|
||||
role: "Design Enthusiast",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-woman-s-hand-holding-delicious-blueberry-round-cake-white-ceramic-plate_23-2148028522.jpg",
|
||||
},
|
||||
id: "t3", title: "Perfect Minimalist Design", quote: "Found the exact aesthetic I was looking for. Very professional.", name: "Fikre T.", role: "Design Enthusiast", imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-woman-s-hand-holding-delicious-blueberry-round-cake-white-ceramic-plate_23-2148028522.jpg"},
|
||||
{
|
||||
id: "t4",
|
||||
title: "Reliable and Fresh",
|
||||
quote: "Great service, delivered on time. The cake was fresh and moist.",
|
||||
name: "Helen K.",
|
||||
role: "Corporate Client",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-cake-plate_23-2147792981.jpg",
|
||||
},
|
||||
id: "t4", title: "Reliable and Fresh", quote: "Great service, delivered on time. The cake was fresh and moist.", name: "Helen K.", role: "Corporate Client", imageSrc: "http://img.b2bpic.net/free-photo/delicious-cake-plate_23-2147792981.jpg"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -152,25 +106,13 @@ export default function LandingPage() {
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "Do you deliver?",
|
||||
content: "Yes, we deliver across Addis Ababa and surrounding areas.",
|
||||
},
|
||||
id: "q1", title: "Do you deliver?", content: "Yes, we deliver across Addis Ababa and surrounding areas."},
|
||||
{
|
||||
id: "q2",
|
||||
title: "How far in advance should I order?",
|
||||
content: "We recommend at least 48 hours for standard cakes and 1 week for custom designs.",
|
||||
},
|
||||
id: "q2", title: "How far in advance should I order?", content: "We recommend at least 48 hours for standard cakes and 1 week for custom designs."},
|
||||
{
|
||||
id: "q3",
|
||||
title: "Are your ingredients local?",
|
||||
content: "We prioritize high-quality, locally sourced Ethiopian ingredients whenever possible.",
|
||||
},
|
||||
id: "q3", title: "Are your ingredients local?", content: "We prioritize high-quality, locally sourced Ethiopian ingredients whenever possible."},
|
||||
{
|
||||
id: "q4",
|
||||
title: "Can I customize the flavor?",
|
||||
content: "Absolutely! Our builder allows you to select from a wide range of flavor combinations.",
|
||||
},
|
||||
id: "q4", title: "Can I customize the flavor?", content: "Absolutely! Our builder allows you to select from a wide range of flavor combinations."},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -183,19 +125,13 @@ export default function LandingPage() {
|
||||
metrics={[
|
||||
{
|
||||
icon: Cake,
|
||||
label: "Cakes Baked",
|
||||
value: "1,200+",
|
||||
},
|
||||
label: "Cakes Baked", value: "1,200+"},
|
||||
{
|
||||
icon: Smile,
|
||||
label: "Happy Clients",
|
||||
value: "850+",
|
||||
},
|
||||
label: "Happy Clients", value: "850+"},
|
||||
{
|
||||
icon: MapPin,
|
||||
label: "Cities Served",
|
||||
value: "5+",
|
||||
},
|
||||
label: "Cities Served", value: "5+"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -206,29 +142,19 @@ export default function LandingPage() {
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Shop Phone",
|
||||
href: "tel:+251110000000",
|
||||
},
|
||||
label: "Shop Phone", href: "tel:+251110000000"},
|
||||
{
|
||||
label: "Email",
|
||||
href: "mailto:hello@craveablecakes.com",
|
||||
},
|
||||
label: "Email", href: "mailto:hello@craveablecakes.com"},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
label: "Instagram", href: "#"},
|
||||
{
|
||||
label: "Facebook",
|
||||
href: "#",
|
||||
},
|
||||
label: "Facebook", href: "#"},
|
||||
{
|
||||
label: "TikTok",
|
||||
href: "#",
|
||||
},
|
||||
label: "TikTok", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user