Skip to content

Commit

Permalink
fix: ui changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalCodes committed Jun 15, 2024
1 parent 114109f commit 4bd23f3
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 17 deletions.
8 changes: 4 additions & 4 deletions src/assets/data/MentorsContent.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import md_nasirul_haque from "../images/MentorImages/md_nasirul_haque.webp";
import snehangshu_bhattacharya from "../images/MentorImages/snehangshu_bhattacharya.webp";
import anubhav_singh from "../images/MentorImages/anubhav_singh.webp"
import kazi_haque from "../images/MentorImages/kazi_haque.webp"
import md_nasirul_haque from "../images/MentorImages/md_nasirul_haque.png";
import snehangshu_bhattacharya from "../images/MentorImages/snehangshu_bhattacharya.png";
import anubhav_singh from "../images/MentorImages/anubhav_singh.png";
import kazi_haque from "../images/MentorImages/kazi_haque.png";

export const mentorContent = [
{
Expand Down
Binary file added src/assets/images/MentorImages/anubhav_singh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/images/MentorImages/anubhav_singh.webp
Binary file not shown.
Binary file added src/assets/images/MentorImages/kazi_haque.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/images/MentorImages/kazi_haque.webp
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/images/MentorImages/md_nasirul_haque.webp
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
22 changes: 10 additions & 12 deletions src/components/private/sponsors/Sponsors.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,14 @@ const Sponsors = () => {
</div>
</div>
</div>
<div className="sponsors__container domain_container">
<h1>Track Partner</h1>
<div className="sponsors__flexbox">
{sponsors["Track"].map((item, index) => {
return <SingleSponsors key={index} sponsor={item} type="track" />;
})}
</div>
</div>
<div className="sponsors__container_flex">
<div className="sponsors__container domain_container">
<h1>Domain Partner</h1>
Expand All @@ -76,16 +84,6 @@ const Sponsors = () => {
})}
</div>
</div>
<div className="sponsors__container domain_container">
<h1>Track Partner</h1>
<div className="sponsors__flexbox">
{sponsors["Track"].map((item, index) => {
return (
<SingleSponsors key={index} sponsor={item} type="track" />
);
})}
</div>
</div>
</div>
<div className="sponsors__container_flex">
<div className="sponsors__container domain_container">
Expand All @@ -95,7 +93,7 @@ const Sponsors = () => {
autoFill={true}
pauseOnHover={true}
className="testimonials__container"
speed={50}
speed={60}
direction="right"
>
{sponsors["Community"].map((item, index) => {
Expand All @@ -107,7 +105,7 @@ const Sponsors = () => {
</div>
</div>
</div>
</div >
</div>
</>
);
};
Expand Down
3 changes: 2 additions & 1 deletion src/components/private/sponsors/Sponsors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
margin: auto;

&.community {
max-width: 1100px;
.rfm-marquee-container {
.rfm-marquee {
.rfm-child {
Expand All @@ -99,4 +100,4 @@
.platinum_container {
margin-top: 2rem;
}
}
}

0 comments on commit 4bd23f3

Please sign in to comment.