import { useEffect } from "react"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faCheck } from "@fortawesome/free-solid-svg-icons"; import { gsap } from "gsap"; import { ScrollTrigger } from "@/plugins"; import Accordion from "react-bootstrap/Accordion"; import Link from "next/link.js"; gsap.registerPlugin(ScrollTrigger); const DigitalMarketingPrice = () => { useEffect(() => { if (typeof window !== "undefined") { let tHero = gsap.context(() => { gsap.set(".fade_bottom", { y: 30, opacity: 0 }); let pricing_timeline = gsap.timeline({ scrollTrigger: { trigger: ".price__table", start: "top center", }, }); gsap.set(".animation_from_bottom", { yPercent: 50 }); pricing_timeline.to(".animation_from_bottom", { yPercent: 0, duration: 2, ease: "power4.out", }); gsap.set(".animation_from_top", { yPercent: -50, opacity: 0 }); pricing_timeline.to( ".animation_from_top", { yPercent: 0, duration: 2, opacity: 1, ease: "power4.out", }, "-=2" ); }); return () => tHero.revert(); } }, []); return ( <>

Exclusive Offer

Only for Startups

MVP Package

  • • Custom Web Application Development
  • • Complete Branding Package
  • • API Integrations
  • • Advanced SEO & Marketing Strategy
  • • 1 Year of Support

Best Value

Starting from $7999.99

*For Startups ready to build their MVP and take on bigger challenges.

E-Commerce Package

  • • E-Commerce Integration
  • • Responsive Website
  • • Enhanced Branding Kit
  • • Custom Website Design
  • • SEO & Content Strategy
  • • 6 Months of Support

Starting from $3799.99

*For Startups ready to sell online and grow their brand presence.

Starter Package

  • • Modern Website Design
  • • Basic Branding Kit
  • • Content Management System (CMS)
  • • Basic SEO Setup
  • • 3 Months of Support

Starting from $1499.99

*For Startups who need a professional-looking website without the hassle.

Start with
Book Your Demo Now
); }; export default DigitalMarketingPrice;