diff --git a/src/Components/Education.jsx b/src/Components/Education.jsx new file mode 100644 index 00000000..e51991eb --- /dev/null +++ b/src/Components/Education.jsx @@ -0,0 +1,11 @@ +import React from "react"; + +const Education = () => { + return( +
+

Submitted by Sayan

+
+ ) +} + +export default Education; \ No newline at end of file diff --git a/src/styles.css b/src/styles.css index ae66042a..76c72aa2 100644 --- a/src/styles.css +++ b/src/styles.css @@ -128,3 +128,11 @@ img.socialIcon { height: 30px; width: 30px; } +@keyframes slideInLeft { + 0% { + transform: translateX(-100%); + } + 100% { + transform: translateX(0); + } +} \ No newline at end of file