diff --git a/src/components/sections/Experience.jsx b/src/components/sections/Experience.jsx index 9e06d51..10f1961 100644 --- a/src/components/sections/Experience.jsx +++ b/src/components/sections/Experience.jsx @@ -1,6 +1,8 @@ import React, { useState, useEffect } from "react"; import clsx from "clsx"; import Tensorcrypt from "./Tensorcrypt"; +import Realtutor from "./Realtutor"; +import Webdev from './Webdev'; const Experience = () => { const [currentSection, setCurrentSection] = useState(0); @@ -14,13 +16,17 @@ const Experience = () => { }, 250); }; + /** + * This could be done with React-router, + * However this makes the animations easier - no need to over complciate it. + */ const getText = (index) => { if (index == 0) { return ; } else if (index == 1) { - return ; + return ; } else { - return ; + return ; } }; @@ -61,10 +67,10 @@ const Experience = () => {

Tensorcrypt

-

14/04/2022

+

Real Tutor

-

14/04/2022

+

Web dev

diff --git a/src/components/sections/Realtutor.jsx b/src/components/sections/Realtutor.jsx new file mode 100644 index 0000000..5dc2998 --- /dev/null +++ b/src/components/sections/Realtutor.jsx @@ -0,0 +1,19 @@ +import React from "react"; + +const Realtutor = () => { + return ( +
+

Real tutor

+

+ A company that I founded to provide online affordable tutoring in a + series of subjects. I have and still am a private tutor and I wanted to + grow my services and provide tutoring to more people, so I made a + company where I could hire free lance tutors to teach subjects which I + myself cannot. +

+

Software Made

+

I made software to track students progress as well as students and tutors lessons, I used this to make sure I knew what all the students were doing and how they were doing.

+
+ ); +}; +export default Realtutor; diff --git a/src/components/sections/Webdev.jsx b/src/components/sections/Webdev.jsx new file mode 100644 index 0000000..16faebe --- /dev/null +++ b/src/components/sections/Webdev.jsx @@ -0,0 +1,24 @@ +import React from "react"; + +const Webdev = () => { + return ( +
+

Free lance Web Development

+

+ I also work as a Free lance web developer, and I have worked on various + projects such as: +

+
    +
  • SCC Website (A security lab at my university).
  • +
  • This website.
  • +
  • Rio Illustrates (A portfolio website for a great artist).
  • +
+
+ +

+ I also make Web Applications, these are under the projects section. +

+
+ ); +}; +export default Webdev;