Compare commits
1 Commits
14d46cbdc7
...
version_2
| Author | SHA1 | Date | |
|---|---|---|---|
| 2887d67f81 |
@@ -5,6 +5,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
|
|||||||
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
|
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
|
||||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||||
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
|
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
|
||||||
|
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
||||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
@@ -123,6 +124,38 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="pricing" data-section="pricing">
|
||||||
|
<PricingCardNine
|
||||||
|
title="Flexible Pricing Plans"
|
||||||
|
description="Select the perfect iPhone model and storage option for your needs."
|
||||||
|
tag="Payment Options"
|
||||||
|
tagIcon={CreditCard}
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground="invertDefault"
|
||||||
|
animationType="slide-up"
|
||||||
|
plans={[
|
||||||
|
{
|
||||||
|
id: "basic", title: "iPhone 15", price: "$799", period: "one-time", imageSrc: "https://img.b2bpic.net/free-photo/still-life-tech-device_23-2150722663.jpg", imageAlt: "iPhone 15 base model", button: { text: "Get Now", href: "contact" },
|
||||||
|
features: [
|
||||||
|
"6.1\" Liquid Retina display", "Dual camera system", "A16 Bionic chip", "30 hours battery life", "Water and dust resistant"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "pro", title: "iPhone 15 Pro", price: "$999", period: "one-time", imageSrc: "https://img.b2bpic.net/free-photo/people-holding-colorful-smartphones_23-2151969201.jpg", imageAlt: "iPhone 15 Pro model", button: { text: "Get Now", href: "contact" },
|
||||||
|
features: [
|
||||||
|
"6.1\" Pro display XDR", "Triple camera system", "A17 Pro chip", "20 hours battery life", "Titanium design", "ProRaw support"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "max", title: "iPhone 15 Pro Max", price: "$1,199", period: "one-time", imageSrc: "https://img.b2bpic.net/free-photo/low-angle-man-using-smartphone-outdoors_23-2150747684.jpg", imageAlt: "iPhone 15 Pro Max premium model", button: { text: "Get Now", href: "contact" },
|
||||||
|
features: [
|
||||||
|
"6.7\" Pro display XDR", "Advanced triple camera", "A17 Pro chip", "28 hours battery life", "Titanium design", "Enhanced zoom capabilities"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardSix
|
<TestimonialCardSix
|
||||||
title="What Our Customers Say"
|
title="What Our Customers Say"
|
||||||
|
|||||||
@@ -137,7 +137,7 @@ const HeroSplitDualMedia = ({
|
|||||||
<div className={cls("w-content-width mx-auto flex flex-col md:flex-row gap-13 md:gap-15 items-center relative z-10", containerClassName)}>
|
<div className={cls("w-content-width mx-auto flex flex-col md:flex-row gap-13 md:gap-15 items-center relative z-10", containerClassName)}>
|
||||||
<div className="w-full md:w-1/2">
|
<div className="w-full md:w-1/2">
|
||||||
<TextBox
|
<TextBox
|
||||||
title={title}
|
title="Yo, Bob!"
|
||||||
description={description}
|
description={description}
|
||||||
tag={tag}
|
tag={tag}
|
||||||
tagIcon={tagIcon}
|
tagIcon={tagIcon}
|
||||||
@@ -152,7 +152,7 @@ const HeroSplitDualMedia = ({
|
|||||||
center={true}
|
center={true}
|
||||||
/>
|
/>
|
||||||
<TextBox
|
<TextBox
|
||||||
title={title}
|
title="Yo, Bob!"
|
||||||
description={description}
|
description={description}
|
||||||
tag={tag}
|
tag={tag}
|
||||||
tagIcon={tagIcon}
|
tagIcon={tagIcon}
|
||||||
|
|||||||
Reference in New Issue
Block a user