From 8b68c2987d332deb5761df641f8c0250aef2611c Mon Sep 17 00:00:00 2001 From: maitri-vv Date: Tue, 8 Oct 2024 09:40:40 +0530 Subject: [PATCH] Done changes I hv done the changes and only used Tailwind CSS #66 --- frontend/src/App.css | 13 +++++++- frontend/src/App.jsx | 36 +++++++++++++---------- frontend/src/components/Shared/Navbar.jsx | 20 ++++++------- 3 files changed, 43 insertions(+), 26 deletions(-) diff --git a/frontend/src/App.css b/frontend/src/App.css index 9b6403be..f30a3229 100644 --- a/frontend/src/App.css +++ b/frontend/src/App.css @@ -16,4 +16,15 @@ body, body{ background: #F1EADC; -} \ No newline at end of file +} + + + @keyframes bounce { + 0%, 100% { + transform: translateY(0); + } + 50% { + transform: translateY(-10px); + } + } + \ No newline at end of file diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index dc3b9532..ce274b14 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -2,10 +2,10 @@ import './App.css'; import Navbar from '../src/components/Shared/Navbar'; -import Footer from "../src/components/Shared/Footer" +import Footer from "../src/components/Shared/Footer"; import { Outlet } from 'react-router-dom'; - -import {KindeProvider} from "@kinde-oss/kinde-auth-react"; +import React, { useState, useEffect } from 'react'; +import { KindeProvider } from "@kinde-oss/kinde-auth-react"; function App() { const [showButton, setShowButton] = useState(false); @@ -28,18 +28,24 @@ function App() { return ( - - -