Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-03-05 04:07:47 +00:00

View File

@@ -15,7 +15,7 @@ export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="entrance-slide"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="small"
sizing="mediumLargeSizeMediumTitles"
@@ -109,7 +109,7 @@ export default function LandingPage() {
tagIcon={Zap}
plans={[
{
id: "1", badge: "Monday Special", badgeIcon={Calendar},
id: "1", badge: "Monday Special", badgeIcon: Calendar,
price: "Buy 2, Get 1", subtitle: "Fresh Croissants", buttons: [
{ text: "Add to Cart", href: "contact" },
{ text: "Learn More", href: "#" }
@@ -119,7 +119,7 @@ export default function LandingPage() {
]
},
{
id: "2", badge: "Weekend Bundle", badgeIcon={Gift},
id: "2", badge: "Weekend Bundle", badgeIcon: Gift,
price: "Save 20%", subtitle: "Premium Mixed Box", buttons: [
{ text: "Order Bundle", href: "contact" },
{ text: "See Details", href: "#" }
@@ -129,7 +129,7 @@ export default function LandingPage() {
]
},
{
id: "3", badge: "Student Discount", badgeIcon={BookOpen},
id: "3", badge: "Student Discount", badgeIcon: BookOpen,
price: "15% Off", subtitle: "For All Students", buttons: [
{ text: "Claim Discount", href: "contact" },
{ text: "Requirements", href: "#" }
@@ -155,11 +155,11 @@ export default function LandingPage() {
testimonials={[
{
id: "1", name: "Sarah Mitchell", handle: "@sarahm_eats", testimonial: "The croissants at 15 Ad Bakery are absolutely incredible! Fresh, buttery, and perfectly flaky every single time. It's become my morning ritual.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-holding-bags-showing-thumb-up_1262-5695.jpg?_wi=1", imageAlt: "Sarah Mitchell"
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-holding-bags-showing-thumb-up_1262-5695.jpg", imageAlt: "Sarah Mitchell"
},
{
id: "2", name: "James Chen", handle: "@jchen_food", testimonial: "I've tried many bakeries, but this place stands out. The quality of ingredients and attention to detail is unmatched. Highly recommended!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg?_wi=1", imageAlt: "James Chen"
imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg", imageAlt: "James Chen"
},
{
id: "3", name: "Emma Rodriguez", handle: "@emmasbites", testimonial: "Their sourdough bread has completely changed my morning. Authentic, delicious, and crafted with real passion. Worth every penny!", rating: 5,
@@ -171,11 +171,11 @@ export default function LandingPage() {
},
{
id: "5", name: "Lisa Wong", handle: "@lisawong_cafe", testimonial: "Perfect for special occasions or just treating yourself. I order their cakes for all my events. Never disappointed!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-holding-bags-showing-thumb-up_1262-5695.jpg?_wi=2", imageAlt: "Lisa Wong"
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-holding-bags-showing-thumb-up_1262-5695.jpg", imageAlt: "Lisa Wong"
},
{
id: "6", name: "David Garcia", handle: "@davidg_lifestyle", testimonial: "The donuts are to die for! Fresh every day, creative flavors, and they actually care about quality. This is the real deal.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg?_wi=2", imageAlt: "David Garcia"
imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg", imageAlt: "David Garcia"
}
]}
showRating={true}