import React, { useState, useEffect } from 'react';
import { Mail, Globe, Book, Award, School, Briefcase, Binary, Database, Gamepad2, Sword, Brain, Zap } from 'lucide-react';
export default function CyberpunkProfile() {
const [glowColor, setGlowColor] = useState('rgb(0, 255, 255)');
const [isLoading, setIsLoading] = useState(true);
const [xpLevel, setXpLevel] = useState(0);
useEffect(() => {
const colors = [
'rgb(255, 0, 0)', // Red
'rgb(255, 165, 0)', // Orange
'rgb(255, 255, 0)', // Yellow
'rgb(0, 255, 0)', // Green
'rgb(0, 255, 255)', // Cyan
'rgb(0, 0, 255)', // Blue
'rgb(255, 0, 255)' // Magenta
];
let index = 0;
const interval = setInterval(() => {
index = (index + 1) % colors.length;
setGlowColor(colors[index]);
}, 1000);
setTimeout(() => setIsLoading(false), 1500);
// XP Animation
const xpInterval = setInterval(() => {
setXpLevel(prev => (prev < 100 ? prev + 1 : 0));
}, 50);
return () => {
clearInterval(interval);
clearInterval(xpInterval);
};
}, []);
if (isLoading) {
return (
LOADING PROFILE v2.0.24...
);
}
return (
{/* Rainbow Border */}
{/* Floating Particles Background */}
{[...Array(20)].map((_, i) => (
))}
{/* Header Section */}
So Miyagawa
LVL 99
Digital Humanities // Language Systems Engineer
{/* XP Bar */}
miyagawa.so.kbu.tsukuba.ac.jp
{/* Left Column */}
{/* Current Positions */}
Current Quests
-
⚔️
Associate Professor, University of Tsukuba
-
⚔️
Visiting Associate Professor, NINJAL
-
⚔️
Lecturer, Waseda University
{/* Education */}
{/* Right Column */}
{/* Research Interests */}
Power Skills
{[
["Historical Linguistics", 95],
["Digital Humanities", 92],
["Egyptology", 88],
["Coptic Studies", 90],
["NLP", 85],
["Linguistic Typology", 87]
].map(([item, level], index) => (
-
))}
{/* Awards */}
{[
["Director's Award", "NINJAL, 2023", "🏆"],
["Academic Award", "Digital Archives Society, 2022", "🌟"],
["Clark Award", "Hokkaido University, 2013", "✨"]
].map(([title, detail, emoji], index) => (
-
{emoji}
))}
{/* Research Experience Timeline */}
Quest History
{[
["2017-2020", "Digital Humanities Advisor", "Egyptian Museum and Papyrus Collection", "🏛️"],
["2014-2022", "Research Fellow", "Coptic SCRIPTORIUM Project", "📚"],
["2015-2020", "Research Fellow", "DFG Special Research Program", "🔬"],
["2017-2018", "Visiting Researcher", "Hebrew University of Jerusalem", "🌍"]
].map(([year, title, org, emoji], index) => (
))}
);
}