authorizedcabal commited on
Commit
7bffc23
·
verified ·
1 Parent(s): 6bc3356

this is great! can you change the color schema to black and white or grey scaled and add a blog section?

Browse files
Files changed (7) hide show
  1. README.md +8 -5
  2. blog.html +97 -0
  3. components/footer.js +148 -0
  4. components/navbar.js +100 -0
  5. index.html +453 -19
  6. script.js +410 -0
  7. style.css +92 -19
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Quantum Mind Bytes Data Alchemist
3
- emoji: 🦀
4
- colorFrom: red
5
- colorTo: blue
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
1
  ---
2
+ title: Quantum Mind Bytes | Data Alchemist 🧠
3
+ colorFrom: green
4
+ colorTo: green
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://huggingface.co/deepsite).
blog.html ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en" class="scroll-smooth">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Quantum Mind Bytes | Blog</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script>
11
+ tailwind.config = {
12
+ theme: {
13
+ extend: {
14
+ colors: {
15
+ primary: 'rgb(23, 23, 23)',
16
+ secondary: 'rgb(107, 114, 128)',
17
+ accent: 'rgb(243, 244, 246)'
18
+ }
19
+ }
20
+ }
21
+ }
22
+ </script>
23
+ </head>
24
+ <body class="bg-gray-50 font-sans antialiased text-gray-800">
25
+ <custom-navbar></custom-navbar>
26
+
27
+ <main class="container mx-auto px-4 py-12">
28
+ <!-- Blog Header -->
29
+ <section class="py-20 text-center">
30
+ <h1 class="text-4xl md:text-5xl font-bold mb-6 text-primary">Quantum Mind Bytes</h1>
31
+ <p class="text-xl md:text-2xl mb-8 text-secondary max-w-2xl mx-auto">
32
+ Thoughts, research notes, and technical writings on data science, machine learning, and beyond.
33
+ </p>
34
+ </section>
35
+
36
+ <!-- Blog Posts Grid -->
37
+ <section class="pb-20">
38
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
39
+ <!-- Blog Post 1 -->
40
+ <div class="bg-white rounded-xl shadow-md overflow-hidden group">
41
+ <img src="http://static.photos/abstract/640x360/30" alt="Blog Post 1" class="w-full h-48 object-cover">
42
+ <div class="p-6">
43
+ <div class="flex items-center gap-3 mb-4">
44
+ <span class="bg-primary/10 text-secondary text-xs px-3 py-1 rounded-full">Machine Learning</span>
45
+ <span class="text-xs text-secondary">May 15, 2023</span>
46
+ </div>
47
+ <h3 class="font-bold text-xl mb-4 text-primary">Explainable AI in Modern Data Science</h3>
48
+ <p class="text-gray-600 mb-4">
49
+ Exploring techniques to make complex machine learning models more interpretable and transparent.
50
+ </p>
51
+ <a href="#" class="text-primary hover:underline font-medium">Read More →</a>
52
+ </div>
53
+ </div>
54
+
55
+ <!-- Blog Post 2 -->
56
+ <div class="bg-white rounded-xl shadow-md overflow-hidden group">
57
+ <img src="http://static.photos/science/640x360/25" alt="Blog Post 2" class="w-full h-48 object-cover">
58
+ <div class="p-6">
59
+ <div class="flex items-center gap-3 mb-4">
60
+ <span class="bg-primary/10 text-secondary text-xs px-3 py-1 rounded-full">Deep Learning</span>
61
+ <span class="text-xs text-secondary">April 2, 2023</span>
62
+ </div>
63
+ <h3 class="font-bold text-xl mb-4 text-primary">The Math Behind Neural Networks</h3>
64
+ <p class="text-gray-600 mb-4">
65
+ A deep dive into the mathematical foundations powering modern deep learning architectures.
66
+ </p>
67
+ <a href="#" class="text-primary hover:underline font-medium">Read More →</a>
68
+ </div>
69
+ </div>
70
+
71
+ <!-- Blog Post 3 -->
72
+ <div class="bg-white rounded-xl shadow-md overflow-hidden group">
73
+ <img src="http://static.photos/technology/640x360/18" alt="Blog Post 3" class="w-full h-48 object-cover">
74
+ <div class="p-6">
75
+ <div class="flex items-center gap-3 mb-4">
76
+ <span class="bg-primary/10 text-secondary text-xs px-3 py-1 rounded-full">Data Engineering</span>
77
+ <span class="text-xs text-secondary">March 10, 2023</span>
78
+ </div>
79
+ <h3 class="font-bold text-xl mb-4 text-primary">Building Scalable Data Pipelines</h3>
80
+ <p class="text-gray-600 mb-4">
81
+ Architecting robust data pipelines that scale with your machine learning needs.
82
+ </p>
83
+ <a href="#" class="text-primary hover:underline font-medium">Read More →</a>
84
+ </div>
85
+ </div>
86
+ </div>
87
+ </section>
88
+ </main>
89
+
90
+ <custom-footer></custom-footer>
91
+
92
+ <script src="components/navbar.js"></script>
93
+ <script src="components/footer.js"></script>
94
+ <script src="script.js"></script>
95
+ <script>feather.replace();</script>
96
+ </body>
97
+ </html>
components/footer.js ADDED
@@ -0,0 +1,148 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ class CustomFooter extends HTMLElement {
2
+ connectedCallback() {
3
+ this.attachShadow({ mode: 'open' });
4
+ this.shadowRoot.innerHTML = `
5
+ <style>
6
+ :host {
7
+ display: block;
8
+ background: rgb(88, 28, 135);
9
+ color: white;
10
+ padding: 4rem 2rem;
11
+ }
12
+ .footer-container {
13
+ max-width: 1200px;
14
+ margin: 0 auto;
15
+ display: grid;
16
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
17
+ gap: 3rem;
18
+ }
19
+ .footer-brand {
20
+ font-size: 1.5rem;
21
+ font-weight: bold;
22
+ margin-bottom: 1.5rem;
23
+ display: flex;
24
+ align-items: center;
25
+ }
26
+ .footer-brand i {
27
+ margin-right: 0.5rem;
28
+ }
29
+ .footer-description {
30
+ opacity: 0.8;
31
+ line-height: 1.6;
32
+ margin-bottom: 2rem;
33
+ }
34
+ .social-links {
35
+ display: flex;
36
+ gap: 1rem;
37
+ }
38
+ .social-link {
39
+ display: flex;
40
+ justify-content: center;
41
+ align-items: center;
42
+ width: 40px;
43
+ height: 40px;
44
+ background: rgba(255, 255, 255, 0.1);
45
+ border-radius: 50%;
46
+ transition: all 0.3s;
47
+ }
48
+ .social-link:hover {
49
+ background: rgb(234, 179, 8);
50
+ transform: translateY(-3px);
51
+ }
52
+ .footer-heading {
53
+ font-size: 1.25rem;
54
+ font-weight: bold;
55
+ margin-bottom: 1.5rem;
56
+ position: relative;
57
+ display: inline-block;
58
+ }
59
+ .footer-heading::after {
60
+ content: '';
61
+ position: absolute;
62
+ left: 0;
63
+ bottom: -8px;
64
+ width: 40px;
65
+ height: 3px;
66
+ background: rgb(234, 179, 8);
67
+ }
68
+ .footer-links {
69
+ display: flex;
70
+ flex-direction: column;
71
+ gap: 1rem;
72
+ }
73
+ .footer-link {
74
+ color: white;
75
+ opacity: 0.8;
76
+ text-decoration: none;
77
+ transition: all 0.3s;
78
+ }
79
+ .footer-link:hover {
80
+ opacity: 1;
81
+ color: rgb(234, 179, 8);
82
+ padding-left: 5px;
83
+ }
84
+ .copyright {
85
+ max-width: 1200px;
86
+ margin: 4rem auto 0;
87
+ text-align: center;
88
+ padding-top: 2rem;
89
+ border-top: 1px solid rgba(255, 255, 255, 0.1);
90
+ opacity: 0.7;
91
+ font-size: 0.9rem;
92
+ }
93
+ </style>
94
+ <div class="footer-container">
95
+ <div>
96
+ <div class="footer-brand">
97
+ <i data-feather="activity"></i>
98
+ DataAlchemy
99
+ </div>
100
+ <p class="footer-description">
101
+ Transforming data into insights through research and engineering.
102
+ Bridging theory and practice in artificial intelligence.
103
+ </p>
104
+ <div class="social-links">
105
+ <a href="#" class="social-link">
106
+ <i data-feather="github"></i>
107
+ </a>
108
+ <a href="#" class="social-link">
109
+ <i data-feather="linkedin"></i>
110
+ </a>
111
+ <a href="#" class="social-link">
112
+ <i data-feather="twitter"></i>
113
+ </a>
114
+ <a href="#" class="social-link">
115
+ <i data-feather="youtube"></i>
116
+ </a>
117
+ </div>
118
+ </div>
119
+ <div>
120
+ <h3 class="footer-heading">Quick Links</h3>
121
+ <div class="footer-links">
122
+ <a href="#about" class="footer-link">About Me</a>
123
+ <a href="#experience" class="footer-link">Experience</a>
124
+ <a href="#projects" class="footer-link">Research Projects</a>
125
+ <a href="#publications" class="footer-link">Publications</a>
126
+ <a href="#blog" class="footer-link">Blog</a>
127
+ <a href="#contact" class="footer-link">Contact</a>
128
+ </div>
129
+ </div>
130
+ <div>
131
+ <h3 class="footer-heading">Resources</h3>
132
+ <div class="footer-links">
133
+ <a href="#" class="footer-link">GitHub Repos</a>
134
+ <a href="#" class="footer-link">Research Blog</a>
135
+ <a href="#" class="footer-link">Technical Papers</a>
136
+ <a href="#" class="footer-link">Learning Resources</a>
137
+ <a href="#" class="footer-link">Conference Talks</a>
138
+ </div>
139
+ </div>
140
+ </div>
141
+ <div class="copyright">
142
+ &copy; ${new Date().getFullYear()} DataAlchemy Portfolio. All rights reserved.
143
+ </div>
144
+ `;
145
+ }
146
+ }
147
+
148
+ customElements.define('custom-footer', CustomFooter);
components/navbar.js ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ class CustomNavbar extends HTMLElement {
2
+ connectedCallback() {
3
+ this.attachShadow({ mode: 'open' });
4
+ this.shadowRoot.innerHTML = `
5
+ <style>
6
+ :host {
7
+ display: block;
8
+ width: 100%;
9
+ position: fixed;
10
+ top: 0;
11
+ left: 0;
12
+ z-index: 1000;
13
+ background-color: white;
14
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
15
+ }
16
+ nav {
17
+ display: flex;
18
+ justify-content: space-between;
19
+ align-items: center;
20
+ padding: 1.5rem 2rem;
21
+ max-width: 1200px;
22
+ margin: 0 auto;
23
+ width: 100%;
24
+ }
25
+ .nav-brand {
26
+ font-size: 1.5rem;
27
+ font-weight: bold;
28
+ color: rgb(88, 28, 135);
29
+ display: flex;
30
+ align-items: center;
31
+ }
32
+ .nav-brand i {
33
+ margin-right: 0.5rem;
34
+ }
35
+ .nav-links {
36
+ display: flex;
37
+ gap: 2rem;
38
+ }
39
+ .nav-link {
40
+ color: rgb(88, 28, 135);
41
+ font-weight: 500;
42
+ text-decoration: none;
43
+ transition: color 0.3s;
44
+ position: relative;
45
+ }
46
+ .nav-link:hover {
47
+ color: rgb(234, 179, 8);
48
+ }
49
+ .nav-link::after {
50
+ content: '';
51
+ position: absolute;
52
+ left: 0;
53
+ bottom: -4px;
54
+ width: 0;
55
+ height: 2px;
56
+ background: rgb(234, 179, 8);
57
+ transition: width 0.3s;
58
+ }
59
+ .nav-link:hover::after {
60
+ width: 100%;
61
+ }
62
+ .mobile-menu-btn {
63
+ display: none;
64
+ background: none;
65
+ border: none;
66
+ color: rgb(88, 28, 135);
67
+ cursor: pointer;
68
+ }
69
+ @media (max-width: 768px) {
70
+ .mobile-menu-btn {
71
+ display: block;
72
+ }
73
+ .nav-links {
74
+ display: none;
75
+ }
76
+ }
77
+ </style>
78
+ <nav>
79
+ <a href="#" class="nav-brand">
80
+ <i data-feather="activity"></i>
81
+ DataAlchemy
82
+ </a>
83
+ <div class="nav-links">
84
+ <a href="#about" class="nav-link">About</a>
85
+ <a href="#experience" class="nav-link">Experience</a>
86
+ <a href="#projects" class="nav-link">Projects</a>
87
+ <a href="#education" class="nav-link">Education</a>
88
+ <a href="#publications" class="nav-link">Publications</a>
89
+ <a href="#blog" class="nav-link">Blog</a>
90
+ <a href="#contact" class="nav-link">Contact</a>
91
+ </div>
92
+ <button class="mobile-menu-btn">
93
+ <i data-feather="menu"></i>
94
+ </button>
95
+ </nav>
96
+ `;
97
+ }
98
+ }
99
+
100
+ customElements.define('custom-navbar', CustomNavbar);
index.html CHANGED
@@ -1,19 +1,453 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en" class="scroll-smooth">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Data Alchemy | Scientist Portfolio</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://unpkg.com/feather-icons"></script>
11
+ <script>
12
+ tailwind.config = {
13
+ theme: {
14
+ extend: {
15
+ colors: {
16
+ primary: 'rgb(23, 23, 23)',
17
+ secondary: 'rgb(107, 114, 128)',
18
+ accent: 'rgb(243, 244, 246)'
19
+ }
20
+ }
21
+ }
22
+ }
23
+ </script>
24
+ </head>
25
+ <body class="bg-gray-50 font-sans antialiased text-gray-800">
26
+ <custom-navbar></custom-navbar>
27
+
28
+ <main class="container mx-auto px-4 py-12">
29
+ <!-- Hero Section -->
30
+ <section class="min-h-[80vh] flex items-center">
31
+ <div class="grid md:grid-cols-2 gap-12 items-center">
32
+ <div>
33
+ <h1 class="text-5xl md:text-6xl font-bold mb-6 text-primary">
34
+ Transforming Data <span class="text-secondary">Into Insights</span>
35
+ </h1>
36
+ <p class="text-xl md:text-2xl mb-8 text-gray-600">
37
+ Data Scientist & Software Engineer bridging research and technology
38
+ </p>
39
+ <div class="flex gap-4">
40
+ <a href="#projects" class="bg-primary hover:bg-primary/90 text-white px-6 py-3 rounded-lg shadow-md transition">
41
+ View Projects
42
+ </a>
43
+ <a href="#contact" class="border border-primary text-primary hover:bg-primary/10 px-6 py-3 rounded-lg shadow-md transition">
44
+ Contact Me
45
+ </a>
46
+ </div>
47
+ </div>
48
+ <div class="relative">
49
+ <img src="http://static.photos/technology/1024x576/42" alt="Data Science" class="rounded-xl shadow-2xl">
50
+ <div class="absolute -bottom-6 -left-6 bg-secondary p-4 rounded-xl shadow-lg">
51
+ <i data-feather="award" class="w-10 h-10 text-primary"></i>
52
+ </div>
53
+ </div>
54
+ </div>
55
+ </section>
56
+
57
+ <!-- About Section -->
58
+ <section id="about" class="py-20">
59
+ <div class="max-w-4xl mx-auto">
60
+ <h2 class="text-3xl font-bold mb-2 text-primary">About Me</h2>
61
+ <div class="h-1 w-24 bg-secondary mb-8"></div>
62
+ <div class="prose-xl text-gray-700">
63
+ <p>
64
+ I'm a passionate data scientist and software engineer with expertise in machine learning, statistical modeling, and full-stack development.
65
+ I bridge the gap between cutting-edge research and practical software solutions.
66
+ </p>
67
+ <p>
68
+ My academic background in computer science and applied mathematics fuels my ability to tackle complex problems
69
+ with both theoretical rigor and engineering pragmatism.
70
+ </p>
71
+ </div>
72
+
73
+ <div class="grid md:grid-cols-3 gap-8 mt-12">
74
+ <div class="bg-white p-6 rounded-xl shadow-md border-t-4 border-primary">
75
+ <div class="flex items-center mb-4">
76
+ <div class="bg-primary/10 p-3 rounded-full mr-4">
77
+ <i data-feather="layers" class="w-6 h-6 text-primary"></i>
78
+ </div>
79
+ <h3 class="font-bold text-lg">Research</h3>
80
+ </div>
81
+ <p class="text-gray-600">
82
+ Published papers on deep learning architectures and NLP applications in peer-reviewed journals.
83
+ </p>
84
+ </div>
85
+ <div class="bg-white p-6 rounded-xl shadow-md border-t-4 border-primary">
86
+ <div class="flex items-center mb-4">
87
+ <div class="bg-primary/10 p-3 rounded-full mr-4">
88
+ <i data-feather="code" class="w-6 h-6 text-primary"></i>
89
+ </div>
90
+ <h3 class="font-bold text-lg">Development</h3>
91
+ </div>
92
+ <p class="text-gray-600">
93
+ Built scalable machine learning pipelines and full-stack applications for enterprise clients.
94
+ </p>
95
+ </div>
96
+ <div class="bg-white p-6 rounded-xl shadow-md border-t-4 border-primary">
97
+ <div class="flex items-center mb-4">
98
+ <div class="bg-primary/10 p-3 rounded-full mr-4">
99
+ <i data-feather="book" class="w-6 h-6 text-primary"></i>
100
+ </div>
101
+ <h3 class="font-bold text-lg">Education</h3>
102
+ </div>
103
+ <p class="text-gray-600">
104
+ PhD in Computer Science with focus on machine learning and natural language processing.
105
+ </p>
106
+ </div>
107
+ </div>
108
+ </div>
109
+ </section>
110
+
111
+ <!-- Experience Section -->
112
+ <section id="experience" class="py-20 bg-primary/5">
113
+ <div class="max-w-4xl mx-auto">
114
+ <h2 class="text-3xl font-bold mb-2 text-primary">Experience</h2>
115
+ <div class="h-1 w-24 bg-secondary mb-8"></div>
116
+
117
+ <div class="space-y-8">
118
+ <!-- Experience Item 1 -->
119
+ <div class="bg-white p-6 rounded-xl shadow-md border-l-4 border-secondary">
120
+ <div class="flex flex-col md:flex-row justify-between mb-2">
121
+ <h3 class="font-bold text-xl">Senior Data Scientist</h3>
122
+ <span class="text-primary font-medium">2020 - Present</span>
123
+ </div>
124
+ <p class="text-gray-500 mb-4">Tech Solutions Inc.</p>
125
+ <ul class="list-disc list-inside space-y-2 text-gray-700">
126
+ <li>Led development of ML models improving customer retention by 32%</li>
127
+ <li>Designed and implemented real-time anomaly detection system</li>
128
+ <li>Mentored junior team members on best practices in ML engineering</li>
129
+ </ul>
130
+ </div>
131
+
132
+ <!-- Experience Item 2 -->
133
+ <div class="bg-white p-6 rounded-xl shadow-md border-l-4 border-secondary">
134
+ <div class="flex flex-col md:flex-row justify-between mb-2">
135
+ <h3 class="font-bold text-xl">Machine Learning Engineer</h3>
136
+ <span class="text-primary font-medium">2017 - 2020</span>
137
+ </div>
138
+ <p class="text-gray-500 mb-4">InnovateAI</p>
139
+ <ul class="list-disc list-inside space-y-2 text-gray-700">
140
+ <li>Developed NLP models for automated document processing</li>
141
+ <li>Optimized model performance leading to 4x inference speed improvement</li>
142
+ <li>Published research on transformer architectures for low-resource languages</li>
143
+ </ul>
144
+ </div>
145
+ </div>
146
+ </div>
147
+ </section>
148
+
149
+ <!-- Projects Section -->
150
+ <section id="projects" class="py-20">
151
+ <div class="max-w-4xl mx-auto">
152
+ <h2 class="text-3xl font-bold mb-2 text-primary">Research & Projects</h2>
153
+ <div class="h-1 w-24 bg-secondary mb-8"></div>
154
+
155
+ <div class="grid md:grid-cols-2 gap-8">
156
+ <!-- Project 1 -->
157
+ <div class="bg-white rounded-xl shadow-md overflow-hidden group">
158
+ <img src="http://static.photos/technology/640x360/23" alt="Project 1" class="w-full h-48 object-cover">
159
+ <div class="p-6">
160
+ <div class="flex items-center mb-2">
161
+ <div class="bg-primary/10 p-2 rounded-full mr-3">
162
+ <i data-feather="bar-chart-2" class="w-4 h-4 text-primary"></i>
163
+ </div>
164
+ <h3 class="font-bold text-lg">Deep Learning for NLP</h3>
165
+ </div>
166
+ <p class="text-gray-600 mb-4">
167
+ Novel architecture for sentiment analysis achieving state-of-the-art results on benchmark datasets.
168
+ </p>
169
+ <div class="flex flex-wrap gap-2">
170
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">Python</span>
171
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">PyTorch</span>
172
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">NLP</span>
173
+ </div>
174
+ </div>
175
+ </div>
176
+
177
+ <!-- Project 2 -->
178
+ <div class="bg-white rounded-xl shadow-md overflow-hidden group">
179
+ <img src="http://static.photos/abstract/640x360/15" alt="Project 2" class="w-full h-48 object-cover">
180
+ <div class="p-6">
181
+ <div class="flex items-center mb-2">
182
+ <div class="bg-primary/10 p-2 rounded-full mr-3">
183
+ <i data-feather="database" class="w-4 h-4 text-primary"></i>
184
+ </div>
185
+ <h3 class="font-bold text-lg">Analytics Dashboard</h3>
186
+ </div>
187
+ <p class="text-gray-600 mb-4">
188
+ Interactive dashboard for real-time business metrics visualization with anomaly detection.
189
+ </p>
190
+ <div class="flex flex-wrap gap-2">
191
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">JavaScript</span>
192
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">D3.js</span>
193
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">Flask</span>
194
+ </div>
195
+ </div>
196
+ </div>
197
+
198
+ <!-- Project 3 -->
199
+ <div class="bg-white rounded-xl shadow-md overflow-hidden group">
200
+ <img src="http://static.photos/science/640x360/37" alt="Project 3" class="w-full h-48 object-cover">
201
+ <div class="p-6">
202
+ <div class="flex items-center mb-2">
203
+ <div class="bg-primary/10 p-2 rounded-full mr-3">
204
+ <i data-feather="cpu" class="w-4 h-4 text-primary"></i>
205
+ </div>
206
+ <h3 class="font-bold text-lg">Federated Learning</h3>
207
+ </div>
208
+ <p class="text-gray-600 mb-4">
209
+ Privacy-preserving ML framework for healthcare applications using federated learning techniques.
210
+ </p>
211
+ <div class="flex flex-wrap gap-2">
212
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">TensorFlow</span>
213
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">Keras</span>
214
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">Healthcare</span>
215
+ </div>
216
+ </div>
217
+ </div>
218
+
219
+ <!-- Project 4 -->
220
+ <div class="bg-white rounded-xl shadow-md overflow-hidden group">
221
+ <img src="http://static.photos/minimal/640x360/19" alt="Project 4" class="w-full h-48 object-cover">
222
+ <div class="p-6">
223
+ <div class="flex items-center mb-2">
224
+ <div class="bg-primary/10 p-2 rounded-full mr-3">
225
+ <i data-feather="box" class="w-4 h-4 text-primary"></i>
226
+ </div>
227
+ <h3 class="font-bold text-lg">ML Ops Pipeline</h3>
228
+ </div>
229
+ <p class="text-gray-600 mb-4">
230
+ Automated machine learning pipeline with CI/CD integration for production model deployment.
231
+ </p>
232
+ <div class="flex flex-wrap gap-2">
233
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">AWS</span>
234
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">Docker</span>
235
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">MLflow</span>
236
+ </div>
237
+ </div>
238
+ </div>
239
+ </div>
240
+
241
+ <div class="mt-12 text-center">
242
+ <button class="bg-primary hover:bg-primary/90 text-white px-6 py-3 rounded-lg shadow-md transition flex items-center mx-auto">
243
+ <i data-feather="github" class="mr-2"></i> View All Projects on GitHub
244
+ </button>
245
+ </div>
246
+ </div>
247
+ </section>
248
+
249
+ <!-- Education Section -->
250
+ <section id="education" class="py-20 bg-primary/5">
251
+ <div class="max-w-4xl mx-auto">
252
+ <h2 class="text-3xl font-bold mb-2 text-primary">Education</h2>
253
+ <div class="h-1 w-24 bg-secondary mb-8"></div>
254
+
255
+ <div class="grid md:grid-cols-2 gap-8">
256
+ <div class="bg-white p-6 rounded-xl shadow-md border-l-4 border-primary">
257
+ <div class="flex items-center mb-4">
258
+ <div class="bg-primary p-2 rounded-full text-white mr-4">
259
+ <i data-feather="award"></i>
260
+ </div>
261
+ <div>
262
+ <h3 class="font-bold text-lg">PhD in Computer Science</h3>
263
+ <p class="text-gray-500">Stanford University</p>
264
+ <p class="text-gray-400 text-sm">2014 - 2018</p>
265
+ </div>
266
+ </div>
267
+ <p class="text-gray-700">
268
+ Dissertation: "Advances in Deep Learning for Natural Language Understanding"
269
+ </p>
270
+ </div>
271
+
272
+ <div class="bg-white p-6 rounded-xl shadow-md border-l-4 border-primary">
273
+ <div class="flex items-center mb-4">
274
+ <div class="bg-primary p-2 rounded-full text-white mr-4">
275
+ <i data-feather="book-open"></i>
276
+ </div>
277
+ <div>
278
+ <h3 class="font-bold text-lg">MS in Applied Mathematics</h3>
279
+ <p class="text-gray-500">MIT</p>
280
+ <p class="text-gray-400 text-sm">2012 - 2014</p>
281
+ </div>
282
+ </div>
283
+ <p class="text-gray-700">
284
+ Research in probabilistic graphical models and optimization algorithms
285
+ </p>
286
+ </div>
287
+ </div>
288
+ </div>
289
+ </section>
290
+
291
+ <!-- Publications Section -->
292
+ <section id="publications" class="py-20">
293
+ <div class="max-w-4xl mx-auto">
294
+ <h2 class="text-3xl font-bold mb-2 text-primary">Publications</h2>
295
+ <div class="h-1 w-24 bg-secondary mb-8"></div>
296
+
297
+ <div class="space-y-6">
298
+ <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition">
299
+ <div class="flex justify-between items-start mb-2">
300
+ <h3 class="font-bold text-lg">Transformer Architectures for Low-Resource Languages</h3>
301
+ <span class="bg-primary/10 text-primary text-xs px-2 py-1 rounded-full">2022</span>
302
+ </div>
303
+ <p class="text-gray-500 mb-2">Neural Information Processing Systems (NeurIPS)</p>
304
+ <p class="text-gray-700">
305
+ Proposed a novel transformer variant improving performance on underrepresented languages by 17% compared to baseline models.
306
+ </p>
307
+ <div class="flex gap-4 mt-4">
308
+ <a href="#" class="text-primary hover:text-primary/80 text-sm flex items-center">
309
+ <i data-feather="file-text" class="w-4 h-4 mr-1"></i> PDF
310
+ </a>
311
+ <a href="#" class="text-primary hover:text-primary/80 text-sm flex items-center">
312
+ <i data-feather="github" class="w-4 h-4 mr-1"></i> Code
313
+ </a>
314
+ <a href="#" class="text-primary hover:text-primary/80 text-sm flex items-center">
315
+ <i data-feather="link" class="w-4 h-4 mr-1"></i> DOI
316
+ </a>
317
+ </div>
318
+ </div>
319
+
320
+ <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition">
321
+ <div class="flex justify-between items-start mb-2">
322
+ <h3 class="font-bold text-lg">Federated Learning for Healthcare Applications</h3>
323
+ <span class="bg-primary/10 text-primary text-xs px-2 py-1 rounded-full">2021</span>
324
+ </div>
325
+ <p class="text-gray-500 mb-2">Journal of Machine Learning Research (JMLR)</p>
326
+ <p class="text-gray-700">
327
+ Introduced privacy-preserving techniques for medical data analysis while maintaining model performance comparable to centralized approaches.
328
+ </p>
329
+ <div class="flex gap-4 mt-4">
330
+ <a href="#" class="text-primary hover:text-primary/80 text-sm flex items-center">
331
+ <i data-feather="file-text" class="w-4 h-4 mr-1"></i> PDF
332
+ </a>
333
+ <a href="#" class="text-primary hover:text-primary/80 text-sm flex items-center">
334
+ <i data-feather="github" class="w-4 h-4 mr-1"></i> Code
335
+ </a>
336
+ </div>
337
+ </div>
338
+ </div>
339
+ </div>
340
+ </section>
341
+ <!-- Blog Section -->
342
+ <section id="blog" class="py-20 bg-accent">
343
+ <div class="max-w-4xl mx-auto">
344
+ <h2 class="text-3xl font-bold mb-2 text-primary">Latest Writings</h2>
345
+ <div class="h-1 w-24 bg-secondary mb-8"></div>
346
+
347
+ <div class="grid md:grid-cols-2 gap-8">
348
+ <!-- Blog Post 1 -->
349
+ <div class="bg-white rounded-xl shadow-md overflow-hidden group">
350
+ <img src="http://static.photos/black/640x360/10" alt="Blog Post 1" class="w-full h-48 object-cover">
351
+ <div class="p-6">
352
+ <p class="text-sm text-secondary mb-2">May 15, 2023 • 8 min read</p>
353
+ <h3 class="font-bold text-xl mb-4 text-primary">Explainable AI in Modern Data Science</h3>
354
+ <p class="text-gray-600 mb-4">
355
+ Exploring techniques to make complex machine learning models more interpretable and transparent.
356
+ </p>
357
+ <a href="#" class="text-primary hover:underline font-medium">Read More →</a>
358
+ </div>
359
+ </div>
360
+
361
+ <!-- Blog Post 2 -->
362
+ <div class="bg-white rounded-xl shadow-md overflow-hidden group">
363
+ <img src="http://static.photos/minimal/640x360/20" alt="Blog Post 2" class="w-full h-48 object-cover">
364
+ <div class="p-6">
365
+ <p class="text-sm text-secondary mb-2">April 2, 2023 • 12 min read</p>
366
+ <h3 class="font-bold text-xl mb-4 text-primary">The Math Behind Neural Networks</h3>
367
+ <p class="text-gray-600 mb-4">
368
+ A deep dive into the mathematical foundations powering modern deep learning architectures.
369
+ </p>
370
+ <a href="#" class="text-primary hover:underline font-medium">Read More →</a>
371
+ </div>
372
+ </div>
373
+ </div>
374
+
375
+ <div class="mt-12 text-center">
376
+ <a href="#" class="bg-primary hover:bg-gray-800 text-white px-6 py-3 rounded-lg shadow-md transition inline-block">
377
+ View All Blog Posts
378
+ </a>
379
+ </div>
380
+ </div>
381
+ </section>
382
+
383
+ <!-- Contact Section -->
384
+ <section id="contact" class="py-20 bg-accent">
385
+ <div class="max-w-4xl mx-auto">
386
+ <h2 class="text-3xl font-bold mb-2 text-primary">Get In Touch</h2>
387
+ <div class="h-1 w-24 bg-secondary mb-8"></div>
388
+
389
+ <div class="grid md:grid-cols-2 gap-12">
390
+ <div>
391
+ <h3 class="text-xl font-semibold mb-4">Contact Information</h3>
392
+ <div class="space-y-4">
393
+ <div class="flex items-center">
394
+ <div class="bg-primary p-3 rounded-full text-white mr-4">
395
+ <i data-feather="mail"></i>
396
+ </div>
397
+ <div>
398
+ <p class="text-sm text-gray-500">Email</p>
399
+ <p class="text-gray-700">researcher@dataalchemy.com</p>
400
+ </div>
401
+ </div>
402
+ <div class="flex items-center">
403
+ <div class="bg-primary p-3 rounded-full text-white mr-4">
404
+ <i data-feather="map-pin"></i>
405
+ </div>
406
+ <div>
407
+ <p class="text-sm text-gray-500">Location</p>
408
+ <p class="text-gray-700">San Francisco, CA</p>
409
+ </div>
410
+ </div>
411
+ <div class="flex items-center">
412
+ <div class="bg-primary p-3 rounded-full text-white mr-4">
413
+ <i data-feather="linkedin"></i>
414
+ </div>
415
+ <div>
416
+ <p class="text-sm text-gray-500">LinkedIn</p>
417
+ <p class="text-gray-700">linkedin.com/in/data-scientist</p>
418
+ </div>
419
+ </div>
420
+ </div>
421
+ </div>
422
+
423
+ <form class="bg-white p-6 rounded-xl shadow-md">
424
+ <div class="mb-4">
425
+ <label for="name" class="block text-sm font-medium text-gray-700 mb-1">Name</label>
426
+ <input type="text" id="name" class="w-full px-4 py-2 rounded-lg border border-gray-300 focus:ring-primary focus:border-primary">
427
+ </div>
428
+ <div class="mb-4">
429
+ <label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
430
+ <input type="email" id="email" class="w-full px-4 py-2 rounded-lg border border-gray-300 focus:ring-primary focus:border-primary">
431
+ </div>
432
+ <div class="mb-4">
433
+ <label for="message" class="block text-sm font-medium text-gray-700 mb-1">Message</label>
434
+ <textarea id="message" rows="4" class="w-full px-4 py-2 rounded-lg border border-gray-300 focus:ring-primary focus:border-primary"></textarea>
435
+ </div>
436
+ <button type="submit" class="w-full bg-primary hover:bg-primary/90 text-white py-3 rounded-lg shadow-md transition flex items-center justify-center">
437
+ <i data-feather="send" class="mr-2"></i> Send Message
438
+ </button>
439
+ </form>
440
+ </div>
441
+ </div>
442
+ </section>
443
+ </main>
444
+
445
+ <custom-footer></custom-footer>
446
+
447
+ <script src="components/navbar.js"></script>
448
+ <script src="components/footer.js"></script>
449
+ <script src="script.js"></script>
450
+ <script>feather.replace();</script>
451
+ <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
452
+ </body>
453
+ </html>
script.js ADDED
@@ -0,0 +1,410 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en" class="scroll-smooth">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Data Alchemy | Scientist Portfolio</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://unpkg.com/feather-icons"></script>
11
+ <script>
12
+ tailwind.config = {
13
+ theme: {
14
+ extend: {
15
+ colors: {
16
+ primary: 'rgb(88, 28, 135)',
17
+ secondary: 'rgb(234, 179, 8)'
18
+ }
19
+ }
20
+ }
21
+ }
22
+ </script>
23
+ </head>
24
+ <body class="bg-gray-50 font-sans antialiased text-gray-800">
25
+ <custom-navbar></custom-navbar>
26
+
27
+ <main class="container mx-auto px-4 py-12">
28
+ <!-- Hero Section -->
29
+ <section class="min-h-[80vh] flex items-center">
30
+ <div class="grid md:grid-cols-2 gap-12 items-center">
31
+ <div>
32
+ <h1 class="text-5xl md:text-6xl font-bold mb-6 text-primary">
33
+ Transforming Data <span class="text-secondary">Into Insights</span>
34
+ </h1>
35
+ <p class="text-xl md:text-2xl mb-8 text-gray-600">
36
+ Data Scientist & Software Engineer bridging research and technology
37
+ </p>
38
+ <div class="flex gap-4">
39
+ <a href="#projects" class="bg-primary hover:bg-primary/90 text-white px-6 py-3 rounded-lg shadow-md transition">
40
+ View Projects
41
+ </a>
42
+ <a href="#contact" class="border border-primary text-primary hover:bg-primary/10 px-6 py-3 rounded-lg shadow-md transition">
43
+ Contact Me
44
+ </a>
45
+ </div>
46
+ </div>
47
+ <div class="relative">
48
+ <img src="http://static.photos/technology/1024x576/42" alt="Data Science" class="rounded-xl shadow-2xl">
49
+ <div class="absolute -bottom-6 -left-6 bg-secondary p-4 rounded-xl shadow-lg">
50
+ <i data-feather="award" class="w-10 h-10 text-primary"></i>
51
+ </div>
52
+ </div>
53
+ </div>
54
+ </section>
55
+
56
+ <!-- About Section -->
57
+ <section id="about" class="py-20">
58
+ <div class="max-w-4xl mx-auto">
59
+ <h2 class="text-3xl font-bold mb-2 text-primary">About Me</h2>
60
+ <div class="h-1 w-24 bg-secondary mb-8"></div>
61
+ <div class="prose-xl text-gray-700">
62
+ <p>
63
+ I'm a passionate data scientist and software engineer with expertise in machine learning, statistical modeling, and full-stack development.
64
+ I bridge the gap between cutting-edge research and practical software solutions.
65
+ </p>
66
+ <p>
67
+ My academic background in computer science and applied mathematics fuels my ability to tackle complex problems
68
+ with both theoretical rigor and engineering pragmatism.
69
+ </p>
70
+ </div>
71
+
72
+ <div class="grid md:grid-cols-3 gap-8 mt-12">
73
+ <div class="bg-white p-6 rounded-xl shadow-md border-t-4 border-primary">
74
+ <div class="flex items-center mb-4">
75
+ <div class="bg-primary/10 p-3 rounded-full mr-4">
76
+ <i data-feather="layers" class="w-6 h-6 text-primary"></i>
77
+ </div>
78
+ <h3 class="font-bold text-lg">Research</h3>
79
+ </div>
80
+ <p class="text-gray-600">
81
+ Published papers on deep learning architectures and NLP applications in peer-reviewed journals.
82
+ </p>
83
+ </div>
84
+ <div class="bg-white p-6 rounded-xl shadow-md border-t-4 border-primary">
85
+ <div class="flex items-center mb-4">
86
+ <div class="bg-primary/10 p-3 rounded-full mr-4">
87
+ <i data-feather="code" class="w-6 h-6 text-primary"></i>
88
+ </div>
89
+ <h3 class="font-bold text-lg">Development</h3>
90
+ </div>
91
+ <p class="text-gray-600">
92
+ Built scalable machine learning pipelines and full-stack applications for enterprise clients.
93
+ </p>
94
+ </div>
95
+ <div class="bg-white p-6 rounded-xl shadow-md border-t-4 border-primary">
96
+ <div class="flex items-center mb-4">
97
+ <div class="bg-primary/10 p-3 rounded-full mr-4">
98
+ <i data-feather="book" class="w-6 h-6 text-primary"></i>
99
+ </div>
100
+ <h3 class="font-bold text-lg">Education</h3>
101
+ </div>
102
+ <p class="text-gray-600">
103
+ PhD in Computer Science with focus on machine learning and natural language processing.
104
+ </p>
105
+ </div>
106
+ </div>
107
+ </div>
108
+ </section>
109
+
110
+ <!-- Experience Section -->
111
+ <section id="experience" class="py-20 bg-primary/5">
112
+ <div class="max-w-4xl mx-auto">
113
+ <h2 class="text-3xl font-bold mb-2 text-primary">Experience</h2>
114
+ <div class="h-1 w-24 bg-secondary mb-8"></div>
115
+
116
+ <div class="space-y-8">
117
+ <!-- Experience Item 1 -->
118
+ <div class="bg-white p-6 rounded-xl shadow-md border-l-4 border-secondary">
119
+ <div class="flex flex-col md:flex-row justify-between mb-2">
120
+ <h3 class="font-bold text-xl">Senior Data Scientist</h3>
121
+ <span class="text-primary font-medium">2020 - Present</span>
122
+ </div>
123
+ <p class="text-gray-500 mb-4">Tech Solutions Inc.</p>
124
+ <ul class="list-disc list-inside space-y-2 text-gray-700">
125
+ <li>Led development of ML models improving customer retention by 32%</li>
126
+ <li>Designed and implemented real-time anomaly detection system</li>
127
+ <li>Mentored junior team members on best practices in ML engineering</li>
128
+ </ul>
129
+ </div>
130
+
131
+ <!-- Experience Item 2 -->
132
+ <div class="bg-white p-6 rounded-xl shadow-md border-l-4 border-secondary">
133
+ <div class="flex flex-col md:flex-row justify-between mb-2">
134
+ <h3 class="font-bold text-xl">Machine Learning Engineer</h3>
135
+ <span class="text-primary font-medium">2017 - 2020</span>
136
+ </div>
137
+ <p class="text-gray-500 mb-4">InnovateAI</p>
138
+ <ul class="list-disc list-inside space-y-2 text-gray-700">
139
+ <li>Developed NLP models for automated document processing</li>
140
+ <li>Optimized model performance leading to 4x inference speed improvement</li>
141
+ <li>Published research on transformer architectures for low-resource languages</li>
142
+ </ul>
143
+ </div>
144
+ </div>
145
+ </div>
146
+ </section>
147
+
148
+ <!-- Projects Section -->
149
+ <section id="projects" class="py-20">
150
+ <div class="max-w-4xl mx-auto">
151
+ <h2 class="text-3xl font-bold mb-2 text-primary">Research & Projects</h2>
152
+ <div class="h-1 w-24 bg-secondary mb-8"></div>
153
+
154
+ <div class="grid md:grid-cols-2 gap-8">
155
+ <!-- Project 1 -->
156
+ <div class="bg-white rounded-xl shadow-md overflow-hidden group">
157
+ <img src="http://static.photos/technology/640x360/23" alt="Project 1" class="w-full h-48 object-cover">
158
+ <div class="p-6">
159
+ <div class="flex items-center mb-2">
160
+ <div class="bg-primary/10 p-2 rounded-full mr-3">
161
+ <i data-feather="bar-chart-2" class="w-4 h-4 text-primary"></i>
162
+ </div>
163
+ <h3 class="font-bold text-lg">Deep Learning for NLP</h3>
164
+ </div>
165
+ <p class="text-gray-600 mb-4">
166
+ Novel architecture for sentiment analysis achieving state-of-the-art results on benchmark datasets.
167
+ </p>
168
+ <div class="flex flex-wrap gap-2">
169
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">Python</span>
170
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">PyTorch</span>
171
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">NLP</span>
172
+ </div>
173
+ </div>
174
+ </div>
175
+
176
+ <!-- Project 2 -->
177
+ <div class="bg-white rounded-xl shadow-md overflow-hidden group">
178
+ <img src="http://static.photos/abstract/640x360/15" alt="Project 2" class="w-full h-48 object-cover">
179
+ <div class="p-6">
180
+ <div class="flex items-center mb-2">
181
+ <div class="bg-primary/10 p-2 rounded-full mr-3">
182
+ <i data-feather="database" class="w-4 h-4 text-primary"></i>
183
+ </div>
184
+ <h3 class="font-bold text-lg">Analytics Dashboard</h3>
185
+ </div>
186
+ <p class="text-gray-600 mb-4">
187
+ Interactive dashboard for real-time business metrics visualization with anomaly detection.
188
+ </p>
189
+ <div class="flex flex-wrap gap-2">
190
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">JavaScript</span>
191
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">D3.js</span>
192
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">Flask</span>
193
+ </div>
194
+ </div>
195
+ </div>
196
+
197
+ <!-- Project 3 -->
198
+ <div class="bg-white rounded-xl shadow-md overflow-hidden group">
199
+ <img src="http://static.photos/science/640x360/37" alt="Project 3" class="w-full h-48 object-cover">
200
+ <div class="p-6">
201
+ <div class="flex items-center mb-2">
202
+ <div class="bg-primary/10 p-2 rounded-full mr-3">
203
+ <i data-feather="cpu" class="w-4 h-4 text-primary"></i>
204
+ </div>
205
+ <h3 class="font-bold text-lg">Federated Learning</h3>
206
+ </div>
207
+ <p class="text-gray-600 mb-4">
208
+ Privacy-preserving ML framework for healthcare applications using federated learning techniques.
209
+ </p>
210
+ <div class="flex flex-wrap gap-2">
211
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">TensorFlow</span>
212
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">Keras</span>
213
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">Healthcare</span>
214
+ </div>
215
+ </div>
216
+ </div>
217
+
218
+ <!-- Project 4 -->
219
+ <div class="bg-white rounded-xl shadow-md overflow-hidden group">
220
+ <img src="http://static.photos/minimal/640x360/19" alt="Project 4" class="w-full h-48 object-cover">
221
+ <div class="p-6">
222
+ <div class="flex items-center mb-2">
223
+ <div class="bg-primary/10 p-2 rounded-full mr-3">
224
+ <i data-feather="box" class="w-4 h-4 text-primary"></i>
225
+ </div>
226
+ <h3 class="font-bold text-lg">ML Ops Pipeline</h3>
227
+ </div>
228
+ <p class="text-gray-600 mb-4">
229
+ Automated machine learning pipeline with CI/CD integration for production model deployment.
230
+ </p>
231
+ <div class="flex flex-wrap gap-2">
232
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">AWS</span>
233
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">Docker</span>
234
+ <span class="bg-primary/10 text-primary text-xs px-3 py-1 rounded-full">MLflow</span>
235
+ </div>
236
+ </div>
237
+ </div>
238
+ </div>
239
+
240
+ <div class="mt-12 text-center">
241
+ <button class="bg-primary hover:bg-primary/90 text-white px-6 py-3 rounded-lg shadow-md transition flex items-center mx-auto">
242
+ <i data-feather="github" class="mr-2"></i> View All Projects on GitHub
243
+ </button>
244
+ </div>
245
+ </div>
246
+ </section>
247
+
248
+ <!-- Education Section -->
249
+ <section id="education" class="py-20 bg-primary/5">
250
+ <div class="max-w-4xl mx-auto">
251
+ <h2 class="text-3xl font-bold mb-2 text-primary">Education</h2>
252
+ <div class="h-1 w-24 bg-secondary mb-8"></div>
253
+
254
+ <div class="grid md:grid-cols-2 gap-8">
255
+ <div class="bg-white p-6 rounded-xl shadow-md border-l-4 border-primary">
256
+ <div class="flex items-center mb-4">
257
+ <div class="bg-primary p-2 rounded-full text-white mr-4">
258
+ <i data-feather="award"></i>
259
+ </div>
260
+ <div>
261
+ <h3 class="font-bold text-lg">PhD in Computer Science</h3>
262
+ <p class="text-gray-500">Stanford University</p>
263
+ <p class="text-gray-400 text-sm">2014 - 2018</p>
264
+ </div>
265
+ </div>
266
+ <p class="text-gray-700">
267
+ Dissertation: "Advances in Deep Learning for Natural Language Understanding"
268
+ </p>
269
+ </div>
270
+
271
+ <div class="bg-white p-6 rounded-xl shadow-md border-l-4 border-primary">
272
+ <div class="flex items-center mb-4">
273
+ <div class="bg-primary p-2 rounded-full text-white mr-4">
274
+ <i data-feather="book-open"></i>
275
+ </div>
276
+ <div>
277
+ <h3 class="font-bold text-lg">MS in Applied Mathematics</h3>
278
+ <p class="text-gray-500">MIT</p>
279
+ <p class="text-gray-400 text-sm">2012 - 2014</p>
280
+ </div>
281
+ </div>
282
+ <p class="text-gray-700">
283
+ Research in probabilistic graphical models and optimization algorithms
284
+ </p>
285
+ </div>
286
+ </div>
287
+ </div>
288
+ </section>
289
+
290
+ <!-- Publications Section -->
291
+ <section id="publications" class="py-20">
292
+ <div class="max-w-4xl mx-auto">
293
+ <h2 class="text-3xl font-bold mb-2 text-primary">Publications</h2>
294
+ <div class="h-1 w-24 bg-secondary mb-8"></div>
295
+
296
+ <div class="space-y-6">
297
+ <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition">
298
+ <div class="flex justify-between items-start mb-2">
299
+ <h3 class="font-bold text-lg">Transformer Architectures for Low-Resource Languages</h3>
300
+ <span class="bg-primary/10 text-primary text-xs px-2 py-1 rounded-full">2022</span>
301
+ </div>
302
+ <p class="text-gray-500 mb-2">Neural Information Processing Systems (NeurIPS)</p>
303
+ <p class="text-gray-700">
304
+ Proposed a novel transformer variant improving performance on underrepresented languages by 17% compared to baseline models.
305
+ </p>
306
+ <div class="flex gap-4 mt-4">
307
+ <a href="#" class="text-primary hover:text-primary/80 text-sm flex items-center">
308
+ <i data-feather="file-text" class="w-4 h-4 mr-1"></i> PDF
309
+ </a>
310
+ <a href="#" class="text-primary hover:text-primary/80 text-sm flex items-center">
311
+ <i data-feather="github" class="w-4 h-4 mr-1"></i> Code
312
+ </a>
313
+ <a href="#" class="text-primary hover:text-primary/80 text-sm flex items-center">
314
+ <i data-feather="link" class="w-4 h-4 mr-1"></i> DOI
315
+ </a>
316
+ </div>
317
+ </div>
318
+
319
+ <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition">
320
+ <div class="flex justify-between items-start mb-2">
321
+ <h3 class="font-bold text-lg">Federated Learning for Healthcare Applications</h3>
322
+ <span class="bg-primary/10 text-primary text-xs px-2 py-1 rounded-full">2021</span>
323
+ </div>
324
+ <p class="text-gray-500 mb-2">Journal of Machine Learning Research (JMLR)</p>
325
+ <p class="text-gray-700">
326
+ Introduced privacy-preserving techniques for medical data analysis while maintaining model performance comparable to centralized approaches.
327
+ </p>
328
+ <div class="flex gap-4 mt-4">
329
+ <a href="#" class="text-primary hover:text-primary/80 text-sm flex items-center">
330
+ <i data-feather="file-text" class="w-4 h-4 mr-1"></i> PDF
331
+ </a>
332
+ <a href="#" class="text-primary hover:text-primary/80 text-sm flex items-center">
333
+ <i data-feather="github" class="w-4 h-4 mr-1"></i> Code
334
+ </a>
335
+ </div>
336
+ </div>
337
+ </div>
338
+ </div>
339
+ </section>
340
+
341
+ <!-- Contact Section -->
342
+ <section id="contact" class="py-20 bg-primary/5">
343
+ <div class="max-w-4xl mx-auto">
344
+ <h2 class="text-3xl font-bold mb-2 text-primary">Get In Touch</h2>
345
+ <div class="h-1 w-24 bg-secondary mb-8"></div>
346
+
347
+ <div class="grid md:grid-cols-2 gap-12">
348
+ <div>
349
+ <h3 class="text-xl font-semibold mb-4">Contact Information</h3>
350
+ <div class="space-y-4">
351
+ <div class="flex items-center">
352
+ <div class="bg-primary p-3 rounded-full text-white mr-4">
353
+ <i data-feather="mail"></i>
354
+ </div>
355
+ <div>
356
+ <p class="text-sm text-gray-500">Email</p>
357
+ <p class="text-gray-700">researcher@dataalchemy.com</p>
358
+ </div>
359
+ </div>
360
+ <div class="flex items-center">
361
+ <div class="bg-primary p-3 rounded-full text-white mr-4">
362
+ <i data-feather="map-pin"></i>
363
+ </div>
364
+ <div>
365
+ <p class="text-sm text-gray-500">Location</p>
366
+ <p class="text-gray-700">San Francisco, CA</p>
367
+ </div>
368
+ </div>
369
+ <div class="flex items-center">
370
+ <div class="bg-primary p-3 rounded-full text-white mr-4">
371
+ <i data-feather="linkedin"></i>
372
+ </div>
373
+ <div>
374
+ <p class="text-sm text-gray-500">LinkedIn</p>
375
+ <p class="text-gray-700">linkedin.com/in/data-scientist</p>
376
+ </div>
377
+ </div>
378
+ </div>
379
+ </div>
380
+
381
+ <form class="bg-white p-6 rounded-xl shadow-md">
382
+ <div class="mb-4">
383
+ <label for="name" class="block text-sm font-medium text-gray-700 mb-1">Name</label>
384
+ <input type="text" id="name" class="w-full px-4 py-2 rounded-lg border border-gray-300 focus:ring-primary focus:border-primary">
385
+ </div>
386
+ <div class="mb-4">
387
+ <label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
388
+ <input type="email" id="email" class="w-full px-4 py-2 rounded-lg border border-gray-300 focus:ring-primary focus:border-primary">
389
+ </div>
390
+ <div class="mb-4">
391
+ <label for="message" class="block text-sm font-medium text-gray-700 mb-1">Message</label>
392
+ <textarea id="message" rows="4" class="w-full px-4 py-2 rounded-lg border border-gray-300 focus:ring-primary focus:border-primary"></textarea>
393
+ </div>
394
+ <button type="submit" class="w-full bg-primary hover:bg-primary/90 text-white py-3 rounded-lg shadow-md transition flex items-center justify-center">
395
+ <i data-feather="send" class="mr-2"></i> Send Message
396
+ </button>
397
+ </form>
398
+ </div>
399
+ </div>
400
+ </section>
401
+ </main>
402
+
403
+ <custom-footer></custom-footer>
404
+
405
+ <script src="components/navbar.js"></script>
406
+ <script src="components/footer.js"></script>
407
+ <script src="script.js"></script>
408
+ <script>feather.replace();</script>
409
+ </body>
410
+ </html>
style.css CHANGED
@@ -1,28 +1,101 @@
1
- body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
4
  }
