Skip to content

Commit bfc0869

Browse files
committed
Add feedback
Signed-off-by: Aryan Shah <aryanashah11@gmail.com>
1 parent 9e092da commit bfc0869

3 files changed

Lines changed: 24 additions & 8 deletions

File tree

src/components/Academy/Features-Section/AcademyFeaturesCarousel.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ const CONTENT = [
3030
title: "Track Your Learning Journey",
3131
img: Track,
3232
description:
33-
"Stay motivated with clear progress tracking. Follow your completed labs and challenges, and watch your cloud native skills grow step by step.",
34-
},
33+
"Stay motivated with clear progress tracking as you move forward. Keep an eye on your completed labs, challenges, and milestones, and see how your cloud native skills steadily grow step by step.",
34+
}
3535
];
3636

3737
const DivWrapper = styled.div`

src/components/Academy/Features-Section/AcademyFeaturesMobileSwiper.js

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,34 @@ const CONTENT = [
3636
title: "Track Your Learning Journey",
3737
img: Track,
3838
description:
39-
"Stay motivated with clear progress tracking. Follow your completed labs and challenges, and watch your cloud native skills grow step by step.",
40-
gradient: "four",
41-
},
39+
"Stay motivated with clear progress tracking as you move forward. Keep an eye on your completed labs, challenges, and milestones, and see how your cloud native skills steadily grow step by step.",
40+
}
4241
];
4342

4443
const DivWrapper = styled.div`
44+
45+
display: flex;
46+
flex-direction: column;
47+
align-items: center;
48+
justify-content: center;
49+
4550
.highlight {
4651
background: linear-gradient(135deg, #00b39f, #00d3a9);
4752
-webkit-background-clip: text;
4853
-webkit-text-fill-color: transparent;
4954
background-clip: text;
5055
}
56+
57+
img {
58+
max-height: 50%;
59+
}
60+
61+
h2 {
62+
font-size: 1.5rem;
63+
text-align: center;
64+
padding-inline: 1rem;
65+
}
66+
5167
`;
5268

5369

@@ -56,7 +72,7 @@ const Card = ({ title, description, img }) => {
5672
<div className="card">
5773
<h2>{title}</h2>
5874
<p>{description}</p>
59-
<img style={{ border: "1px solid #444444", borderRadius: "10px" }} src={img} alt="" />
75+
<img style={{ border: "1px solid #444444", borderRadius: "10px", height: "50%" }} src={img} alt="" />
6076
</div>
6177
);
6278
};
@@ -65,7 +81,7 @@ const AcademyMobileSwiper = () => {
6581
return (
6682
<DivWrapper>
6783
<SwiperContainer style={{ marginBottom: "10%" }}>
68-
<h2>Unlock Your <span className="highlight">Cloud Native</span> Journey</h2>
84+
<h2 style={{ marginBottom: "2rem" }}>Unlock Your <span className="highlight">Cloud Native</span> Journey</h2>
6985
<Swiper
7086
autoplay={{
7187
delay: 2000,

src/pages/learn/academy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import AcademyFeatureCarousel from "../../components/Academy/Features-Section/Ac
99
const AcademySection = () => {
1010

1111
return (
12-
<div className="academy-page" style={{ display: "flex", flexDirection: "column", alignItems: "center", justifyContent: "center" }}>
12+
<div className="academy-page">
1313
<HeroSection />
1414
<LearnerSection />
1515
<EnterpriseSection />

0 commit comments

Comments
 (0)