From 4426f574f8daacf45b08a6245e099b1bcad34ccb Mon Sep 17 00:00:00 2001 From: Ujjwal Saini <73696489+UjjwalSaini07@users.noreply.github.com> Date: Sat, 25 May 2024 08:26:55 +0530 Subject: [PATCH] Update FeatureCardSection.jsx Making User friendly and make this Page more dynamic. --- .../Pages/Landing-Page/FeatureCardSection.jsx | 117 ++++++++---------- 1 file changed, 54 insertions(+), 63 deletions(-) diff --git a/frontend/src/Components/Pages/Landing-Page/FeatureCardSection.jsx b/frontend/src/Components/Pages/Landing-Page/FeatureCardSection.jsx index 3d26c2d..5595a7f 100644 --- a/frontend/src/Components/Pages/Landing-Page/FeatureCardSection.jsx +++ b/frontend/src/Components/Pages/Landing-Page/FeatureCardSection.jsx @@ -1,70 +1,61 @@ import React from 'react'; +import { motion, AnimatePresence } from 'framer-motion'; // Import motion and AnimatePresence from Framer Motion const featuresData = [ - { - icon: '/src/assets/Landing-Page-Assets/ai.png', - title: 'AI Chatbot', - description: - 'Engage with our AI chatbot directly inside the meet and get your doubt clarified', - }, - { - icon: '/src/assets/Landing-Page-Assets/letter.png', - title: 'Interactive White Board', - description: 'Have realistic interaction with interactive white board', - }, - { - icon: '/src/assets/Landing-Page-Assets/encrypted.png', - title: 'End to End Encryption', - description: 'Enjoy seamless collaboration with end to end encryption', - }, - { - icon: '/src/assets/Landing-Page-Assets/privacy.png', - title: 'Privacy Protection', - description: - 'Enjoyseamless collaboration without compromising on privacy or security concerns', - }, + { + icon: 'https://st5.depositphotos.com/55541054/67076/i/450/depositphotos_670765480-stock-photo-explore-digital-frontier-chatbot-futuristic.jpg', + title: 'AI Chatbot', + description: + 'Engage with our AI chatbot directly inside the meet and get your doubt clarified', + }, + { + icon: 'https://www.ismartrecruit.com/upload/blog/main_image/Online_team_building_fun_interactive.webp', + title: 'Remote Interaction', + description: 'We Help People to Connect Virtually for office meeting or School Classes.', + }, + { + icon: 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQZ5cvddIaEk0o0jkC_87lqusobcw6UFvYPXa6jkvkm0g&s', + title: 'Secured Authentication', + description: 'We provide the user a secured authentication to access things accordingly.', + }, + { + icon: 'https://act-on.com/wp-content/uploads/2021/08/Privacy-Blog-V3.png', + title: 'Privacy Protection', + description: + 'Enjoy seamless collaboration without compromising on privacy or security concerns', + }, ]; - -const Feature = () => { - return ( - <> -
Enagage with our AI chatbot directly inside the meet and get your doubt clarified
-We help to connect people virtually for office meetings or school classes
-We provide the user a secured authentication to access things accordingly.
-Enjoy seemless collaboration without compromising on privacy.
-{feature.description}
+