Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6ddf2206cb | |||
| 6c55da4cb2 | |||
| 5f61e07578 | |||
| 43e429a852 | |||
| 9b31de0b7b | |||
| 1e9b277f3e | |||
| 785fc3c6ca | |||
| 48e166766e |
@@ -38,7 +38,7 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleMinimal
|
<NavbarStyleMinimal
|
||||||
brandName="Edgetabs"
|
brandName="Edgetabs"
|
||||||
button={{
|
button={{
|
||||||
text: "Shop Now", href: "#products"
|
text: "Shop Now", href: "products", onClick: () => scrollToSection('products')
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -51,10 +51,10 @@ export default function LandingPage() {
|
|||||||
tagIcon={Zap}
|
tagIcon={Zap}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Shop Now and Power Your Day", href: "#products"
|
text: "Shop Now and Power Your Day", href: "products", onClick: () => scrollToSection('products')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "Learn More", href: "#about"
|
text: "Learn More", href: "about", onClick: () => scrollToSection('about')
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
imageSrc="https://img.b2bpic.net/free-photo/traditional-italian-dessert-tiramisu-glasses-top-view_114579-9837.jpg"
|
imageSrc="https://img.b2bpic.net/free-photo/traditional-italian-dessert-tiramisu-glasses-top-view_114579-9837.jpg"
|
||||||
@@ -94,7 +94,7 @@ export default function LandingPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Learn More", onClick: () => scrollToSection('products')
|
text: "Learn More", href: "products", onClick: () => scrollToSection('products')
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
features={[
|
features={[
|
||||||
@@ -127,10 +127,10 @@ export default function LandingPage() {
|
|||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "single", name: "Single Tin (10 Strips)", price: "$14.99", imageSrc: "https://img.b2bpic.net/free-photo/flat-lay-nuts-milk-carton-arrangement_23-2149139375.jpg", imageAlt: "Edgetabs single tin with 10 strips", initialQuantity: 1
|
id: "bundle2x", name: "Bundle 2x (20 Strips) 🏆 BEST SELLER", price: "$27.99", imageSrc: "https://img.b2bpic.net/free-photo/expressive-young-woman-posing-studio_176474-36418.jpg", imageAlt: "Edgetabs 2x bundle with 20 strips - most popular choice", initialQuantity: 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "bundle2x", name: "Bundle 2x (20 Strips) 🏆 BEST SELLER", price: "$27.99", imageSrc: "https://img.b2bpic.net/free-photo/expressive-young-woman-posing-studio_176474-36418.jpg", imageAlt: "Edgetabs 2x bundle with 20 strips - most popular choice", initialQuantity: 1
|
id: "single", name: "Single Tin (10 Strips)", price: "$14.99", imageSrc: "https://img.b2bpic.net/free-photo/flat-lay-nuts-milk-carton-arrangement_23-2149139375.jpg", imageAlt: "Edgetabs single tin with 10 strips", initialQuantity: 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "bundle3x", name: "Bundle 3x (30 Strips)", price: "$39.99", imageSrc: "https://img.b2bpic.net/free-photo/view-arrangement-with-pills-marble-table_23-2148427763.jpg", imageAlt: "Edgetabs 3x bundle with 30 strips", initialQuantity: 1
|
id: "bundle3x", name: "Bundle 3x (30 Strips)", price: "$39.99", imageSrc: "https://img.b2bpic.net/free-photo/view-arrangement-with-pills-marble-table_23-2148427763.jpg", imageAlt: "Edgetabs 3x bundle with 30 strips", initialQuantity: 1
|
||||||
@@ -152,10 +152,10 @@ export default function LandingPage() {
|
|||||||
id: "starter", badge: "Starter", badgeIcon: Sparkles,
|
id: "starter", badge: "Starter", badgeIcon: Sparkles,
|
||||||
price: "$14.99", subtitle: "Perfect for first-time energy seekers", buttons: [
|
price: "$14.99", subtitle: "Perfect for first-time energy seekers", buttons: [
|
||||||
{
|
{
|
||||||
text: "Get Started", href: "#products"
|
text: "Get Started", href: "products", onClick: () => scrollToSection('products')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "Learn More", href: "#features"
|
text: "Learn More", href: "features", onClick: () => scrollToSection('features')
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
features: [
|
features: [
|
||||||
@@ -166,10 +166,10 @@ export default function LandingPage() {
|
|||||||
id: "pro", badge: "🏆 MOST POPULAR", badgeIcon: Crown,
|
id: "pro", badge: "🏆 MOST POPULAR", badgeIcon: Crown,
|
||||||
price: "$27.99", subtitle: "Ideal for daily energy consumers", buttons: [
|
price: "$27.99", subtitle: "Ideal for daily energy consumers", buttons: [
|
||||||
{
|
{
|
||||||
text: "Save 7%", href: "#products"
|
text: "Save 7%", href: "products", onClick: () => scrollToSection('products')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "Learn More", href: "#features"
|
text: "Learn More", href: "features", onClick: () => scrollToSection('features')
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
features: [
|
features: [
|
||||||
@@ -180,10 +180,10 @@ export default function LandingPage() {
|
|||||||
id: "ultimate", badge: "Ultimate", badgeIcon: Zap,
|
id: "ultimate", badge: "Ultimate", badgeIcon: Zap,
|
||||||
price: "$39.99", subtitle: "Maximum savings for committed users", buttons: [
|
price: "$39.99", subtitle: "Maximum savings for committed users", buttons: [
|
||||||
{
|
{
|
||||||
text: "Save 13%", href: "#products"
|
text: "Save 13%", href: "products", onClick: () => scrollToSection('products')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "Learn More", href: "#features"
|
text: "Learn More", href: "features", onClick: () => scrollToSection('features')
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
features: [
|
features: [
|
||||||
@@ -279,26 +279,26 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
title: "Products", items: [
|
title: "Products", items: [
|
||||||
{
|
{
|
||||||
label: "Single Tin", href: "#products"
|
label: "Single Tin", href: "products"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "2x Bundle", href: "#products"
|
label: "2x Bundle", href: "products"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "3x Bundle", href: "#products"
|
label: "3x Bundle", href: "products"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{
|
{
|
||||||
label: "About Us", href: "#about"
|
label: "About Us", href: "about"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Blog", href: "#blog"
|
label: "Blog", href: "#blog"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Contact", href: "#contact"
|
label: "Contact", href: "contact"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user