diff options
author | akshaythakur8764 | 2024-12-24 14:36:38 +0530 |
---|---|---|
committer | akshaythakur8764 | 2024-12-24 14:36:38 +0530 |
commit | 2b3cfa83e44e46e8547dd930e54361058694dc58 (patch) | |
tree | 9f5b0a168cc6eca2952d78343787d804fb0d9a4a | |
parent | a12f06a84db84cba0a2440428ce6988ea72e4344 (diff) | |
download | scilab_case_study_hackathon-2b3cfa83e44e46e8547dd930e54361058694dc58.tar.gz scilab_case_study_hackathon-2b3cfa83e44e46e8547dd930e54361058694dc58.tar.bz2 scilab_case_study_hackathon-2b3cfa83e44e46e8547dd930e54361058694dc58.zip |
new logos added
-rw-r--r-- | src/assets/img/MOE-logo.png | bin | 0 -> 9866 bytes | |||
-rw-r--r-- | src/assets/img/NMEICT -logo.png | bin | 0 -> 16503 bytes | |||
-rw-r--r-- | src/components/HomeBody.astro | 19 |
3 files changed, 15 insertions, 4 deletions
diff --git a/src/assets/img/MOE-logo.png b/src/assets/img/MOE-logo.png Binary files differnew file mode 100644 index 0000000..bffdef3 --- /dev/null +++ b/src/assets/img/MOE-logo.png diff --git a/src/assets/img/NMEICT -logo.png b/src/assets/img/NMEICT -logo.png Binary files differnew file mode 100644 index 0000000..4e6d9e2 --- /dev/null +++ b/src/assets/img/NMEICT -logo.png diff --git a/src/components/HomeBody.astro b/src/components/HomeBody.astro index 214ba02..c8bc804 100644 --- a/src/components/HomeBody.astro +++ b/src/components/HomeBody.astro @@ -53,6 +53,8 @@ import iitb from "../assets/img/IITB.png"; import fossee from "../assets/img/FOSSEE.png"; import st from "../assets/img/spoken.png"; import process from "../assets/img/process.png"; +import Nmeict from "../assets/img/NMEICT -logo.png"; +import Moe from "../assets/img/MOE-logo.png"; --- <!-- Introduction --> @@ -271,10 +273,13 @@ import process from "../assets/img/process.png"; <div class="max-w-6xl mx-auto px-4"> - <div class="flex justify-center items-center space-x-3 mb-6 bg-white text-green-300 "> - <a class="hover:scale-105" href="https://www.iitb.ac.in/" target="_blank"><img src={iitb.src} alt="IIT Bombay" decoding="async"></a> - <a class="hover:scale-105" href="https://fossee.in/" target="_blank"> <img src={fossee.src} alt="FOSSEE" decoding="async"></a> - <a class="hover:scale-105" href="https://spoken-tutorial.org/" target="_blank"> <img src={st.src} alt="Spoken Tutorial" decoding="async"></a> + <div class="flex d-flex justify-center items-center space-x-3 mb-6 bg-white text-green-300 "> + <a class="hover:scale-105" href="https://www.iitb.ac.in/" target="_blank"><img src={iitb.src} alt="IIT Bombay" class="logos" decoding="async"></a> + <a class="hover:scale-105" href="https://fossee.in/" target="_blank"> <img src={fossee.src} alt="FOSSEE" class="logos" decoding="async"></a> + <a class="hover:scale-105" href="https://spoken-tutorial.org/" target="_blank"> <img src={st.src} alt="Spoken Tutorial" class="logos" decoding="async"></a> + <a class="hover:scale-105" href="https://spoken-tutorial.org/" target="_blank"> <img src={Moe.src} alt="MOE" class="img logos" decoding="async"></a> + <a class="hover:scale-105" href="https://spoken-tutorial.org/" target="_blank"> <img src={Nmeict.src} alt="NMEICT" class="logos" decoding="async"></a> + </div> </div></footer> @@ -379,6 +384,12 @@ import process from "../assets/img/process.png"; <!-- CSS --> <style> + .logos { + width: 150px; /* Adjust to preferred size */ + height: 100px; /* Maintain aspect ratio */ + object-fit: contain; /* Ensures the image fits within the container */ + max-height: 130px; /* Optional for uniform height */ + } .background-url{ background: url(../assets/img/bg-01.png); background-attachment: fixed; |