├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package.json ├── postcss.config.js ├── src ├── App.jsx ├── assets │ ├── LOGO.svg │ ├── aboutus1.svg │ ├── aboutus2.svg │ ├── aboutus3.svg │ ├── courseImage.svg │ ├── instagram.svg │ ├── linkedin.svg │ ├── man1.svg │ ├── man2.svg │ ├── man3.svg │ ├── man4.svg │ ├── top-bg.png │ └── women5.svg ├── comps │ └── LandinPage │ │ ├── AboutUs.jsx │ │ ├── AboutUsCard.jsx │ │ ├── Circles.jsx │ │ ├── LandinCourses.jsx │ │ └── LandinHeader.jsx ├── index.css ├── main.jsx ├── pages │ └── LandingPage.jsx └── utilitis │ ├── CourseCard.jsx │ ├── Footer.jsx │ ├── ModeSwitchers.jsx │ ├── NavBar.jsx │ └── style.css ├── tailwind.config.js └── vite.config.js /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/assets/LOGO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/assets/LOGO.svg -------------------------------------------------------------------------------- /src/assets/aboutus1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/assets/aboutus1.svg -------------------------------------------------------------------------------- /src/assets/aboutus2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/assets/aboutus2.svg -------------------------------------------------------------------------------- /src/assets/aboutus3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/assets/aboutus3.svg -------------------------------------------------------------------------------- /src/assets/courseImage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/assets/courseImage.svg -------------------------------------------------------------------------------- /src/assets/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/assets/instagram.svg -------------------------------------------------------------------------------- /src/assets/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/assets/linkedin.svg -------------------------------------------------------------------------------- /src/assets/man1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/assets/man1.svg -------------------------------------------------------------------------------- /src/assets/man2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/assets/man2.svg -------------------------------------------------------------------------------- /src/assets/man3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/assets/man3.svg -------------------------------------------------------------------------------- /src/assets/man4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/assets/man4.svg -------------------------------------------------------------------------------- /src/assets/top-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/assets/top-bg.png -------------------------------------------------------------------------------- /src/assets/women5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/assets/women5.svg -------------------------------------------------------------------------------- /src/comps/LandinPage/AboutUs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/comps/LandinPage/AboutUs.jsx -------------------------------------------------------------------------------- /src/comps/LandinPage/AboutUsCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/comps/LandinPage/AboutUsCard.jsx -------------------------------------------------------------------------------- /src/comps/LandinPage/Circles.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/comps/LandinPage/Circles.jsx -------------------------------------------------------------------------------- /src/comps/LandinPage/LandinCourses.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/comps/LandinPage/LandinCourses.jsx -------------------------------------------------------------------------------- /src/comps/LandinPage/LandinHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/comps/LandinPage/LandinHeader.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/pages/LandingPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/pages/LandingPage.jsx -------------------------------------------------------------------------------- /src/utilitis/CourseCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/utilitis/CourseCard.jsx -------------------------------------------------------------------------------- /src/utilitis/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/utilitis/Footer.jsx -------------------------------------------------------------------------------- /src/utilitis/ModeSwitchers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/utilitis/ModeSwitchers.jsx -------------------------------------------------------------------------------- /src/utilitis/NavBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/utilitis/NavBar.jsx -------------------------------------------------------------------------------- /src/utilitis/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/src/utilitis/style.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/soai-front-end-Challenge/HEAD/vite.config.js --------------------------------------------------------------------------------