Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d6d8f28abc | |||
| 123e2801a8 | |||
| 571293d78c | |||
| dc226f2abd | |||
| 2013a2c65f | |||
| 571fbab599 |
240
src/app/page.tsx
240
src/app/page.tsx
@@ -31,25 +31,15 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "hero"},
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "About", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Shop",
|
name: "Shop", id: "products"},
|
||||||
id: "products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Testimonials",
|
name: "Testimonials", id: "testimonials"},
|
||||||
id: "testimonials",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="LA Cake World"
|
brandName="LA Cake World"
|
||||||
/>
|
/>
|
||||||
@@ -58,62 +48,39 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboard
|
<HeroBillboard
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
title="Luxury Artisan Desserts Delivered to Your Door"
|
||||||
title="Indulge in LA Cake World"
|
|
||||||
description="Artisan cakes, handcrafted chocolates, and premium sweets made with love. Experience the finest desserts in the city."
|
description="Artisan cakes, handcrafted chocolates, and premium sweets made with love. Experience the finest desserts in the city."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Shop Now",
|
text: "Shop Now", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/woman-looking-goodies-local-male-producer_23-2149110840.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/woman-looking-goodies-local-male-producer_23-2149110840.jpg"
|
||||||
imageAlt="Luxurious cake display"
|
imageAlt="Luxurious cake display"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/man-scratching-his-beard-near-mirror_171337-16540.jpg",
|
src: "http://img.b2bpic.net/free-photo/man-scratching-his-beard-near-mirror_171337-16540.jpg", alt: "Satisfied customer"},
|
||||||
alt: "Satisfied customer",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/female-confectioner-boxing-desserts_23-2150360238.jpg",
|
src: "http://img.b2bpic.net/free-photo/female-confectioner-boxing-desserts_23-2150360238.jpg", alt: "Happy regular"},
|
||||||
alt: "Happy regular",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/delicious-donut-shop-ai-generated_23-2150694732.jpg",
|
src: "http://img.b2bpic.net/free-photo/delicious-donut-shop-ai-generated_23-2150694732.jpg", alt: "Dessert enthusiast"},
|
||||||
alt: "Dessert enthusiast",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/restaurant-hall-with-round-table-some-chairs-fireplace-plants_140725-8034.jpg",
|
src: "http://img.b2bpic.net/free-photo/restaurant-hall-with-round-table-some-chairs-fireplace-plants_140725-8034.jpg", alt: "Cake lover"},
|
||||||
alt: "Cake lover",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/portrait-beauty-businesswoman-leaning-against-brick-wall_613910-773.jpg",
|
src: "http://img.b2bpic.net/free-photo/portrait-beauty-businesswoman-leaning-against-brick-wall_613910-773.jpg", alt: "Community member"},
|
||||||
alt: "Community member",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Handcrafted Daily"},
|
||||||
text: "Handcrafted Daily",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Premium Ingredients"},
|
||||||
text: "Premium Ingredients",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Artisan Chocolates"},
|
||||||
text: "Artisan Chocolates",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Custom Cake Design"},
|
||||||
text: "Custom Cake Design",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Locally Sourced"},
|
||||||
text: "Locally Sourced",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -123,79 +90,39 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
heading={[
|
heading={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", content: "Our Passion for Perfection"},
|
||||||
content: "Our Passion for Perfection",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "image",
|
type: "image", src: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-bakery_23-2150273178.jpg", alt: "Cake baking"},
|
||||||
src: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-bakery_23-2150273178.jpg",
|
|
||||||
alt: "Cake baking",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="products" data-section="products">
|
<div id="products" data-section="products">
|
||||||
<ProductCardTwo
|
<ProductCardTwo
|
||||||
|
tag="Freshly Baked Daily"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
gridVariant="four-items-2x2-equal-grid"
|
gridVariant="four-items-2x2-equal-grid"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "p1",
|
id: "p1", brand: "LA Cake", name: "Truffle Box", price: "$25", rating: 5,
|
||||||
brand: "LA Cake",
|
reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-chocolate-assortments-candy_23-2148569689.jpg"},
|
||||||
name: "Truffle Box",
|
|
||||||
price: "$25",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "120",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-chocolate-assortments-candy_23-2148569689.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p2",
|
id: "p2", brand: "LA Cake", name: "Strawberry Delight", price: "$45", rating: 5,
|
||||||
brand: "LA Cake",
|
reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/strawberry-crepes-cake_74190-6273.jpg"},
|
||||||
name: "Strawberry Delight",
|
|
||||||
price: "$45",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "85",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/strawberry-crepes-cake_74190-6273.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p3",
|
id: "p3", brand: "LA Cake", name: "Dark Chocolate Bar", price: "$12", rating: 4,
|
||||||
brand: "LA Cake",
|
reviewCount: "200", imageSrc: "http://img.b2bpic.net/free-photo/paper-bag-with-chocolate-bars-cocoa-beans-wooden-table_23-2147873750.jpg"},
|
||||||
name: "Dark Chocolate Bar",
|
|
||||||
price: "$12",
|
|
||||||
rating: 4,
|
|
||||||
reviewCount: "200",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/paper-bag-with-chocolate-bars-cocoa-beans-wooden-table_23-2147873750.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p4",
|
id: "p4", brand: "LA Cake", name: "Macaron Assortment", price: "$30", rating: 5,
|
||||||
brand: "LA Cake",
|
reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-white-gypsophila-macaroons-white-box-wooden-table_23-2148087066.jpg"},
|
||||||
name: "Macaron Assortment",
|
|
||||||
price: "$30",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "150",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-white-gypsophila-macaroons-white-box-wooden-table_23-2148087066.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p5",
|
id: "p5", brand: "LA Cake", name: "Fudge Brownie", price: "$8", rating: 4,
|
||||||
brand: "LA Cake",
|
reviewCount: "300", imageSrc: "http://img.b2bpic.net/free-photo/fresh-homemade-muffins-chocolate-sauce-top-view_114579-61366.jpg"},
|
||||||
name: "Fudge Brownie",
|
|
||||||
price: "$8",
|
|
||||||
rating: 4,
|
|
||||||
reviewCount: "300",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-homemade-muffins-chocolate-sauce-top-view_114579-61366.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p6",
|
id: "p6", brand: "LA Cake", name: "Celebration Cake", price: "$60", rating: 5,
|
||||||
brand: "LA Cake",
|
reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/view-beautifully-ornate-weeding-cake_23-2151379529.jpg"},
|
||||||
name: "Celebration Cake",
|
|
||||||
price: "$60",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "45",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/view-beautifully-ornate-weeding-cake_23-2151379529.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Our Creations"
|
title="Our Creations"
|
||||||
description="Discover our selection of handcrafted cakes and chocolates."
|
description="Discover our selection of handcrafted cakes and chocolates."
|
||||||
@@ -209,45 +136,20 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "t1",
|
id: "t1", name: "Alice M.", handle: "@alice", testimonial: "The best cakes I have ever tasted!", rating: 5,
|
||||||
name: "Alice M.",
|
imageSrc: "http://img.b2bpic.net/free-photo/close-up-positive-executive-work_1098-519.jpg"},
|
||||||
handle: "@alice",
|
|
||||||
testimonial: "The best cakes I have ever tasted!",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-positive-executive-work_1098-519.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t2",
|
id: "t2", name: "Bob D.", handle: "@bob", testimonial: "Unbelievable quality and presentation.", rating: 5,
|
||||||
name: "Bob D.",
|
imageSrc: "http://img.b2bpic.net/free-photo/merry-young-adult-enjoying-christmas-conversation-video-call-room-decorated-festivity-celebration-talking-woman-preparing-drink-wine-kitchen-with-joyful-ornaments_482257-28400.jpg"},
|
||||||
handle: "@bob",
|
|
||||||
testimonial: "Unbelievable quality and presentation.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/merry-young-adult-enjoying-christmas-conversation-video-call-room-decorated-festivity-celebration-talking-woman-preparing-drink-wine-kitchen-with-joyful-ornaments_482257-28400.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t3",
|
id: "t3", name: "Charlie R.", handle: "@char", testimonial: "My go-to place for birthday cakes.", rating: 5,
|
||||||
name: "Charlie R.",
|
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-smiling-holding-birthday-cake-purple-wall_176420-2205.jpg"},
|
||||||
handle: "@char",
|
|
||||||
testimonial: "My go-to place for birthday cakes.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-smiling-holding-birthday-cake-purple-wall_176420-2205.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t4",
|
id: "t4", name: "Diana P.", handle: "@diana", testimonial: "Amazing chocolates! Highly recommend.", rating: 5,
|
||||||
name: "Diana P.",
|
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-young-woman_23-2147823623.jpg"},
|
||||||
handle: "@diana",
|
|
||||||
testimonial: "Amazing chocolates! Highly recommend.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-young-woman_23-2147823623.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t5",
|
id: "t5", name: "Evan K.", handle: "@evan", testimonial: "Stunning cakes and lovely service.", rating: 5,
|
||||||
name: "Evan K.",
|
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-sitting_23-2149481036.jpg"},
|
||||||
handle: "@evan",
|
|
||||||
testimonial: "Stunning cakes and lovely service.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-sitting_23-2149481036.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
showRating={true}
|
showRating={true}
|
||||||
title="Customer Stories"
|
title="Customer Stories"
|
||||||
@@ -261,20 +163,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "q1",
|
id: "q1", title: "Do you deliver?", content: "Yes, we offer local delivery within a 15-mile radius of LA. For further distances or bulk orders, please check our Shipping page for full details."},
|
||||||
title: "Do you deliver?",
|
|
||||||
content: "Yes, we offer local delivery options.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "q2",
|
id: "q2", title: "Can I order custom cakes?", content: "Absolutely! Contact us for bespoke designs."},
|
||||||
title: "Can I order custom cakes?",
|
|
||||||
content: "Absolutely! Contact us for bespoke designs.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "q3",
|
id: "q3", title: "Are ingredients natural?", content: "We use only premium, all-natural ingredients."},
|
||||||
title: "Are ingredients natural?",
|
|
||||||
content: "We use only premium, all-natural ingredients.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/professional-smiling-confectioner-decorating-gingerman_1163-2848.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/professional-smiling-confectioner-decorating-gingerman_1163-2848.jpg"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
@@ -289,14 +182,7 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
names={[
|
names={[
|
||||||
"The Knot",
|
"The Knot", "Wedding Wire", "Food & Wine", "Eater LA", "LA Times", "Bon Appetit", "Vogue"]}
|
||||||
"Wedding Wire",
|
|
||||||
"Food & Wine",
|
|
||||||
"Eater LA",
|
|
||||||
"LA Times",
|
|
||||||
"Bon Appetit",
|
|
||||||
"Vogue",
|
|
||||||
]}
|
|
||||||
title="Trusted by"
|
title="Trusted by"
|
||||||
description="We are proud to serve our local community."
|
description="We are proud to serve our local community."
|
||||||
/>
|
/>
|
||||||
@@ -309,16 +195,10 @@ export default function LandingPage() {
|
|||||||
description="Stop by our shop or send us a message."
|
description="Stop by our shop or send us a message."
|
||||||
inputs={[
|
inputs={[
|
||||||
{
|
{
|
||||||
name: "name",
|
name: "name", type: "text", placeholder: "Name", required: true,
|
||||||
type: "text",
|
|
||||||
placeholder: "Name",
|
|
||||||
required: true,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "email",
|
name: "email", type: "email", placeholder: "Email", required: true,
|
||||||
type: "email",
|
|
||||||
placeholder: "Email",
|
|
||||||
required: true,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-vintage-shop-window_141667-3.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/front-view-vintage-shop-window_141667-3.jpg"
|
||||||
@@ -329,29 +209,19 @@ export default function LandingPage() {
|
|||||||
<FooterBase
|
<FooterBase
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Shop",
|
title: "Shop", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Cakes",
|
label: "Cakes", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Chocolates",
|
label: "Chocolates", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "About",
|
title: "About", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Our Story",
|
label: "Our Story", href: "#about"},
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Contact",
|
label: "Contact", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user