Skip to content

Commit

Permalink
Merge pull request #1563 from gtech-mulearn/production
Browse files Browse the repository at this point in the history
prod to dev-server
  • Loading branch information
viraka committed Jun 6, 2024
2 parents b9f7da6 + 94c8e2b commit f39e6b3
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 11 deletions.
6 changes: 6 additions & 0 deletions src/modules/Public/Donation/Donation.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@
padding-top: 5rem;
}

@media screen and (min-width: 800px) {
.LClandingPageHero {
height: 75vh;
}
}

.LClandingPageHero span {
display: flex;
align-items: center;
Expand Down
8 changes: 4 additions & 4 deletions src/modules/Public/Donation/Donation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,19 +87,19 @@ const Donation = () => {
<Navbar />

<div className={styles.LClandingPageHero}>
<div className={styles.backgroundImage}>
{/* <div className={styles.backgroundImage}>
<img
src="https://i.ibb.co/cCvB4r6/Learning-BG.png"
alt="textured background"
></img>
</div>
<div className={styles.dash}></div>
</div> */}
{/* <div className={styles.dash}></div> */}
<div className={styles.heroTitle}>
<span>
<b>Donate to</b>{" "}
<img src="https://i.ibb.co/FDQ2M4n/Learn.png" alt="" />
</span>
<b>Let's grow together</b>
{/* <b>Let's grow together</b> */}
</div>
<p>
An informal mechanism for bringing together learners who are
Expand Down
14 changes: 9 additions & 5 deletions src/modules/Public/Donation/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,17 @@ import {
RiFacebookBoxFill
} from "react-icons/ri";



export default function Footer() {
return (
<footer className={styles.footer}>
<div className={styles.container}>
<div className={styles.footerLogo}>
<Link to="https://mulearn.org/"><img src="https://i.ibb.co/FDQ2M4n/Learn.png" alt="mulearn" /></Link>
<p>µLearn is one of India's largest student communities that provides learn new skills, network with peers. Oru line koode venam just to make it aesthetic.</p>
<Link to="https://mulearn.org/">
<img
src="https://i.ibb.co/FDQ2M4n/Learn.png"
alt="mulearn"
/>
</Link>
</div>
{footerData.map((data, index) => {
return (
Expand All @@ -43,7 +45,9 @@ export default function Footer() {
})}
</div>
<hr />
<div className={[styles.container, styles.centerContainer].join(" ")}>
<div
className={[styles.container, styles.centerContainer].join(" ")}
>
<div className={styles.socialMedia}>
<a
target="_blank"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,7 @@ const LearningCircles = () => {
console.log(HackathonDashboard[0]);

const columnOrder: ColOrder[] = [
{ column: "first_name", Label: "First Name", isSortable: true },
{ column: "last_name", Label: "Last Name", isSortable: true },
{ column: "full_name", Label: "Full Name", isSortable: true },
{ column: "muid", Label: "muid", isSortable: true },
{ column: "email", Label: "Email", isSortable: true },
{ column: "circle_name", Label: "Circle Name", isSortable: true },
Expand Down

0 comments on commit f39e6b3

Please sign in to comment.