diff --git a/README.md b/README.md index 436dd684..6d842242 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,9 @@ - - ___ # Erasmus+ Project Web and MIS ___ - ## Overview The Erasmus+ Project Web and Management Information System (MIS) is a comprehensive software solution designed to support the management and coordination of Erasmus+ projects. It serves as a centralized platform for stakeholders involved in Erasmus+ projects to collaborate, track progress, manage documents, and facilitate communication. -## Team -- E/20/316, Wethmi Ranasinghe, [e20316@eng.pdn.ac.lk](mailto:e20316@eng.pdn.ac.lk) -- E/20/122, Rashmi Gunathilake, [e20122@eng.pdn.ac.lk](mailto:e20122@eng.pdn.ac.lk) -- E/20/178, Dulanga Jayawardena, [e20178@eng.pdn.ac.lk](mailto:e20178@eng.pdn.ac.lk) -- E/20/148, Kasundie Hewawasam, [e20148@engdn.ac.lk](mailto:e20148@eng.pdn.ac.lk) - - +abc diff --git a/front-end/src/App.jsx b/front-end/src/App.jsx index c4de001f..b3b4ddaa 100644 --- a/front-end/src/App.jsx +++ b/front-end/src/App.jsx @@ -1,9 +1,13 @@ import Header from "./Header" +import Footer from "./Footer" import './Header.css' +import './Footer.css' function App() { return( - <>> + <> + + > ); } diff --git a/front-end/src/Footer.css b/front-end/src/Footer.css new file mode 100644 index 00000000..21e8962d --- /dev/null +++ b/front-end/src/Footer.css @@ -0,0 +1,77 @@ +/* footer.css */ + +.footer { /* all the items in tne footer */ + background-color: #ffffff; + display: flex; + flex-direction: column; + align-items: center; +} + +.footer-card { /* pera logo and Content below the pera logo */ + display: flex; + flex-direction: column; + align-items: center; + text-align: center; + margin-bottom: 10px; + order: 2; +} + +.pera-logo { /* pera logo */ + max-width: 100px; + margin-bottom: 10px; +} + +.footer-card p { /* Content below the pera logo */ + margin: 5px 0; + font-size: 14px; + color: #353637; + font-family: Sans-Serif; +} + +.footer-nav { + display: flex; + justify-content: space-around; + flex-wrap: wrap; + width: 100%; /* Ensure it takes the full width for better alignment */ + order: 1; +} + +.footer-nav nav { + margin: 0 15px; + text-align: center; /* Center the text and links */ + color: #353637; + font-family: Sans-Serif; +} + +.footer-nav p { + font-size: 14px; + margin-bottom: 5px; + +} + +.footer-nav ul { + list-style-type: none; + padding: 0; +} + +.footer-nav ul li { + margin-bottom: 5px; + font-size: 14px; +} + +.footer-nav ul li a { + text-decoration: none; + color: #4e94de; + +} + +.footer-nav ul li a:hover { + text-decoration: underline; +} + +.footer-websiteName { + font-size: 12px; + color: #535353; + font-family: Sans-Serif; + order: 3; +} diff --git a/front-end/src/Footer.jsx b/front-end/src/Footer.jsx new file mode 100644 index 00000000..8df1fc03 --- /dev/null +++ b/front-end/src/Footer.jsx @@ -0,0 +1,50 @@ +import peraLogo from './assets/pera.png'; + +function Footer() { + + return ( + + + ); +} + +export default Footer; diff --git a/front-end/src/assets/pera.png b/front-end/src/assets/pera.png new file mode 100644 index 00000000..12b7bc18 Binary files /dev/null and b/front-end/src/assets/pera.png differ