You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
524 B
JavaScript
23 lines
524 B
JavaScript
import Banner from '../components/Banner';
|
|
import Highlights from '../components/Highlights';
|
|
import FeaturedCourses from '../components/FeaturedCourses';
|
|
// import CourseCard from '../components/CourseCard';
|
|
|
|
export default function Home() {
|
|
|
|
const data = {
|
|
title: "Zuitt Coding Bootcamp",
|
|
content: "Opportunities for everyone, everywhere",
|
|
destination: "/courses",
|
|
label: "Enroll now!"
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Banner data={data}/>
|
|
<FeaturedCourses />
|
|
<Highlights />
|
|
|
|
</>
|
|
)
|
|
} |