Skip to content

Commit

Permalink
fix(pathway):footer-link-updated-hero-link-updated
Browse files Browse the repository at this point in the history
  • Loading branch information
AswinAsok committed Oct 20, 2023
1 parent ba3574b commit 3da0959
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 43 deletions.
47 changes: 38 additions & 9 deletions src/Pages/Pathway/components/Contact/Contact.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@ const links = [
{
id: 1,
title: "About MuLearn",
l1: "Features",
l2: "Success Stories",
l3: "Our Story",
l1: "Learning Circles",
l2: "Interest Groups",
l4: "Careers",
l5: "Events",
l5: "Join Us",
},
];

Expand All @@ -29,27 +28,57 @@ export default function Contact() {
<ul>
{link.l1 ? (
<li>
<a href="/">{link.l1}</a>
<a
href="https://mulearn.org/"
rel="noreferrer"
target="_blank"
>
{link.l1}
</a>
</li>
) : null}
{link.l2 ? (
<li>
<a href="/">{link.l2}</a>
<a
href="https://app.mulearn.org/learning-circles"
rel="noreferrer"
target="_blank"
>
{link.l2}
</a>
</li>
) : null}
{link.l3 ? (
<li>
<a href="/">{link.l3}</a>
<a
href="https://learn.mulearn.org/"
rel="noreferrer"
target="_blank"
>
{link.l3}
</a>
</li>
) : null}
{link.l4 ? (
<li>
<a href="/">{link.l4}</a>
<a
href="https://mulearn.org/careers"
rel="noreferrer"
target="_blank"
>
{link.l4}
</a>
</li>
) : null}
{link.l5 ? (
<li>
<a href="/">{link.l5}</a>
<a
href="https://app.mulearn.org"
rel="noreferrer"
target="_blank"
>
{link.l5}
</a>
</li>
) : null}
{link.l6 ? (
Expand Down
68 changes: 36 additions & 32 deletions src/Pages/Pathway/components/Contact/Contact.module.css
Original file line number Diff line number Diff line change
@@ -1,51 +1,55 @@
.ContactUs {
display: flex;
justify-content: center;
align-items: center;
gap: 3rem;
margin-top: -1rem;
padding: 3rem;
background-color: #f5f5f5;
display: flex;
justify-content: center;
align-items: center;
gap: 3rem;
margin-top: -1rem;
padding: 3rem;
background-color: #f5f5f5;
}

.Contact img {
height: 3rem;
height: 3rem;
}

.ContactList {
width: 70%;
display: flex;
width: 70%;
display: flex;
}

.list {
width: 100%;
width: 100%;
}

.ContactHead {
color: #1C1CF0;
font-weight: 700;
border-bottom: 1px solid #1C1CF0;
color: #1c1cf0;
font-weight: 700;
border-bottom: 1px solid #1c1cf0;
}

.ContactList ul {
list-style: none;
width: 100%;
list-style: none;
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
column-gap: 1rem;
}

.ContactList ul li {
font-size: .9rem;
color: #3F3F46;
line-height: 1.1rem;
}

@media(width<=500px) {
.ContactUs {
flex-direction: column;
padding: 1.5rem;
padding-top: 3rem;
}

.ContactList {
width: 100%;
}
}
font-size: 0.9rem;
color: #3f3f46;
line-height: 1.1rem;
}

@media (width<=500px) {
.ContactUs {
flex-direction: column;
padding: 1.5rem;
padding-top: 3rem;
}

.ContactList {
width: 100%;
}
}
2 changes: 1 addition & 1 deletion src/Pages/Pathway/components/HeroSection/Mainpage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function mainpage() {
rel="noopener noreferrer"
>
<button className={styles.Container_button_one}>
<img src={pre} alt="" /> Pre apply
<img src={pre} alt="" /> Apply
</button>
</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/Pages/Pathway/components/Menubar/Menubar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default function Menubar() {
<div className={styles.pre_rg}>
<a href="https://mulearn.org/r/ai-bootcamp">
<img src={pre} alt="Pre-register" />
Pre-register
Apply Now
</a>
</div>
</div>
Expand Down

0 comments on commit 3da0959

Please sign in to comment.