Compare commits
23 Commits
version_11
...
version_18
| Author | SHA1 | Date | |
|---|---|---|---|
| 5d6b905820 | |||
| 4d7e9f813f | |||
| 78079e5fe9 | |||
| af65a697d5 | |||
| 742804aca1 | |||
| 0e035c00ed | |||
| cb822685e1 | |||
| b647cb1eae | |||
| a3665e942e | |||
| 5960c71262 | |||
| 39f3828847 | |||
| c7fdd3509a | |||
| 054a0a4d95 | |||
| 90a51e7edb | |||
| 87315cd131 | |||
| d8cf8d117f | |||
| 14451b2c10 | |||
| 7898f9ecd8 | |||
| 223369a90a | |||
| fb6e0dafda | |||
| 890b0acee4 | |||
| a416be25e9 | |||
| ab456f89c3 |
@@ -4,21 +4,20 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
/* --background: #f7f6f7;;
|
/* --background: #162b17;;
|
||||||
--card: #ffffff;;
|
--card: #234126;;
|
||||||
--foreground: #250c0d;;
|
--foreground: #f2f2f2;;
|
||||||
--primary-cta: #b82b40;;
|
--primary-cta: #9c59d4;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #7e4af4;;
|
||||||
--accent: #b90941;;
|
--accent: #d06eb8;;
|
||||||
--background-accent: #e8a8b6;; */
|
--background-accent: #442e66;; */
|
||||||
|
--background: #162b17;;
|
||||||
--background: #f7f6f7;;
|
--card: #234126;;
|
||||||
--card: #ffffff;;
|
--foreground: #f2f2f2;;
|
||||||
--foreground: #250c0d;;
|
--primary-cta: #4CAF50;;
|
||||||
--primary-cta: #b82b40;;
|
--secondary-cta: #2e7d32;;
|
||||||
--secondary-cta: #ffffff;;
|
--accent: #76ff03;;
|
||||||
--accent: #b90941;;
|
--background-accent: #1e3c1f;;
|
||||||
--background-accent: #e8a8b6;;
|
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
@@ -46,18 +46,46 @@ export default function ITAcademyPage() {
|
|||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplit
|
<HeroSplit
|
||||||
title="LLM"
|
title="123"
|
||||||
description="Learn in-demand IT skills with industry experts. From web development to cybersecurity, our comprehensive courses prepare you for success in the tech industry."
|
description="Measurable Results That Speak for Themselves"
|
||||||
tag="Start Your Journey"
|
tag="Start Your Journey"
|
||||||
tagIcon={Zap}
|
tagIcon={Zap}
|
||||||
background={{ variant: "glowing-orb" }}
|
background={{ variant: "glowing-orb" }}
|
||||||
imageSrc="https://img.b2bpic.net/free-photo/row-serious-focused-coworkers-sitting-table-typing-laptops_74855-10363.jpg"
|
imageSrc="https://img.b2bpic.net/free-photo/man-working-energy-innovations-his-laptop_23-2148820170.jpg"
|
||||||
imageAlt="Students learning coding and IT skills"
|
imageAlt="Students learning coding and IT skills"
|
||||||
imagePosition="right"
|
imagePosition="right"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Browse Courses", href: "courses" },
|
{ text: "Browse Courses", href: "courses" },
|
||||||
{ text: "Free Demo", href: "contact" }
|
{ text: "Free Demo", href: "contact" }
|
||||||
]}
|
]}
|
||||||
|
containerClassName="mt-8"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="team" data-section="team">
|
||||||
|
<TeamCardOne
|
||||||
|
title="Meet Our Expert Instructors"
|
||||||
|
description="Experienced professionals with proven track records in the tech industry"
|
||||||
|
tag="Instructors"
|
||||||
|
tagIcon={Users}
|
||||||
|
textboxLayout="default"
|
||||||
|
gridVariant="four-items-2x2-equal-grid"
|
||||||
|
animationType="slide-up"
|
||||||
|
useInvertedBackground="true"
|
||||||
|
members={[
|
||||||
|
{
|
||||||
|
id: "1", name: "Rajesh Kumar", role: "Full-Stack Developer", imageSrc: "https://img.b2bpic.net/free-photo/portrait-young-man-scientist_23-2148820194.jpg", imageAlt: "Rajesh Kumar"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "2", name: "Priya Sharma", role: "Data Scientist", imageSrc: "https://img.b2bpic.net/free-photo/close-up-young-business-person-doing-internship_23-2149305396.jpg", imageAlt: "Priya Sharma"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "3", name: "Amit Verma", role: "Security Expert", imageSrc: "https://img.b2bpic.net/free-photo/close-up-colleagues-learning-work_23-2149300706.jpg", imageAlt: "Amit Verma"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "4", name: "Deepa Singh", role: "UI/UX Designer", imageSrc: "https://img.b2bpic.net/free-photo/closeup-senior-lecturer-with-arms-crossed_1262-1753.jpg", imageAlt: "Deepa Singh"
|
||||||
|
}
|
||||||
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -65,15 +93,17 @@ export default function ITAcademyPage() {
|
|||||||
<MetricSplitMediaAbout
|
<MetricSplitMediaAbout
|
||||||
tag="About Us"
|
tag="About Us"
|
||||||
tagIcon={Award}
|
tagIcon={Award}
|
||||||
title="Building the Next Generation of Tech Professionals"
|
title="Test Title"
|
||||||
description="Founded in 2015, IT Academy has trained over 5,000 students in cutting-edge technology. Our mission is to provide accessible, high-quality IT education that bridges the gap between academic learning and industry demands."
|
description="Founded in 2015, IT Academy has trained over 5,000 students in cutting-edge technology. Our mission is to provide accessible, high-quality IT education that bridges the gap between academic learning and industry demands."
|
||||||
metrics={[
|
metrics={[
|
||||||
{ value: "5000+", title: "Students Trained Successfully" },
|
{ value: "5000+", title: "Students Trained Successfully" },
|
||||||
{ value: "95%", title: "Job Placement Rate" }
|
{ value: "35%", title: "Job Placement Rate" }
|
||||||
]}
|
]}
|
||||||
imageSrc="https://img.b2bpic.net/free-photo/row-serious-focused-coworkers-sitting-table-typing-laptops_74855-10363.jpg"
|
imageSrc="https://img.b2bpic.net/free-photo/row-serious-focused-coworkers-sitting-table-typing-laptops_74855-10363.jpg"
|
||||||
imageAlt="IT Academy classroom"
|
imageAlt="IT Academy classroom"
|
||||||
useInvertedBackground="invertDefault"
|
useInvertedBackground="invertDefault"
|
||||||
|
className="hover:shadow-xl transition-shadow duration-300"
|
||||||
|
className="animate-zoom-in"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -85,6 +115,9 @@ export default function ITAcademyPage() {
|
|||||||
tagIcon={BookOpen}
|
tagIcon={BookOpen}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
|
gridVariant="three-columns-all-equal-width"
|
||||||
|
gridVariant="three-columns-all-equal-width"
|
||||||
|
gridVariant="three-columns-all-equal-width"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
useInvertedBackground="noInvert"
|
useInvertedBackground="noInvert"
|
||||||
features={[
|
features={[
|
||||||
@@ -117,33 +150,6 @@ export default function ITAcademyPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="team" data-section="team">
|
|
||||||
<TeamCardOne
|
|
||||||
title="Meet Our Expert Instructors"
|
|
||||||
description="Experienced professionals with proven track records in the tech industry"
|
|
||||||
tag="Instructors"
|
|
||||||
tagIcon={Users}
|
|
||||||
textboxLayout="default"
|
|
||||||
gridVariant="four-items-2x2-equal-grid"
|
|
||||||
animationType="slide-up"
|
|
||||||
useInvertedBackground="noInvert"
|
|
||||||
members={[
|
|
||||||
{
|
|
||||||
id: "1", name: "Rajesh Kumar", role: "Full-Stack Developer", imageSrc: "https://img.b2bpic.net/free-photo/portrait-young-man-scientist_23-2148820194.jpg", imageAlt: "Rajesh Kumar"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2", name: "Priya Sharma", role: "Data Scientist", imageSrc: "https://img.b2bpic.net/free-photo/close-up-young-business-person-doing-internship_23-2149305396.jpg", imageAlt: "Priya Sharma"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3", name: "Amit Verma", role: "Security Expert", imageSrc: "https://img.b2bpic.net/free-photo/close-up-colleagues-learning-work_23-2149300706.jpg", imageAlt: "Amit Verma"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4", name: "Deepa Singh", role: "UI/UX Designer", imageSrc: "https://img.b2bpic.net/free-photo/closeup-senior-lecturer-with-arms-crossed_1262-1753.jpg", imageAlt: "Deepa Singh"
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardSix
|
<TestimonialCardSix
|
||||||
title="What Our Students Say"
|
title="What Our Students Say"
|
||||||
@@ -223,7 +229,6 @@ export default function ITAcademyPage() {
|
|||||||
useInvertedBackground="invertDefault"
|
useInvertedBackground="invertDefault"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
@@ -261,6 +266,7 @@ export default function ITAcademyPage() {
|
|||||||
]}
|
]}
|
||||||
bottomLeftText="© 2025 IT Academy. All rights reserved."
|
bottomLeftText="© 2025 IT Academy. All rights reserved."
|
||||||
bottomRightText="Empowering Tech Careers Since 2015"
|
bottomRightText="Empowering Tech Careers Since 2015"
|
||||||
|
className="mt-10"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
Reference in New Issue
Block a user