diff --git a/src/components/shared/Footer.jsx b/src/components/shared/Footer.jsx index f922034..caef114 100644 --- a/src/components/shared/Footer.jsx +++ b/src/components/shared/Footer.jsx @@ -3,6 +3,8 @@ import { NavLink } from "react-router-dom"; import { Context } from "../../context/Context"; import Visitors from "./Visitors"; import { FaGithub, FaHome, FaInfoCircle, FaUser, FaSignInAlt, FaMusic, FaVideo, FaBook, FaNewspaper, FaQuestionCircle, FaRobot } from "react-icons/fa"; +import Tilt from 'react-parallax-tilt'; +import "../../css/Footer.css"; const Footer = () => { const { isDarkMode } = useContext(Context); @@ -13,10 +15,12 @@ const Footer = () => {
- Chanakya Image + + Chanakya Image +
चाणक्य नीति
-
+
Star Us ⭐ diff --git a/src/css/Footer.css b/src/css/Footer.css new file mode 100644 index 0000000..8001345 --- /dev/null +++ b/src/css/Footer.css @@ -0,0 +1,21 @@ + .star-btn a { + transition: transform 0.3s, background-color 0.3s, color 0.3s; + } + + .star-btn a:hover { + transform: scale(1.1); + } + + .list-unstyled li { + margin-bottom: 0.5rem; + } + + .list-unstyled li a { + transition: transform 0.3s ease-in-out; + display: inline-block; + } + + .list-unstyled li a:hover { + transform: scale(1.1); + } + \ No newline at end of file