5
 
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
 
 
28
  }
 
1
+ /* Custom CSS for additional styling */
2
+ .prose-xl {
3
+ font-size: 1.25rem;
4
+ line-height: 1.6;
5
  }
6
 
7
+ /* Smooth hover transitions */
8
+ .shadow-md {
9
+ transition: box-shadow 0.3s ease, transform 0.3s ease;
10
  }
11
 
12
+ .shadow-md:hover {
13
+ transform: translateY(-2px);
14
+ }
15
+ /* Publication card hover */
16
+ #publications .shadow-md:hover {
17
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1) !important;
18
+ }
19
+
20
+ /* Blog post hover effect */
21
+ #blog .group:hover {
22
+ transform: translateY(-3px);
23
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
24
+ }
25
+ /* Project card hover */
26
+ #projects .group:hover {
27
+ transform: translateY(-5px);
28
+ }
29
+
30
+ /* Custom underline for section headings */
31
+ .section-heading {
32
+ position: relative;
33
+ display: inline-block;
34
+ }
35
+
36
+ .section-heading::after {
37
+ content: '';
38
+ position: absolute;
39
+ left: 0;
40
+ bottom: -8px;
41
+ width: 50px;
42
+ height: 4px;
43
+ background: rgb(234, 179, 8);
44
+ }
45
+
46
+ /* Smooth scroll behavior */
47
+ html {
48
+ scroll-behavior: smooth;
49
+ }
50
+
51
+ /* Animation for hero section */
52
+ @keyframes fadeInUp {
53
+ from {
54
+ opacity: 0;
55
+ transform: translateY(20px);
56
+ }
57
+ to {
58
+ opacity: 1;
59
+ transform: translateY(0);
60
+ }
61
+ }
62
+
63
+ /* Apply animation to hero content */
64
+ .hero-content {
65
+ animation: fadeInUp 0.8s ease forwards;
66
+ }
67
+ /* Custom button styles */
68
+ .btn-primary {
69
+ background-color: rgb(23, 23, 23);
70
+ color: white;
71
+ transition: all 0.3s ease;
72
+ }
73
+
74
+ .btn-primary:hover {
75
+ background-color: rgba(23, 23, 23, 0.9);
76
+ }
77
+
78
+ .btn-outline {
79
+ border: 2px solid rgb(23, 23, 23);
80
+ color: rgb(23, 23, 23);
81
+ transition: all 0.3s ease;
82
+ }
83
+
84
+ .btn-outline:hover {
85
+ background-color: rgba(23, 23, 23, 0.1);
86
+ }
87
+
88
+ /* Blog post styling */
89
+ .blog-post {
90
+ transition: all 0.3s ease;
91
  }
92
 
93
+ .blog-post:hover {
94
+ transform: translateY(-5px);
 
 
 
 
95
  }
96
 
97
+ .blog-tag {
98
+ display: inline-block;
99
+ padding: 0.25rem 0.75rem;
100
+ border-radius: 9999px;
101
  }