Compare commits
12 Commits
version_12
...
version_2
| Author | SHA1 | Date | |
|---|---|---|---|
| 2d59f820bd | |||
| f383ffda9c | |||
| eef86f0752 | |||
| 9c85294559 | |||
| 70977dd111 | |||
| 649578b8eb | |||
| 47cc3b9eb3 | |||
| 3c4f407cd5 | |||
| 7fd81c5e80 | |||
| 74129d4498 | |||
| f47aefab93 | |||
| b6b16d7cd2 |
@@ -2,7 +2,6 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
@@ -11,6 +10,7 @@ import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import { Award, Code, Briefcase, Clock, Lightbulb, Mail } from 'lucide-react';
|
||||
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
|
||||
export default function HomePage() {
|
||||
return (
|
||||
@@ -38,33 +38,27 @@ export default function HomePage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCarouselLogo
|
||||
logoText="TechAcademy"
|
||||
description="Master in-demand IT skills with expert instructors, hands-on projects, and real-world industry experience"
|
||||
buttons={[
|
||||
{ text: "Start Learning", href: "/courses" },
|
||||
{ text: "Explore Courses", href: "/courses" }
|
||||
]}
|
||||
slides={[
|
||||
{
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/programming-background-with-html-text_23-2150040420.jpg",
|
||||
imageAlt: "Coding and programming learning environment"
|
||||
},
|
||||
{
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/html-css-collage-concept_23-2150061960.jpg",
|
||||
imageAlt: "Web development and digital technology"
|
||||
},
|
||||
{
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/working-code_1098-19858.jpg",
|
||||
imageAlt: "Online learning and education platform"
|
||||
}
|
||||
]}
|
||||
autoplayDelay={5000}
|
||||
showDimOverlay={true}
|
||||
<div id="hero_billboard_scroll" data-section="hero_billboard_scroll">
|
||||
<HeroBillboardScroll
|
||||
title="Hero Billboard Scroll"
|
||||
description="Add your description here."
|
||||
tag="Label"
|
||||
tagIcon="Check"
|
||||
buttons={[{ label: "Primary", href: "#" }, { label: "Secondary", href: "#" }]}
|
||||
imageSrc="https://placehold.co/600x400"
|
||||
background={{ variant: "plain" }}
|
||||
containerClassName="relative z-10"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="text_split_about" data-section="text_split_about">
|
||||
<TextSplitAbout
|
||||
title="Innovative Learning, Real-world Impact"
|
||||
description={[{ title: "Learn with Flexibility", description: "Our online courses are designed to fit into your schedule, making it easier to advance your career without sacrificing your current commitments." }, { title: "Industry Expert Instructors", description: "Our instructors are industry leaders who bring real-world experience to the classroom, ensuring you receive the most relevant and up-to-date education." }]}
|
||||
buttons={[{ label: "Explore Courses", href: "#" }, { label: "Meet Our Instructors", href: "#" }]}
|
||||
useInvertedBackground="[useInvertedBackground]"
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<SplitAbout
|
||||
title="Empowering the Next Generation of Tech Professionals"
|
||||
@@ -146,6 +140,7 @@ export default function HomePage() {
|
||||
}
|
||||
}
|
||||
]}
|
||||
textBoxTitleClassName="text-lg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -228,28 +223,27 @@ export default function HomePage() {
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "15,000+",
|
||||
value: "7.5,000+",
|
||||
description: "Active Students"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "98%",
|
||||
value: "49%",
|
||||
description: "Course Completion Rate"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "92%",
|
||||
value: "46%",
|
||||
description: "Job Placement Rate"
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
value: "50+",
|
||||
value: "25+",
|
||||
description: "Expert Instructors"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
tag="Newsletter"
|
||||
@@ -262,18 +256,6 @@ export default function HomePage() {
|
||||
termsText="We respect your privacy. Unsubscribe at any time. No spam, ever."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero_billboard_scroll" data-section="hero_billboard_scroll">
|
||||
<HeroBillboardScroll
|
||||
title="Hero Billboard Scroll"
|
||||
description="Add your description here."
|
||||
tag="Label"
|
||||
tagIcon="Check"
|
||||
buttons={[{ label: "Primary", href: "#" }, { label: "Secondary", href: "#" }]}
|
||||
imageSrc="https://placehold.co/600x400"
|
||||
background={{ variant: "plain" }}
|
||||
/>
|
||||
</div>
|
||||
<FooterMedia
|
||||
imageSrc="https://img.b2bpic.net/free-photo/programming-background-with-person-working-with-codes-computer_23-2150010118.jpg"
|
||||
imageAlt="Technology and digital transformation"
|
||||
|
||||
Reference in New Issue
Block a user