diff --git a/src/assets/logo.webp b/public/logo.webp similarity index 100% rename from src/assets/logo.webp rename to public/logo.webp diff --git a/src/components/shared/Footer.jsx b/src/components/shared/Footer.jsx index 2e34713..b43ebba 100644 --- a/src/components/shared/Footer.jsx +++ b/src/components/shared/Footer.jsx @@ -1,13 +1,69 @@ -import React from 'react'; +import React from "react"; +import "../../css/Footer.css"; +import { Link, NavLink } from "react-router-dom"; -const Footer = () => { - return ( - +); export default Footer; diff --git a/src/css/Footer.css b/src/css/Footer.css new file mode 100644 index 0000000..386b391 --- /dev/null +++ b/src/css/Footer.css @@ -0,0 +1,29 @@ +ul li a { + text-decoration: none; + color: black; + font-size: large; +} +ul li a:hover { + text-decoration: underline; +} + + ul { + display: flex; + flex-direction: column; + } + + .page-footer { + width: 100%; + margin-top: 3rem; + background-color: rgba(223, 223, 176, 0.479); + color: black; + border-radius: 15px; + } + + .dark .page-footer { + background-color: #262626; + color: white; + } + .dark ul li a { + color: white; + } \ No newline at end of file diff --git a/src/css/Home.css b/src/css/Home.css index 6d46474..f7ef432 100644 --- a/src/css/Home.css +++ b/src/css/Home.css @@ -183,7 +183,7 @@ justify-content: center; gap: 20px; padding: 20px; - padding-bottom: 100px; + padding-bottom: 50px; } .feat-3 img{