Skip to content

Commit

Permalink
home and css
Browse files Browse the repository at this point in the history
updated home.jsx
npm install react-leaflet
  • Loading branch information
Myth06 committed Jun 15, 2024
1 parent bf6f026 commit a3fc7d8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions front-end/src/components/Footer.jsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import peraLogo from '../assets/pera.png'; /* import pera logo from assets folder */
import {Link, Outlet} from 'react-router-dom'; /* To link the Main navigation links to the respective pages */

import style from './Footer.module.css'
function Footer() {

return (
<footer className="footer">
<div className="footer-nav">
<div classname = "footer-logo">
<img className="pera-logo" src={peraLogo} alt="pera logo" /> {/* UoP logo */}
<footer className={style["footer"]}>
<div className={style["footer-nav"]}>
<div classname = {style["footer-logo"]}>
<img className={style["pera-logo"]} src={peraLogo} alt="pera logo" /> {/* UoP logo */}
{/* Content which comes under (Uni Name, Project, Project Number) UoP logo */}
<p className= "logo-content"><p>University of Peradeniya</p>
<p className= {style["logo-content"]}><p>University of Peradeniya</p>
<p>ERASMUS+ CYCLE Project</p>
<p>Project Number: GAP-101128627</p></p>
</div>
Expand Down Expand Up @@ -54,7 +54,7 @@ function Footer() {

</div>
{/* Copyright for the website */}
<p className = "footer-websiteName">Erasmus+ CYCLE Project &copy; {new Date().getFullYear()} - All Rights Reserved</p>
<p className = {style["footer-websiteName"]}import >Erasmus+ CYCLE Project &copy; {new Date().getFullYear()} - All Rights Reserved</p>
</footer>
);
}
Expand Down

0 comments on commit a3fc7d8

Please sign in to comment.