diff --git a/assets/images/cta/first-cta-2400w.webp b/assets/images/cta/first-cta-2400w.webp new file mode 100644 index 00000000..bb35f5a0 Binary files /dev/null and b/assets/images/cta/first-cta-2400w.webp differ diff --git a/assets/images/cta/first-cta-400w.webp b/assets/images/cta/first-cta-400w.webp new file mode 100644 index 00000000..79632754 Binary files /dev/null and b/assets/images/cta/first-cta-400w.webp differ diff --git a/assets/images/cta/first-cta-800w.webp b/assets/images/cta/first-cta-800w.webp deleted file mode 100644 index 5b3d8a23..00000000 Binary files a/assets/images/cta/first-cta-800w.webp and /dev/null differ diff --git a/assets/images/cta/first-cta-bg400w.webp b/assets/images/cta/first-cta-bg400w.webp deleted file mode 100644 index 66ec4954..00000000 Binary files a/assets/images/cta/first-cta-bg400w.webp and /dev/null differ diff --git a/components/cta/CTA1.js b/components/cta/CTA1.js index 7a19949f..31807191 100644 --- a/components/cta/CTA1.js +++ b/components/cta/CTA1.js @@ -1,132 +1,67 @@ -"use client"; - -import React, { useState } from "react"; -import { Swiper, SwiperSlide } from "swiper/react"; -import { Autoplay } from "swiper/modules"; -import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; -import { faStar } from "@fortawesome/free-solid-svg-icons"; import Image from "next/image"; -import ctabg400w from "../../assets/images/cta/first-cta-bg400w.webp"; -import cta800w from "../../assets/images/cta/first-cta-800w.webp"; +import background400w from "../../assets/images/cta/first-cta-400w.webp"; +import desktop_background2400w from "../../assets/images/cta/first-cta-2400w.webp"; import Link from "next/link"; import config from "../../config"; -import "swiper/css"; -import "swiper/css/autoplay"; export default function CTA() { - const [swiper, setSwiper] = useState(null); - - const slides = [ - { - title: "50+", - content: "Projects", - hasStar: false, - }, - { - title: "5.0", - content: "Clutch Reviews", - hasStar: true, - }, - ]; - - const playSwiper = (play) => { - if (swiper) { - play ? swiper.autoplay.start() : swiper.autoplay.stop(); - } - }; - return ( -
-
+
+
background-image -
-
-
-

- Want to build a new version of your existing app or add new - features? +

+

+ Get started today +

+

+ Let's build the next big thing!

-

- Not sure where to start? We also offer code and architecture - reviews, strategic planning, and more. +

+ Let's improve your business's digital strategy and + implement robust mobile apps to achieve your business objectives. + Schedule Your Free Consultation Now.

- -
- Talk to our experts + +
+ + Get Free Consultation +
-
- cta-image +
-
- { - setSwiper(swiper); - }} - > - {slides.map((slide, index) => { - return ( - playSwiper(false)} - onMouseLeave={() => playSwiper(true)} - onTouchStart={() => playSwiper(false)} - onTouchMove={() => playSwiper(true)} - onTouchEnd={() => playSwiper(true)} - className="cursor-pointer" - > -
- - {slide.title} - - - {slide.content} - - {slide.hasStar && ( -
- {[...Array(5)].map((_, i) => ( - - ))} -
- )} -
-
- ); - })} -
-
+
+ background-image +
+

+ Get started today +

+

+ Let's build the next big thing! +

+

+ Let's improve your business's digital strategy and + implement robust mobile apps to achieve your business objectives. + Schedule Your Free Consultation Now. +

+ +
+ + Get Free Consultation + +
+
diff --git a/pages/[slug].js b/pages/[slug].js index a037464f..5e03f57e 100644 --- a/pages/[slug].js +++ b/pages/[slug].js @@ -550,7 +550,7 @@ export default function Post({ postData, status, posts, mixpanel }) { )}
- {CTAData + {/* {CTAData ? (() => { let CTAComponent = null; try { @@ -579,7 +579,8 @@ export default function Post({ postData, status, posts, mixpanel }) { return CTAComponent; })() - : ""} + : ""} */} +
)} diff --git a/tailwind.config.js b/tailwind.config.js index d1d7e7c1..b55dde8b 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -14,6 +14,7 @@ module.exports = { xl: "1200px", "2xl": "1400px", "3xl": "1600px", + "4xl": "2440px", }, fontFamily: { "product-black": ["Product Sans Black"], @@ -52,6 +53,8 @@ module.exports = { "gradient-L": "linear-gradient(178deg, #FFFFFF 68%, #f77783 40%);", "gradient-W": "linear-gradient(257deg, #FFFFFF 65%, #f77783 68%);", "gradient-T": "linear-gradient(540deg, #FFFFFF 30.5%, #f77783 10%);", + "gradient-background": + "linear-gradient(to bottom, #FFFFFF , #FDE0E2 23%, #FDE0E2 88%, #FFFFFF 100%);", }, }, },