1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
import { motion } from "framer-motion";
const fadeInUp = {
initial: { opacity: 0, y: 20 },
animate: { opacity: 1, y: 0 },
transition: { duration: 0.6 },
};
const staggerContainer = {
animate: {
transition: {
staggerChildren: 0.1,
},
},
};
export const Projects = () => {
return (
<motion.section
id="projects"
className="projects"
initial={{ opacity: 0 }}
whileInView={{ opacity: 1 }}
viewport={{ once: true }}
transition={{ duration: 0.6 }}
>
<motion.h2
variants={fadeInUp}
initial="initial"
whileInView="animate"
viewport={{ once: true }}
>
My Projects
</motion.h2>
<motion.div
className="project-grid"
variants={staggerContainer}
initial="initial"
whileInView="animate"
viewport={{ once: true }}
>
<motion.div
className="project-card"
variants={fadeInUp}
whileHover={{ y: -10, transition: { duration: 0.2 } }}
>
<motion.div
className="project-image"
style={{ backgroundImage: "url('/projects/ai-saas.png')" }}
whileHover={{ scale: 1.05, transition: { duration: 0.2 } }}
/>
<h3> AI SaaS Platform</h3>
<p>
A modern SaaS platform built with Next.js and OpenAI integration,
featuring real-time AI-powered content generation and analytics.
</p>
<div className="project-tech">
<span>Next.js</span>
<span>OpenAI</span>
<span>TailwindCSS</span>
</div>
</motion.div>
<motion.div
className="project-card"
variants={fadeInUp}
whileHover={{ y: -10, transition: { duration: 0.2 } }}
>
<motion.div
className="project-image"
style={{
backgroundImage: "url('/projects/social-media.png')",
}}
whileHover={{ scale: 1.05 }}
transition={{ duration: 0.2 }}
/>
<h3>Social Media Dashboard</h3>
<p>
A comprehensive social media management dashboard with analytics,
scheduling, and engagement tracking features.
</p>
<div className="project-tech">
<span>React</span>
<span>Node.js</span>
<span>MongoDB</span>
</div>
</motion.div>
<motion.div
className="project-card"
variants={fadeInUp}
whileHover={{ y: -10, transition: { duration: 0.2 } }}
>
<motion.div
className="project-image"
style={{
backgroundImage: "url('/projects/stopwatch.png')",
}}
whileHover={{ scale: 1.05 }}
transition={{ duration: 0.2 }}
/>
<h3>Productivity Timer</h3>
<p>
A sleek productivity timer application with customizable work
sessions, statistics tracking, and dark mode support.
</p>
<div className="project-tech">
<span>React</span>
<span>TypeScript</span>
<span>TailwindCSS</span>
</div>
</motion.div>
</motion.div>
</motion.section>
);
};
|