From f259deb0c4c6f3a68a0c5a55308ac79b53af37db Mon Sep 17 00:00:00 2001 From: Saransh Bangar Date: Wed, 22 May 2024 12:41:48 +0530 Subject: [PATCH 1/2] Made Join with code section responsive --- frontend/src/Components/Pages/Landing-Page/JoinWithCode.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/Components/Pages/Landing-Page/JoinWithCode.jsx b/frontend/src/Components/Pages/Landing-Page/JoinWithCode.jsx index d522169..9593fc8 100644 --- a/frontend/src/Components/Pages/Landing-Page/JoinWithCode.jsx +++ b/frontend/src/Components/Pages/Landing-Page/JoinWithCode.jsx @@ -3,8 +3,8 @@ import img2 from '../../../assets/Landing-Page-Assets/refresh.png'; const JoinWithCode = () => { return (
-
-
+
+
Paste the meeting code
Date: Wed, 22 May 2024 22:03:59 +0530 Subject: [PATCH 2/2] Update FAQ.jsx With Animations with Frontend Flexibility In this Commit i commit some Changes in by adding Animations, Hovering effect to Solution Box and also add Slow Open Animation with Cursor pointer Use means When we point cursor to any solution box the solution box open slowly and steady it make user Experience Great with FAQ Section. --- .../common/Footer/AboutSection/FAQ.jsx | 41 +++++++++++-------- 1 file changed, 23 insertions(+), 18 deletions(-) diff --git a/frontend/src/Components/common/Footer/AboutSection/FAQ.jsx b/frontend/src/Components/common/Footer/AboutSection/FAQ.jsx index ecca46a..5681eac 100644 --- a/frontend/src/Components/common/Footer/AboutSection/FAQ.jsx +++ b/frontend/src/Components/common/Footer/AboutSection/FAQ.jsx @@ -1,4 +1,5 @@ import React, { useState } from 'react'; +import { motion } from 'framer-motion'; const FAQ = () => { const faqs = [ @@ -52,37 +53,41 @@ const FAQ = () => { const AccordionItem = ({ question, answer, isOpen, onClick }) => { return ( -
+ -
-

{answer}

-
-
+ {isOpen && ( + +

{answer}

+
+ )} + ); }; return ( -
+
-

+

Frequently Asked Questions

-
+ ); };