-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
102 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,101 +1,109 @@ | ||
import IconMap from "../util/IconMap"; | ||
import Paragraph from "../util/Paragraph" | ||
import { motion } from 'framer-motion'; | ||
import Paragraph from "../util/Paragraph"; | ||
import { motion } from "framer-motion"; | ||
|
||
import { frontendIcons, backendIcons, relDatabases, noRelDB, DSTools, DSFrameworks, design } from "../util/technologies"; | ||
import { | ||
frontendIcons, | ||
backendIcons, | ||
relDatabases, | ||
noRelDB, | ||
DSTools, | ||
DSFrameworks, | ||
design, | ||
} from "../util/technologies"; | ||
|
||
const Skills = () => { | ||
return ( | ||
<div className=""> | ||
<div className="webskills overflow-hidden"> | ||
<Paragraph | ||
isTitle={true} | ||
delay={0.2} | ||
duration={0.6} | ||
title="Web Development" | ||
content="" | ||
/> | ||
<motion.div | ||
className="technologies flex flex-col items-start md:flex-row md:justify-around overflow-hidden" | ||
initial={{ y: "-200%", opacity: 0 }} | ||
animate={{ y: 0, opacity: 1 }} | ||
transition={{ | ||
duration: 1, | ||
delay: 0.4, | ||
ease: [0, 0.71, 0.2, 1], | ||
}} | ||
> | ||
<IconMap icons={frontendIcons} label="FrontEnd" /> | ||
<IconMap icons={backendIcons} label="BackEnd" /> | ||
</motion.div> | ||
</div> | ||
<div className="database overflow-hidden"> | ||
<Paragraph | ||
isTitle={true} | ||
delay={0.2} | ||
duration={0.6} | ||
title="Data Base" | ||
content="" | ||
/> | ||
<motion.div | ||
className="technologies flex flex-col items-start md:flex-row md:justify-around overflow-hidden" | ||
initial={{ y: "-200%", opacity: 0 }} | ||
animate={{ y: 0, opacity: 1 }} | ||
transition={{ | ||
duration: 1, | ||
delay: 0.6, | ||
ease: [0, 0.71, 0.2, 1], | ||
}} | ||
> | ||
<IconMap icons={relDatabases} label="Relational" /> | ||
<IconMap icons={noRelDB} label="No Relational" /> | ||
</motion.div> | ||
</div> | ||
<div className="datascience overflow-hidden"> | ||
<Paragraph | ||
isTitle={true} | ||
delay={0.2} | ||
duration={0.6} | ||
title="Data Science" | ||
content="" | ||
/> | ||
<motion.div | ||
className="technologies flex flex-col items-start md:flex-row md:justify-around overflow-hidden" | ||
initial={{ y: "-200%", opacity: 0 }} | ||
animate={{ y: 0, opacity: 1 }} | ||
transition={{ | ||
duration: 1, | ||
delay: 0.8, | ||
ease: [0, 0.71, 0.2, 1], | ||
}} | ||
> | ||
<IconMap icons={DSTools} label="Tools" /> | ||
<IconMap icons={DSFrameworks} label="Frameworks" /> | ||
</motion.div> | ||
</div> | ||
<div className="design overflow-hidden"> | ||
<Paragraph | ||
isTitle={true} | ||
delay={0.2} | ||
duration={0.8} | ||
title="Design" | ||
content="" | ||
/> | ||
<motion.div | ||
className="pb-10 technologies flex flex-col items-start md:flex-row md:justify-around overflow-hidden" | ||
initial={{ y: "-200%", opacity: 0 }} | ||
animate={{ y: 0, opacity: 1 }} | ||
transition={{ | ||
duration: 1, | ||
delay: 1, | ||
ease: [0, 0.71, 0.2, 1], | ||
}} | ||
> | ||
<IconMap icons={design} label="" /> | ||
</motion.div> | ||
</div> | ||
</div> | ||
) | ||
} | ||
<div className="webskills overflow-hidden"> | ||
<Paragraph | ||
isTitle={true} | ||
delay={0.2} | ||
duration={0.6} | ||
title="Web Development" | ||
content="" | ||
/> | ||
<motion.div | ||
className="technologies flex flex-col items-start md:flex-row md:justify-around overflow-hidden" | ||
initial={{ y: "-200%", opacity: 0 }} | ||
animate={{ y: 0, opacity: 1 }} | ||
transition={{ | ||
duration: 1, | ||
delay: 0.4, | ||
ease: [0, 0.71, 0.2, 1], | ||
}} | ||
> | ||
<IconMap icons={frontendIcons} label="FrontEnd" /> | ||
<IconMap icons={backendIcons} label="BackEnd" /> | ||
</motion.div> | ||
</div> | ||
<div className="database overflow-hidden"> | ||
<Paragraph | ||
isTitle={true} | ||
delay={0.2} | ||
duration={0.6} | ||
title="Data Base" | ||
content="" | ||
/> | ||
<motion.div | ||
className="technologies flex flex-col items-start md:flex-row md:justify-around overflow-hidden" | ||
initial={{ y: "-200%", opacity: 0 }} | ||
animate={{ y: 0, opacity: 1 }} | ||
transition={{ | ||
duration: 1, | ||
delay: 0.6, | ||
ease: [0, 0.71, 0.2, 1], | ||
}} | ||
> | ||
<IconMap icons={relDatabases} label="Relational" /> | ||
<IconMap icons={noRelDB} label="No Relational" /> | ||
</motion.div> | ||
</div> | ||
{/* <div className="datascience overflow-hidden"> | ||
<Paragraph | ||
isTitle={true} | ||
delay={0.2} | ||
duration={0.6} | ||
title="Data Science" | ||
content="" | ||
/> | ||
<motion.div | ||
className="technologies flex flex-col items-start md:flex-row md:justify-around overflow-hidden" | ||
initial={{ y: "-200%", opacity: 0 }} | ||
animate={{ y: 0, opacity: 1 }} | ||
transition={{ | ||
duration: 1, | ||
delay: 0.8, | ||
ease: [0, 0.71, 0.2, 1], | ||
}} | ||
> | ||
<IconMap icons={DSTools} label="Tools" /> | ||
<IconMap icons={DSFrameworks} label="Frameworks" /> | ||
</motion.div> | ||
</div> */} | ||
<div className="design overflow-hidden"> | ||
<Paragraph | ||
isTitle={true} | ||
delay={0.2} | ||
duration={0.8} | ||
title="Design" | ||
content="" | ||
/> | ||
<motion.div | ||
className="pb-10 technologies flex flex-col items-start md:flex-row md:justify-around overflow-hidden" | ||
initial={{ y: "-200%", opacity: 0 }} | ||
animate={{ y: 0, opacity: 1 }} | ||
transition={{ | ||
duration: 1, | ||
delay: 1, | ||
ease: [0, 0.71, 0.2, 1], | ||
}} | ||
> | ||
<IconMap icons={design} label="" /> | ||
</motion.div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Skills | ||
export default Skills; |