Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanw2457 committed Oct 11, 2024
1 parent aa823d7 commit 840c8e4
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions src/components/Works.jsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,25 @@
import React from 'react'
import Tilt from "react-tilt";
import { motion } from "framer-motion";

import { styles } from "../styles";
import { github } from "../assets";
import { SectionWrapper } from "../hoc";
import { projects } from "../constants";
import { fadeIn, textVariant } from "../utils/motion";

const Works = () => {
return (
<div>Works</div>
<>
<motion.div variants={textVariant()}>
<p className={styles.sectionSubText}>
My work
</p>
<h2 className={styles.sectionHeadText}>
Projects.
</h2>
</motion.div>
</>
)
}

export default Works
export default SectionWrapper(Works, "");

0 comments on commit 840c8e4

Please sign in to comment.