Skip to content

Commit

Permalink
final deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
sayanbiswas2468 committed Jul 2, 2024
1 parent 0300cee commit 802910d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/Components/Education.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import React from "react";

const Education = () => {
return(
<section className="light" id="education">
<h2>Submitted by Sayan</h2>
</section>
)
}

export default Education;
8 changes: 8 additions & 0 deletions src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,11 @@ img.socialIcon {
height: 30px;
width: 30px;
}
@keyframes slideInLeft {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(0);
}
}

0 comments on commit 802910d

Please sign in to comment.