3 Commits

Author SHA1 Message Date
ab32304664 Update src/app/page.tsx 2026-04-22 12:09:20 +00:00
9403ded4e3 Merge version_1 into main
Merge version_1 into main
2026-04-22 12:07:56 +00:00
7b7f2d06ff Merge version_1 into main
Merge version_1 into main
2026-04-22 12:07:30 +00:00

View File

@@ -8,7 +8,7 @@ import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
@@ -170,21 +170,21 @@ export default function LandingPage() {
</div>
<div id="pricing" data-section="pricing">
<PricingCardOne
<PricingCardEight
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
plans={[
{
id: "basic", badge: "Entry", price: "$1,500", subtitle: "Perfect for landing pages.", features: [
id: "basic", badge: "Entry", price: "$1,500", subtitle: "Perfect for landing pages.", buttons: [{ text: "Get a Quote", href: "#contact" }], features: [
"Responsive Layout", "Basic SEO", "Mobile Optimized"],
},
{
id: "pro", badge: "Popular", price: "$3,500", subtitle: "Best for growing startups.", features: [
id: "pro", badge: "Popular", price: "$3,500", subtitle: "Best for growing startups.", buttons: [{ text: "Get a Quote", href: "#contact" }], features: [
"Complete Website", "CMS Integration", "Brand Guidelines"],
},
{
id: "expert", badge: "Enterprise", price: "$6,000+", subtitle: "Full digital strategy.", features: [
id: "expert", badge: "Enterprise", price: "$6,000+", subtitle: "Full digital strategy.", buttons: [{ text: "Get a Quote", href: "#contact" }], features: [
"Custom App Design", "High-Priority Support", "Advanced Analytics"],
},
]}