-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathport2.tsx
240 lines (220 loc) · 8.71 KB
/
port2.tsx
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
'use client'
import { useState, useEffect, useMemo } from 'react'
import { motion, useAnimationFrame } from 'framer-motion'
import { Lock, Music, Brain, Mail } from 'lucide-react'
interface NumberItem {
x: number
y: number
fontSize: number
value: number
isHovered: boolean
}
export default function Portfolio() {
const [mousePosition, setMousePosition] = useState({ x: 0, y: 0 })
useEffect(() => {
const updateMousePosition = (ev: MouseEvent) => {
setMousePosition({ x: ev.clientX, y: ev.clientY })
}
window.addEventListener('mousemove', updateMousePosition)
return () => {
window.removeEventListener('mousemove', updateMousePosition)
}
}, [])
const initialNumbers = useMemo(() => {
return Array.from({ length: 100 }, () => ({
x: Math.random() * 100,
y: Math.random() * 100,
fontSize: Math.random() * 16 + 8,
value: Math.floor(Math.random() * 10),
isHovered: false,
}))
}, [])
const [backgroundNumbers, setBackgroundNumbers] = useState<NumberItem[]>(initialNumbers)
useAnimationFrame((t) => {
setBackgroundNumbers((prev) =>
prev.map((number) => ({
...number,
x: number.isHovered ? number.x : (number.x + Math.sin(t * 0.001 + number.y) * 0.1) % 100,
y: number.isHovered ? number.y : (number.y + Math.cos(t * 0.001 + number.x) * 0.1) % 100,
}))
)
})
const handleNumberClick = (index: number) => {
setBackgroundNumbers((prev) => {
const newNumbers = [...prev]
const clickedNumber = newNumbers[index]
// Perform a random calculation
const randomOperation = Math.floor(Math.random() * 4)
const randomValue = Math.floor(Math.random() * 10) + 1
switch (randomOperation) {
case 0:
clickedNumber.value = (clickedNumber.value + randomValue) % 10
break
case 1:
clickedNumber.value = Math.abs(clickedNumber.value - randomValue) % 10
break
case 2:
clickedNumber.value = (clickedNumber.value * randomValue) % 10
break
case 3:
clickedNumber.value = Math.floor(clickedNumber.value / randomValue) % 10
break
}
return newNumbers
})
}
const handleNumberHover = (index: number, isHovered: boolean) => {
setBackgroundNumbers((prev) => {
const newNumbers = [...prev]
newNumbers[index].isHovered = isHovered
return newNumbers
})
}
return (
<div className="min-h-screen bg-gray-900 text-white">
{/* Hero Section with interactive background effect */}
<section className="relative h-screen flex items-center justify-center overflow-hidden">
<div className="absolute inset-0 z-0">
{backgroundNumbers.map((number, i) => (
<button
key={i}
className="absolute text-blue-500 text-opacity-20 font-mono hover:text-opacity-50 transition-colors duration-200 focus:outline-none"
style={{
left: `${number.x}%`,
top: `${number.y}%`,
fontSize: `${number.fontSize}px`,
}}
onClick={() => handleNumberClick(i)}
onMouseEnter={() => handleNumberHover(i, true)}
onMouseLeave={() => handleNumberHover(i, false)}
aria-label={`Click to transform number ${number.value}`}
>
{number.value}
</button>
))}
</div>
<div className="z-10 text-center">
<motion.h1
initial={{ y: -50, opacity: 0 }}
animate={{ y: 0, opacity: 1 }}
transition={{ duration: 0.8 }}
className="text-5xl font-bold mb-4"
>
Jane Doe
</motion.h1>
<motion.p
initial={{ y: 50, opacity: 0 }}
animate={{ y: 0, opacity: 1 }}
transition={{ duration: 0.8, delay: 0.2 }}
className="text-xl text-gray-300"
>
Computer Science Undergraduate
</motion.p>
<motion.div
initial={{ scale: 0 }}
animate={{ scale: 1 }}
transition={{ duration: 0.5, delay: 0.5 }}
className="mt-8 flex justify-center space-x-4"
>
<Brain className="w-8 h-8 text-purple-500" />
<Lock className="w-8 h-8 text-green-500" />
<Music className="w-8 h-8 text-pink-500" />
</motion.div>
</div>
</section>
{/* About Section */}
<section className="py-20 bg-gray-800">
<div className="container mx-auto px-4">
<h2 className="text-3xl font-bold mb-8 text-center">About Me</h2>
<p className="text-lg text-gray-300 max-w-2xl mx-auto text-center">
I'm a passionate computer science student with a keen interest in artificial intelligence, cryptography, and music technology. My goal is to combine these fields to create innovative solutions that push the boundaries of what's possible.
</p>
</div>
</section>
{/* Skills Section */}
<section className="py-20 bg-gray-900">
<div className="container mx-auto px-4">
<h2 className="text-3xl font-bold mb-12 text-center">Skills</h2>
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
<SkillCard
icon={<Brain className="w-12 h-12 text-purple-500" />}
title="Artificial Intelligence"
description="Machine learning, neural networks, and natural language processing"
/>
<SkillCard
icon={<Lock className="w-12 h-12 text-green-500" />}
title="Cryptography"
description="Encryption algorithms, blockchain technology, and secure communication protocols"
/>
<SkillCard
icon={<Music className="w-12 h-12 text-pink-500" />}
title="Music Technology"
description="Digital signal processing, audio synthesis, and music information retrieval"
/>
</div>
</div>
</section>
{/* Projects Section */}
<section className="py-20 bg-gray-800">
<div className="container mx-auto px-4">
<h2 className="text-3xl font-bold mb-12 text-center">Projects</h2>
<div className="grid grid-cols-1 md:grid-cols-2 gap-8">
<ProjectCard
title="AI-Powered Music Composer"
description="An application that uses machine learning to generate original music compositions based on user preferences and existing musical styles."
/>
<ProjectCard
title="Secure Chat Application"
description="A end-to-end encrypted messaging app that uses advanced cryptographic techniques to ensure user privacy and data security."
/>
<ProjectCard
title="Emotion Recognition in Music"
description="A machine learning model that analyzes audio features to detect and classify emotions in music tracks."
/>
<ProjectCard
title="Blockchain-based Music Licensing"
description="A decentralized platform for managing music rights and royalties using blockchain technology and smart contracts."
/>
</div>
</div>
</section>
{/* Contact Section */}
<section className="py-20 bg-gray-900">
<div className="container mx-auto px-4 text-center">
<h2 className="text-3xl font-bold mb-8">Get in Touch</h2>
<p className="text-lg text-gray-300 mb-8">
Interested in collaborating or learning more about my work? Feel free to reach out!
</p>
<a
href="mailto:[email protected]"
className="inline-flex items-center px-6 py-3 bg-blue-600 hover:bg-blue-700 text-white font-semibold rounded-lg transition duration-300"
>
<Mail className="w-5 h-5 mr-2" />
Contact Me
</a>
</div>
</section>
{/* Footer */}
<footer className="py-6 bg-gray-800 text-center">
<p className="text-gray-400">© 2023 Jane Doe. All rights reserved.</p>
</footer>
</div>
)
}
function SkillCard({ icon, title, description }) {
return (
<div className="bg-gray-800 p-6 rounded-lg shadow-lg">
<div className="flex justify-center mb-4">{icon}</div>
<h3 className="text-xl font-semibold mb-2 text-center">{title}</h3>
<p className="text-gray-400 text-center">{description}</p>
</div>
)
}
function ProjectCard({ title, description }) {
return (
<div className="bg-gray-900 p-6 rounded-lg shadow-lg border border-gray-700">
<h3 className="text-xl font-semibold mb-4">{title}</h3>
<p className="text-gray-400">{description}</p>
</div>
)
}