From 840c8e4d729a02f22c6d3f333189de3fa30a61f3 Mon Sep 17 00:00:00 2001 From: ethanw2457 <130408385+ethanw2457@users.noreply.github.com> Date: Thu, 10 Oct 2024 22:02:28 -0400 Subject: [PATCH] update --- src/components/Works.jsx | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/src/components/Works.jsx b/src/components/Works.jsx index 7798f27..2f0fa20 100644 --- a/src/components/Works.jsx +++ b/src/components/Works.jsx @@ -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 ( -
Works
+ <> + +

+ My work +

+

+ Projects. +

+
+ ) } -export default Works \ No newline at end of file +export default SectionWrapper(Works, ""); \ No newline at end of file