4 Commits

Author SHA1 Message Date
191ba547e7 Update src/app/page.tsx 2026-03-05 16:12:35 +00:00
98977f9c6b Update src/app/page.tsx 2026-03-05 16:10:47 +00:00
c55966af6e Merge version_4 into main
Merge version_4 into main
2026-03-05 16:09:14 +00:00
639f6b22d3 Merge version_4 into main
Merge version_4 into main
2026-03-05 16:03:34 +00:00

View File

@@ -5,7 +5,7 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
import ProductCardFour from '@/components/sections/product/ProductCardFour'; import ProductCardFour from '@/components/sections/product/ProductCardFour';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
@@ -118,7 +118,7 @@ export default function LandingPage() {
</div> </div>
<div id="offer" data-section="offer"> <div id="offer" data-section="offer">
<PricingCardTwo <PricingCardThree
title="Our Core Offers: Premium Pricing Packages" title="Our Core Offers: Premium Pricing Packages"
description="Choose the perfect plan for your business growth with our flexible pricing options" description="Choose the perfect plan for your business growth with our flexible pricing options"
tag="What We Deliver" tag="What We Deliver"
@@ -127,7 +127,7 @@ export default function LandingPage() {
plans={[ plans={[
{ {
id: "seo-package", badge: "Guaranteed SEO", badgeIcon: CheckCircle, id: "seo-package", badge: "Guaranteed SEO", badgeIcon: CheckCircle,
price: "$299/month", subtitle: "Premium Monthly Plan", buttons: [ price: "$299/month", name: "Premium Monthly Plan", buttons: [
{ text: "Get Started", href: "#contact" }, { text: "Get Started", href: "#contact" },
{ text: "Learn More", href: "#faq" } { text: "Learn More", href: "#faq" }
], ],
@@ -137,7 +137,7 @@ export default function LandingPage() {
}, },
{ {
id: "content-social-ig-li", badge: "Social Growth Starter", badgeIcon: Sparkles, id: "content-social-ig-li", badge: "Social Growth Starter", badgeIcon: Sparkles,
price: "$699", subtitle: "Content + Instagram & LinkedIn", buttons: [ price: "$699", name: "Content + Instagram & LinkedIn", buttons: [
{ text: "Get Started", href: "#contact" }, { text: "Get Started", href: "#contact" },
{ text: "Learn More", href: "#faq" } { text: "Learn More", href: "#faq" }
], ],
@@ -147,7 +147,7 @@ export default function LandingPage() {
}, },
{ {
id: "content-social-full", badge: "Social Growth Pro", badgeIcon: Sparkles, id: "content-social-full", badge: "Social Growth Pro", badgeIcon: Sparkles,
price: "$699", subtitle: "Content + Full Social Media", buttons: [ price: "$699", name: "Content + Full Social Media", buttons: [
{ text: "Get Started", href: "#contact" }, { text: "Get Started", href: "#contact" },
{ text: "Learn More", href: "#faq" } { text: "Learn More", href: "#faq" }
], ],
@@ -157,7 +157,7 @@ export default function LandingPage() {
}, },
{ {
id: "limited-time-offer", badge: "⏰ LIMITED TIME: First 3 Clients Only", badgeIcon: Clock, id: "limited-time-offer", badge: "⏰ LIMITED TIME: First 3 Clients Only", badgeIcon: Clock,
price: "$1,119", subtitle: "Regular Price $1,799 • Valid 30 Days", buttons: [ price: "$1,119", name: "Regular Price $1,799 • Valid 30 Days", buttons: [
{ text: "Claim Limited Offer", href: "#contact" }, { text: "Claim Limited Offer", href: "#contact" },
{ text: "Learn More", href: "#faq" } { text: "Learn More", href: "#faq" }
], ],
@@ -345,4 +345,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }