diff --git a/pages/projects.jsx b/pages/projects.jsx new file mode 100644 index 0000000..08b7547 --- /dev/null +++ b/pages/projects.jsx @@ -0,0 +1,42 @@ +'use client'; + +import { motion } from 'framer-motion'; +import { TypingText } from '../components'; +import styles from '../styles'; +import { fadeIn, staggerContainer } from '../utils/motion'; + +const Projects = () => ( +
+
+ + + + + + {/* Replace with your projects content */} + Our Projects: Description of your projects goes here. + + + + +
+); + +export default Projects; \ No newline at end of file