Skip to content

Commit 14455cf

Browse files
committed
change number in LearnerSection and add price and mooc comparison
Signed-off-by: Wyllie Fang <wylliefang@gmail.com>
1 parent 723652f commit 14455cf

3 files changed

Lines changed: 39 additions & 18 deletions

File tree

src/components/Academy/Enterprise-Section/EnterpriseSection.js

Lines changed: 29 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,17 @@ const EnterpriseSectionWrapper = styled.section`
164164
}
165165
}
166166
}
167+
168+
.button-container {
169+
display: flex;
170+
gap: 1rem;
171+
flex-wrap: wrap;
172+
justify-content: flex-start;
173+
174+
@media (max-width: 600px) {
175+
justify-content: center;
176+
}
177+
}
167178
}
168179
169180
@media (max-width: 768px) {
@@ -227,19 +238,28 @@ const EnterpriseSection = () => {
227238
</div>
228239
<div className="audience-text">
229240
<h2>For <span className="highlight">Enterprise</span> Teams</h2>
230-
<p>Accelerate your enterprise platform transformation with structured cloud native training, customizable contents, and enterprise-grade analytics to maximize ROI and reduce risk.</p>
241+
<p>Accelerate your enterprise platform transformation with structured cloud native training, customizable contents, and enterprise-grade analytics to maximize ROI and reduce risk. <a href="https://layer5.io/resources/academy/layer5-academy-vs-moocit" target="_blank" rel="noopener noreferrer">Compare Layer5 Academy with traditional platforms.</a></p>
231242
<ul className="audience-features">
232-
<li>Three comprehensive <a href="#" target="_blank" rel="noopener noreferrer">content library</a>: Learning Paths, Challenges, and Certifications for all skill levels and training scenarios</li>
243+
<li>Three comprehensive <a href="https://docs.layer5.io/cloud/academy/creating-content/" target="_blank" rel="noopener noreferrer">content library</a>: Learning Paths, Challenges, and Certifications for all skill levels and training scenarios</li>
233244
<li>Enterprise <a href="https://badges.layer5.io/" target="_blank" rel="noopener noreferrer">badge system</a> to showcase team achievements and drive motivation across your organization</li>
234245
<li>Advanced <a href="https://docs.layer5.io/cloud/academy/creating-content/instructor-console-guide/" target="_blank" rel="noopener noreferrer">instructor dashboard</a> with real-time progress tracking, skill assessment, and detailed analytics</li>
235-
<li>Flexible <a href="#" target="_blank" rel="noopener noreferrer">invitation</a> system: Host public challenges, onboard new partners, and accelerate engineer hiring with structured assessments</li>
246+
<li>Flexible invitation system: Host public challenges, onboard new partners, and accelerate engineer hiring with structured assessments</li>
236247
</ul>
237-
<Button
238-
$primary
239-
title="Schedule Enterprise Demo"
240-
$external={true}
241-
$url="https://calendar.google.com/calendar/appointments/schedules/AcZssZ3pmcApaDP4xd8hvG5fy8ylxuFxD3akIRc5vpWJ60q-HemQi80SFFAVftbiIsq9pgiA2o8yvU56?gv=true"
242-
/>
248+
<div className="button-container">
249+
<Button
250+
$primary
251+
title="View Pricing"
252+
$external={true}
253+
$url="https://layer5.io/pricing"
254+
/>
255+
<Button
256+
$primary
257+
title="Schedule Enterprise Demo"
258+
$external={true}
259+
$url="https://calendar.google.com/calendar/appointments/schedules/AcZssZ3pmcApaDP4xd8hvG5fy8ylxuFxD3akIRc5vpWJ60q-HemQi80SFFAVftbiIsq9pgiA2o8yvU56?gv=true"
260+
/>
261+
262+
</div>
243263
</div>
244264
</div>
245265
</EnterpriseSectionWrapper>

src/components/Academy/Hero-Section/HeroSection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ const Header = ({ isDark }) => {
178178

179179
<Col className="hero-image" $lg={6} $md={6}>
180180
<div className="hero-image-container">
181-
<AcademyLogo className="academy-logo" style={{ position: "absolute", height: "180px", width: "180px", top: "50%", left: "50%", transform: "translate(-50%, -50%)", color: "white" }}/>
181+
<AcademyLogo className="academy-logo" style={{ position: "absolute", height: "180px", width: "180px", top: "50%", left: "50%", transform: "translate(-50%, -50%)", fill: "white" }}/>
182182
<img src={Cone} className="cone-image"/>
183183
</div>
184184
</Col>

src/components/Academy/Learners-Section/LearnerSection.js

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -181,21 +181,22 @@ const LearnerSection = () => {
181181
<h3 style={{ marginBottom: "1rem", color: "var(--primary-color)", textAlign: "center" }}>Learning Community</h3>
182182
<div className="stats-grid">
183183
<div className="stat-item">
184-
<span className="stat-number">7K+</span>
185-
<span className="stat-label">Active Learners</span>
184+
<span className="stat-number">3</span>
185+
<span className="stat-label">Difficulty Levels</span>
186186
</div>
187187
<div className="stat-item">
188-
<span className="stat-number">50+</span>
189-
<span className="stat-label">Hands-on Labs</span>
188+
<span className="stat-number">24/7</span>
189+
<span className="stat-label">Community Support</span>
190190
</div>
191191
<div className="stat-item">
192-
<span className="stat-number">95%</span>
193-
<span className="stat-label">Completion Rate</span>
192+
<span className="stat-number">100%</span>
193+
<span className="stat-label">Cloud Native Focused</span>
194194
</div>
195195
<div className="stat-item">
196-
<span className="stat-number">24/7</span>
197-
<span className="stat-label">Community Support</span>
196+
<span className="stat-number">100%</span>
197+
<span className="stat-label">Community Centric</span>
198198
</div>
199+
199200
</div>
200201
</div>
201202
</div>

0 commit comments

Comments
 (0)