Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
280
src/app/page.tsx
280
src/app/page.tsx
@@ -10,7 +10,7 @@ import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboa
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||
import { Clock, Leaf, Palette, Star, Truck } from "lucide-react";
|
||||
import { Clipboard, Clock, Leaf, Palette, Star, Truck, ChefHat } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -30,18 +30,9 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Menu",
|
||||
id: "menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "reviews",
|
||||
},
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reviews", id: "reviews" },
|
||||
]}
|
||||
brandName="Swirls & Sprinkles"
|
||||
/>
|
||||
@@ -49,48 +40,17 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Artistry in Every Bite"
|
||||
description="Searching no more—experience the moist, fresh, and beautiful confections that provide the perfect cherry on top of your celebrations."
|
||||
buttons={[
|
||||
{
|
||||
text: "Explore Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Explore Menu", href: "#menu" }]}
|
||||
carouselItems={[
|
||||
{
|
||||
id: "1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crispy-cookies-wooden-board-piece-burlap_114579-38683.jpg?_wi=1",
|
||||
imageAlt: "Artisan cake",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-sweets-cake-with-berries-lace-doily-green-sweets-waffles-cup-tea_140725-73804.jpg?_wi=1",
|
||||
imageAlt: "Gourmet cake",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/colorful-delicious-cupcakes-with-frosting_23-2149667658.jpg?_wi=1",
|
||||
imageAlt: "Delicate cupcakes",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cup-coffee-with-cookies-around_114579-19997.jpg",
|
||||
imageAlt: "Artisan cookies",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/served-bar-table-with-variety-sweets_8353-10440.jpg",
|
||||
imageAlt: "Bakery scene",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/walnut-cake-cake-stand_1301-1026.jpg",
|
||||
imageAlt: "Close up cake",
|
||||
},
|
||||
{ id: "1", imageSrc: "http://img.b2bpic.net/free-photo/crispy-cookies-wooden-board-piece-burlap_114579-38683.jpg", imageAlt: "Artisan cake" },
|
||||
{ id: "2", imageSrc: "http://img.b2bpic.net/free-photo/top-view-sweets-cake-with-berries-lace-doily-green-sweets-waffles-cup-tea_140725-73804.jpg", imageAlt: "Gourmet cake" },
|
||||
{ id: "3", imageSrc: "http://img.b2bpic.net/free-photo/colorful-delicious-cupcakes-with-frosting_23-2149667658.jpg", imageAlt: "Delicate cupcakes" },
|
||||
{ id: "4", imageSrc: "http://img.b2bpic.net/free-photo/cup-coffee-with-cookies-around_114579-19997.jpg", imageAlt: "Artisan cookies" },
|
||||
{ id: "5", imageSrc: "http://img.b2bpic.net/free-photo/served-bar-table-with-variety-sweets_8353-10440.jpg", imageAlt: "Bakery scene" },
|
||||
{ id: "6", imageSrc: "http://img.b2bpic.net/free-photo/walnut-cake-cake-stand_1301-1026.jpg", imageAlt: "Close up cake" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -100,21 +60,9 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Meet Shikha"
|
||||
metrics={[
|
||||
{
|
||||
icon: Star,
|
||||
label: "Rating",
|
||||
value: "5.0",
|
||||
},
|
||||
{
|
||||
icon: Leaf,
|
||||
label: "Ingredients",
|
||||
value: "Organic",
|
||||
},
|
||||
{
|
||||
icon: Clock,
|
||||
label: "Delivery",
|
||||
value: "Timely",
|
||||
},
|
||||
{ icon: Star, label: "Rating", value: "5.0" },
|
||||
{ icon: Leaf, label: "Ingredients", value: "Organic" },
|
||||
{ icon: Clock, label: "Delivery", value: "Timely" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -127,42 +75,12 @@ export default function LandingPage() {
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "c1",
|
||||
name: "Signature Wedding Cake",
|
||||
price: "Custom",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-from-afar-dessert-macaroons-strawberries-plate-lace-doily-bowls-with-chocolate-strawberries-chocolate-cream-table_140725-111878.jpg",
|
||||
},
|
||||
{
|
||||
id: "c2",
|
||||
name: "Custom Birthday Cake",
|
||||
price: "$80+",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chocolate-fruit-dessert-plate_141793-1294.jpg",
|
||||
},
|
||||
{
|
||||
id: "cu1",
|
||||
name: "Assorted Cupcakes",
|
||||
price: "$45/box",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-chocolate-cakes-with-coconut-white-surface_140725-115544.jpg",
|
||||
},
|
||||
{
|
||||
id: "cu2",
|
||||
name: "Floral Cupcakes",
|
||||
price: "$50/box",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-pink-cupcake-high-angle_23-2148815882.jpg",
|
||||
},
|
||||
{
|
||||
id: "co1",
|
||||
name: "Gourmet Cookies",
|
||||
price: "$30/box",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-freshly-cooked-cookies-with-jam-christmas_181624-59027.jpg",
|
||||
},
|
||||
{
|
||||
id: "co2",
|
||||
name: "Artisan Shortbread",
|
||||
price: "$25/box",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-golden-coffee-cups-jazzve-with-cookies-walnuts-black-surface_181624-7022.jpg",
|
||||
},
|
||||
{ id: "c1", name: "Signature Wedding Cake", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/top-view-from-afar-dessert-macaroons-strawberries-plate-lace-doily-bowls-with-chocolate-strawberries-chocolate-cream-table_140725-111878.jpg" },
|
||||
{ id: "c2", name: "Custom Birthday Cake", price: "$80+", imageSrc: "http://img.b2bpic.net/free-photo/chocolate-fruit-dessert-plate_141793-1294.jpg" },
|
||||
{ id: "cu1", name: "Assorted Cupcakes", price: "$45/box", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-chocolate-cakes-with-coconut-white-surface_140725-115544.jpg" },
|
||||
{ id: "cu2", name: "Floral Cupcakes", price: "$50/box", imageSrc: "http://img.b2bpic.net/free-photo/delicious-pink-cupcake-high-angle_23-2148815882.jpg" },
|
||||
{ id: "co1", name: "Gourmet Cookies", price: "$30/box", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-freshly-cooked-cookies-with-jam-christmas_181624-59027.jpg" },
|
||||
{ id: "co2", name: "Artisan Shortbread", price: "$25/box", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-golden-coffee-cups-jazzve-with-cookies-walnuts-black-surface_181624-7022.jpg" },
|
||||
]}
|
||||
title="Our Artisan Menu"
|
||||
description="From custom wedding cakes to delicate cookies, every item is crafted with love and organic ingredients."
|
||||
@@ -176,72 +94,24 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Inquiry",
|
||||
description: "Share your vision and date.",
|
||||
items: [
|
||||
{
|
||||
icon: Clipboard,
|
||||
text: "Discuss needs",
|
||||
},
|
||||
],
|
||||
title: "Inquiry", description: "Share your vision and date.", items: [{ icon: Clipboard, text: "Discuss needs" }],
|
||||
reverse: false,
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/trendy-portion-desserts-candy-bar_8353-11444.jpg",
|
||||
imageAlt: "Inquiry",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crispy-cookies-wooden-board-piece-burlap_114579-38683.jpg?_wi=2",
|
||||
imageAlt: "artisan bakery hero shot",
|
||||
media: { imageSrc: "http://img.b2bpic.net/free-photo/trendy-portion-desserts-candy-bar_8353-11444.jpg", imageAlt: "Inquiry" }
|
||||
},
|
||||
{
|
||||
title: "Design",
|
||||
description: "Custom concepts sketched.",
|
||||
items: [
|
||||
{
|
||||
icon: Palette,
|
||||
text: "Select design",
|
||||
},
|
||||
],
|
||||
title: "Design", description: "Custom concepts sketched.", items: [{ icon: Palette, text: "Select design" }],
|
||||
reverse: true,
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/composition-with-baking-ingredients-kitchen-accessories-white-table-top-view_169016-8714.jpg",
|
||||
imageAlt: "Design",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-holding-tray-with-cupcakes_23-2150798164.jpg",
|
||||
imageAlt: "artisan bakery hero shot",
|
||||
media: { imageSrc: "http://img.b2bpic.net/free-photo/composition-with-baking-ingredients-kitchen-accessories-white-table-top-view_169016-8714.jpg", imageAlt: "Design" }
|
||||
},
|
||||
{
|
||||
title: "Crafting",
|
||||
description: "Baked to perfection.",
|
||||
items: [
|
||||
{
|
||||
icon: ChefHat,
|
||||
text: "Organic sourcing",
|
||||
},
|
||||
],
|
||||
title: "Crafting", description: "Baked to perfection.", items: [{ icon: ChefHat, text: "Organic sourcing" }],
|
||||
reverse: false,
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/many-mixed-alternative-baked-breads-presented-sale-rustic-wooden-table-professional-bakery-made-from-pistachio_346278-834.jpg",
|
||||
imageAlt: "Baking",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-sweets-cake-with-berries-lace-doily-green-sweets-waffles-cup-tea_140725-73804.jpg?_wi=2",
|
||||
imageAlt: "artisan bakery hero shot",
|
||||
media: { imageSrc: "http://img.b2bpic.net/free-photo/many-mixed-alternative-baked-breads-presented-sale-rustic-wooden-table-professional-bakery-made-from-pistachio_346278-834.jpg", imageAlt: "Baking" }
|
||||
},
|
||||
{
|
||||
title: "Delivery",
|
||||
description: "Arrives fresh to your door.",
|
||||
items: [
|
||||
{
|
||||
icon: Truck,
|
||||
text: "Timely arrival",
|
||||
},
|
||||
],
|
||||
title: "Delivery", description: "Arrives fresh to your door.", items: [{ icon: Truck, text: "Timely arrival" }],
|
||||
reverse: true,
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-christmas-cookies-arrangement_23-2148343816.jpg",
|
||||
imageAlt: "Delivery",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/colorful-delicious-cupcakes-with-frosting_23-2149667658.jpg?_wi=2",
|
||||
imageAlt: "artisan bakery hero shot",
|
||||
media: { imageSrc: "http://img.b2bpic.net/free-photo/top-view-christmas-cookies-arrangement_23-2148343816.jpg", imageAlt: "Delivery" }
|
||||
},
|
||||
]}
|
||||
title="How It Works"
|
||||
@@ -255,46 +125,11 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah J.",
|
||||
handle: "@sarahj",
|
||||
testimonial: "Moist, fresh, and beautiful! Truly the best cake I have ever had.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-woman-showing-eclairs-bakery-counter_23-2148189123.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael K.",
|
||||
handle: "@mikey",
|
||||
testimonial: "Search no more—this is the real deal for artisan baking.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-eating-seaweed-snacks_23-2150520019.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily R.",
|
||||
handle: "@emily",
|
||||
testimonial: "Everything was perfect, from the taste to the design. Will order again.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dark-skinned-afro-american-man-dressed-casually-sits-kitchen-with-tablet-computer-reads-news-online-when-his-wife-makes-sandwhiches_273609-8937.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "David L.",
|
||||
handle: "@davidl",
|
||||
testimonial: "Great service and timely delivery. The quality is unmatched.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-woman-wearing-yellow-bandana_273609-13338.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Priya V.",
|
||||
handle: "@priyav",
|
||||
testimonial: "Shikha is so talented, her cupcakes are simply delicious!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-optimistic-man-show-thumb-up_176420-17851.jpg",
|
||||
},
|
||||
{ id: "1", name: "Sarah J.", handle: "@sarahj", testimonial: "Moist, fresh, and beautiful! Truly the best cake I have ever had.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-woman-showing-eclairs-bakery-counter_23-2148189123.jpg" },
|
||||
{ id: "2", name: "Michael K.", handle: "@mikey", testimonial: "Search no more—this is the real deal for artisan baking.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/person-eating-seaweed-snacks_23-2150520019.jpg" },
|
||||
{ id: "3", name: "Emily R.", handle: "@emily", testimonial: "Everything was perfect, from the taste to the design. Will order again.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/dark-skinned-afro-american-man-dressed-casually-sits-kitchen-with-tablet-computer-reads-news-online-when-his-wife-makes-sandwhiches_273609-8937.jpg" },
|
||||
{ id: "4", name: "David L.", handle: "@davidl", testimonial: "Great service and timely delivery. The quality is unmatched.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/stylish-woman-wearing-yellow-bandana_273609-13338.jpg" },
|
||||
{ id: "5", name: "Priya V.", handle: "@priyav", testimonial: "Shikha is so talented, her cupcakes are simply delicious!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-optimistic-man-show-thumb-up_176420-17851.jpg" },
|
||||
]}
|
||||
showRating={true}
|
||||
title="Customer Stories"
|
||||
@@ -305,16 +140,9 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "rotated-rays-static",
|
||||
}}
|
||||
background={{ variant: "rotated-rays-static" }}
|
||||
text="Ready to bring the cherry on top to your next event? Contact us today to start your journey."
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Shikha",
|
||||
href: "mailto:hello@swirls.com",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Contact Shikha", href: "mailto:hello@swirls.com" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -323,37 +151,17 @@ export default function LandingPage() {
|
||||
logoText="Swirls & Sprinkles"
|
||||
columns={[
|
||||
{
|
||||
title: "Menu",
|
||||
items: [
|
||||
{
|
||||
label: "Cakes",
|
||||
href: "#menu",
|
||||
},
|
||||
{
|
||||
label: "Cupcakes",
|
||||
href: "#menu",
|
||||
},
|
||||
{
|
||||
label: "Cookies",
|
||||
href: "#menu",
|
||||
},
|
||||
title: "Menu", items: [
|
||||
{ label: "Cakes", href: "#menu" },
|
||||
{ label: "Cupcakes", href: "#menu" },
|
||||
{ label: "Cookies", href: "#menu" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "#reviews",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Reviews", href: "#reviews" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user