diff --git a/public/assets/FloatingSVGs/music-block-1.svg b/public/assets/FloatingSVGs/music-block-1.svg
new file mode 100644
index 00000000..c5fa699f
--- /dev/null
+++ b/public/assets/FloatingSVGs/music-block-1.svg
@@ -0,0 +1,21 @@
+
diff --git a/public/assets/FloatingSVGs/music-block-2.svg b/public/assets/FloatingSVGs/music-block-2.svg
new file mode 100644
index 00000000..d5b5d3bd
--- /dev/null
+++ b/public/assets/FloatingSVGs/music-block-2.svg
@@ -0,0 +1,21 @@
+
diff --git a/public/assets/FloatingSVGs/music-block-3.svg b/public/assets/FloatingSVGs/music-block-3.svg
new file mode 100644
index 00000000..b0768053
--- /dev/null
+++ b/public/assets/FloatingSVGs/music-block-3.svg
@@ -0,0 +1,21 @@
+
diff --git a/public/assets/FloatingSVGs/sugarizer-1.svg b/public/assets/FloatingSVGs/sugarizer-1.svg
new file mode 100644
index 00000000..271e3814
--- /dev/null
+++ b/public/assets/FloatingSVGs/sugarizer-1.svg
@@ -0,0 +1,9 @@
+
diff --git a/public/assets/FloatingSVGs/turtle-blocks-1.svg b/public/assets/FloatingSVGs/turtle-blocks-1.svg
new file mode 100644
index 00000000..1367efda
--- /dev/null
+++ b/public/assets/FloatingSVGs/turtle-blocks-1.svg
@@ -0,0 +1,21 @@
+
diff --git a/public/assets/FloatingSVGs/turtle-blocks-2.svg b/public/assets/FloatingSVGs/turtle-blocks-2.svg
new file mode 100644
index 00000000..d3e3f2f0
--- /dev/null
+++ b/public/assets/FloatingSVGs/turtle-blocks-2.svg
@@ -0,0 +1,21 @@
+
diff --git a/public/assets/LinksLogos/sugarizer-1.svg b/public/assets/LinksLogos/sugarizer-1.svg
new file mode 100644
index 00000000..898781c0
--- /dev/null
+++ b/public/assets/LinksLogos/sugarizer-1.svg
@@ -0,0 +1,9 @@
+
diff --git a/src/components/TryNow/FeatureSection.tsx b/src/components/TryNow/FeatureSection.tsx
index 34def42b..2e4b1d68 100644
--- a/src/components/TryNow/FeatureSection.tsx
+++ b/src/components/TryNow/FeatureSection.tsx
@@ -1,5 +1,7 @@
import { useState } from 'react';
import { motion } from 'framer-motion';
+import { Carousel } from 'react-responsive-carousel';
+import 'react-responsive-carousel/lib/styles/carousel.min.css'; // Import carousel styles
import { featureSectionAnimations } from '@/styles/Animations';
interface FeatureData {
@@ -39,34 +41,32 @@ const FeatureSection = ({ data }: { data: FeatureData }) => {
variants={featureSectionAnimations.imageContainer}
>
{data.images && data.images.length > 0 ? (
- <>
- {/* Display Active Image */}
-
{steps[activeStep].description}
- - {/* Step Image */} -{step.description}
+
diff --git a/src/pages/TryNow/Sugarizer.tsx b/src/pages/TryNow/Sugarizer.tsx
index d433e5ba..0eb9c393 100644
--- a/src/pages/TryNow/Sugarizer.tsx
+++ b/src/pages/TryNow/Sugarizer.tsx
@@ -2,6 +2,8 @@ import Header from '@/sections/Header';
import Footer from '@/sections/Footer';
import FeatureSection from '@/components/TryNow/FeatureSection';
import LogoCards from '@/components/TryNow/LogoCards';
+import { motion } from 'framer-motion';
+import { fadeInUpAnimation, zoomFadeInAnimation } from '@/styles/Animations.ts';
import {
logoCardsData,
sugarizerData,
@@ -15,7 +17,28 @@ const SugarizerPage = () => {
@@ -21,7 +50,14 @@ const TurtleBlocksPage = () => {
probably want to use Turtle Blocks rather than Turtle Blocks JS.
+ {/* Floating SVGs */}
+
+
Try it now!
diff --git a/src/pages/TryNow/TurtleBlocks.tsx b/src/pages/TryNow/TurtleBlocks.tsx
index 8a458b48..bc751199 100644
--- a/src/pages/TryNow/TurtleBlocks.tsx
+++ b/src/pages/TryNow/TurtleBlocks.tsx
@@ -2,6 +2,8 @@ import Header from '@/sections/Header';
import Footer from '@/sections/Footer';
import FeatureSection from '@/components/TryNow/FeatureSection';
import Paragraph from '@/components/TryNow/Paragraph';
+import { motion } from 'framer-motion';
+import { fadeInUpAnimation, zoomFadeInAnimation } from '@/styles/Animations.ts';
import {
turtleBlocksData,
turtleBlocksSections,
@@ -13,6 +15,33 @@ const TurtleBlocksPage = () => {
+
+
+