DevpGus commited on
Commit
bb06256
·
verified ·
1 Parent(s): c73cab0

Você pode criar um template de página para os projetos que é direcionado ao clicarmos em "View Details"?

Browse files
Files changed (7) hide show
  1. README.md +9 -5
  2. components/footer.js +97 -0
  3. components/navbar.js +124 -0
  4. index.html +232 -19
  5. project-details.html +160 -0
  6. script.js +49 -0
  7. style.css +22 -19
README.md CHANGED
@@ -1,10 +1,14 @@
1
  ---
2
- title: Quantum Code Galaxy Explorer
3
- emoji: 📊
4
- colorFrom: red
5
- colorTo: purple
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 Code Galaxy Explorer 🚀
3
+ colorFrom: purple
4
+ colorTo: pink
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).
14
+
components/footer.js ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ class CustomFooter extends HTMLElement {
2
+ connectedCallback() {
3
+ this.attachShadow({ mode: 'open' });
4
+ this.shadowRoot.innerHTML = `
5
+ <style>
6
+ footer {
7
+ background: #1f2937;
8
+ color: white;
9
+ padding: 3rem 2rem;
10
+ text-align: center;
11
+ }
12
+ .footer-content {
13
+ max-width: 1200px;
14
+ margin: 0 auto;
15
+ display: grid;
16
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
17
+ gap: 2rem;
18
+ text-align: left;
19
+ }
20
+ .footer-section h3 {
21
+ font-size: 1.25rem;
22
+ margin-bottom: 1.5rem;
23
+ color: #e5e7eb;
24
+ }
25
+ .footer-section p {
26
+ color: #9ca3af;
27
+ line-height: 1.6;
28
+ }
29
+ .social-links {
30
+ display: flex;
31
+ gap: 1rem;
32
+ margin-top: 1rem;
33
+ }
34
+ .social-links a {
35
+ color: white;
36
+ background: #374151;
37
+ width: 40px;
38
+ height: 40px;
39
+ border-radius: 50%;
40
+ display: flex;
41
+ align-items: center;
42
+ justify-content: center;
43
+ transition: background 0.2s;
44
+ }
45
+ .social-links a:hover {
46
+ background: #4f46e5;
47
+ }
48
+ .copyright {
49
+ margin-top: 3rem;
50
+ padding-top: 1.5rem;
51
+ border-top: 1px solid #374151;
52
+ color: #9ca3af;
53
+ font-size: 0.875rem;
54
+ }
55
+ @media (max-width: 768px) {
56
+ .footer-content {
57
+ grid-template-columns: 1fr;
58
+ text-align: center;
59
+ }
60
+ .social-links {
61
+ justify-content: center;
62
+ }
63
+ }
64
+ </style>
65
+ <footer>
66
+ <div class="footer-content">
67
+ <div class="footer-section">
68
+ <h3>Quantum Coder Nexus</h3>
69
+ <p>Bridging the quantum and classical worlds through innovative research and development.</p>
70
+ </div>
71
+ <div class="footer-section">
72
+ <h3>Quick Links</h3>
73
+ <ul style="list-style: none; padding: 0;">
74
+ <li style="margin-bottom: 0.5rem;"><a href="#home" style="color: #9ca3af; text-decoration: none;">Home</a></li>
75
+ <li style="margin-bottom: 0.5rem;"><a href="#projects" style="color: #9ca3af; text-decoration: none;">Projects</a></li>
76
+ <li style="margin-bottom: 0.5rem;"><a href="#education" style="color: #9ca3af; text-decoration: none;">Education</a></li>
77
+ <li><a href="#contact" style="color: #9ca3af; text-decoration: none;">Contact</a></li>
78
+ </ul>
79
+ </div>
80
+ <div class="footer-section">
81
+ <h3>Connect</h3>
82
+ <div class="social-links">
83
+ <a href="#"><i data-feather="github"></i></a>
84
+ <a href="#"><i data-feather="linkedin"></i></a>
85
+ <a href="#"><i data-feather="twitter"></i></a>
86
+ <a href="#"><i data-feather="mail"></i></a>
87
+ </div>
88
+ </div>
89
+ </div>
90
+ <div class="copyright">
91
+ &copy; ${new Date().getFullYear()} Quantum Coder Nexus. All rights reserved.
92
+ </div>
93
+ </footer>
94
+ `;
95
+ }
96
+ }
97
+ customElements.define('custom-footer', CustomFooter);
components/navbar.js ADDED
@@ -0,0 +1,124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ class CustomNavbar extends HTMLElement {
2
+ connectedCallback() {
3
+ this.attachShadow({ mode: 'open' });
4
+ this.shadowRoot.innerHTML = `
5
+ <style>
6
+ nav {
7
+ background: white;
8
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
9
+ padding: 1.5rem 2rem;
10
+ position: fixed;
11
+ width: 100%;
12
+ top: 0;
13
+ z-index: 1000;
14
+ display: flex;
15
+ justify-content: space-between;
16
+ align-items: center;
17
+ }
18
+ .logo {
19
+ color: #4f46e5;
20
+ font-weight: 700;
21
+ font-size: 1.5rem;
22
+ display: flex;
23
+ align-items: center;
24
+ }
25
+ .logo i {
26
+ margin-right: 0.5rem;
27
+ }
28
+ ul {
29
+ display: flex;
30
+ gap: 2rem;
31
+ list-style: none;
32
+ margin: 0;
33
+ padding: 0;
34
+ }
35
+ a {
36
+ color: #4b5563;
37
+ text-decoration: none;
38
+ font-weight: 500;
39
+ transition: color 0.2s;
40
+ position: relative;
41
+ }
42
+ a:hover {
43
+ color: #4f46e5;
44
+ }
45
+ a.active {
46
+ color: #4f46e5;
47
+ font-weight: 600;
48
+ }
49
+ a.active::after {
50
+ content: '';
51
+ position: absolute;
52
+ bottom: -8px;
53
+ left: 0;
54
+ width: 100%;
55
+ height: 3px;
56
+ background: #4f46e5;
57
+ border-radius: 3px;
58
+ }
59
+ .mobile-menu-btn {
60
+ display: none;
61
+ background: none;
62
+ border: none;
63
+ color: #4f46e5;
64
+ cursor: pointer;
65
+ }
66
+ @media (max-width: 768px) {
67
+ ul {
68
+ position: fixed;
69
+ top: 80px;
70
+ left: 0;
71
+ width: 100%;
72
+ background: white;
73
+ flex-direction: column;
74
+ align-items: center;
75
+ padding: 2rem 0;
76
+ gap: 1.5rem;
77
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
78
+ transform: translateY(-150%);
79
+ transition: transform 0.3s ease-in-out;
80
+ }
81
+ ul.open {
82
+ transform: translateY(0);
83
+ }
84
+ .mobile-menu-btn {
85
+ display: block;
86
+ }
87
+ a.active::after {
88
+ display: none;
89
+ }
90
+ }
91
+ </style>
92
+ <nav>
93
+ <a href="#home" class="logo">
94
+ <i data-feather="cpu"></i> Quantum Coder
95
+ </a>
96
+ <button class="mobile-menu-btn">
97
+ <i data-feather="menu"></i>
98
+ </button>
99
+ <ul>
100
+ <li><a href="#home">Home</a></li>
101
+ <li><a href="#projects">Projects</a></li>
102
+ <li><a href="#education">Education</a></li>
103
+ <li><a href="#about">About</a></li>
104
+ <li><a href="#contact">Contact</a></li>
105
+ </ul>
106
+ </nav>
107
+ `;
108
+
109
+ // Mobile menu toggle
110
+ const menuBtn = this.shadowRoot.querySelector('.mobile-menu-btn');
111
+ const menu = this.shadowRoot.querySelector('ul');
112
+ menuBtn.addEventListener('click', () => {
113
+ menu.classList.toggle('open');
114
+ const icon = menuBtn.querySelector('i');
115
+ if (menu.classList.contains('open')) {
116
+ icon.setAttribute('data-feather', 'x');
117
+ } else {
118
+ icon.setAttribute('data-feather', 'menu');
119
+ }
120
+ feather.replace();
121
+ });
122
+ }
123
+ }
124
+ customElements.define('custom-navbar', CustomNavbar);
index.html CHANGED
@@ -1,19 +1,232 @@
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">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Quantum Coder Nexus | 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 src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
12
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/highlight.min.js"></script>
13
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/styles/atom-one-dark.min.css">
14
+ </head>
15
+ <body class="bg-gray-50 text-gray-900">
16
+ <custom-navbar></custom-navbar>
17
+
18
+ <!-- Hero Section -->
19
+ <section id="home" class="relative h-screen flex items-center justify-center" style="background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);">
20
+ <div id="vanta-bg" class="absolute inset-0"></div>
21
+ <div class="z-10 text-center px-6">
22
+ <h1 class="text-5xl md:text-7xl font-bold text-white mb-4">Quantum Coder Nexus</h1>
23
+ <p class="text-xl md:text-2xl text-white mb-8 max-w-2xl mx-auto">Developer & Researcher bridging the quantum and classical worlds</p>
24
+ <div class="flex gap-4 justify-center">
25
+ <a href="#projects" class="px-6 py-3 bg-white text-indigo-600 rounded-lg font-medium hover:bg-gray-100 transition">View Projects</a>
26
+ <a href="#contact" class="px-6 py-3 border-2 border-white text-white rounded-lg font-medium hover:bg-white hover:text-indigo-600 transition">Contact Me</a>
27
+ </div>
28
+ </div>
29
+ <div class="absolute bottom-10 left-1/2 transform -translate-x-1/2 animate-bounce">
30
+ <i data-feather="chevron-down" class="text-white w-10 h-10"></i>
31
+ </div>
32
+ </section>
33
+
34
+ <!-- Projects Section -->
35
+ <section id="projects" class="py-20 bg-gray-100">
36
+ <div class="container mx-auto px-6">
37
+ <h2 class="text-3xl font-bold text-center mb-12">Featured Projects</h2>
38
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
39
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden transition-transform hover:scale-105">
40
+ <img src="http://static.photos/technology/640x360/1" alt="Project 1" class="w-full h-48 object-cover">
41
+ <div class="p-6">
42
+ <h3 class="text-xl font-semibold mb-2">Quantum Simulation</h3>
43
+ <p class="text-gray-600 mb-4">Advanced quantum computing simulations using Qiskit framework</p>
44
+ <div class="flex flex-wrap gap-2 mb-4">
45
+ <span class="px-3 py-1 bg-indigo-100 text-indigo-800 rounded-full text-sm">Python</span>
46
+ <span class="px-3 py-1 bg-indigo-100 text-indigo-800 rounded-full text-sm">Qiskit</span>
47
+ <span class="px-3 py-1 bg-indigo-100 text-indigo-800 rounded-full text-sm">Quantum</span>
48
+ </div>
49
+ <a href="project-details.html" class="text-indigo-600 font-medium inline-flex items-center">
50
+ View Details <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
51
+ </a>
52
+ </div>
53
+ </div>
54
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden transition-transform hover:scale-105">
55
+ <img src="http://static.photos/technology/640x360/2" alt="Project 2" class="w-full h-48 object-cover">
56
+ <div class="p-6">
57
+ <h3 class="text-xl font-semibold mb-2">Neural Networks</h3>
58
+ <p class="text-gray-600 mb-4">Deep learning models for medical image analysis</p>
59
+ <div class="flex flex-wrap gap-2 mb-4">
60
+ <span class="px-3 py-1 bg-indigo-100 text-indigo-800 rounded-full text-sm">Python</span>
61
+ <span class="px-3 py-1 bg-indigo-100 text-indigo-800 rounded-full text-sm">TensorFlow</span>
62
+ <span class="px-3 py-1 bg-indigo-100 text-indigo-800 rounded-full text-sm">AI</span>
63
+ </div>
64
+ <a href="#" class="text-indigo-600 font-medium inline-flex items-center">
65
+ View Details <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
66
+ </a>
67
+ </div>
68
+ </div>
69
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden transition-transform hover:scale-105">
70
+ <img src="http://static.photos/technology/640x360/3" alt="Project 3" class="w-full h-48 object-cover">
71
+ <div class="p-6">
72
+ <h3 class="text-xl font-semibold mb-2">Research Portal</h3>
73
+ <p class="text-gray-600 mb-4">Platform for academic collaboration and paper sharing</p>
74
+ <div class="flex flex-wrap gap-2 mb-4">
75
+ <span class="px-3 py-1 bg-indigo-100 text-indigo-800 rounded-full text-sm">React</span>
76
+ <span class="px-3 py-1 bg-indigo-100 text-indigo-800 rounded-full text-sm">Node.js</span>
77
+ <span class="px-3 py-1 bg-indigo-100 text-indigo-800 rounded-full text-sm">MongoDB</span>
78
+ </div>
79
+ <a href="#" class="text-indigo-600 font-medium inline-flex items-center">
80
+ View Details <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
81
+ </a>
82
+ </div>
83
+ </div>
84
+ </div>
85
+ </div>
86
+ </section>
87
+
88
+ <!-- Education Section -->
89
+ <section id="education" class="py-20 bg-white">
90
+ <div class="container mx-auto px-6">
91
+ <h2 class="text-3xl font-bold text-center mb-12">Academic Journey</h2>
92
+ <div class="max-w-4xl mx-auto">
93
+ <div class="relative">
94
+ <!-- Timeline -->
95
+ <div class="absolute left-1/2 transform -translate-x-1/2 h-full w-1 bg-indigo-200"></div>
96
+
97
+ <!-- Timeline Item 1 -->
98
+ <div class="mb-12 flex md:flex-row flex-col items-center">
99
+ <div class="md:w-1/2 md:pr-12 md:text-right mb-4 md:mb-0">
100
+ <h3 class="text-xl font-semibold">Ph.D. in Quantum Computing</h3>
101
+ <p class="text-indigo-600">MIT | 2023-Present</p>
102
+ </div>
103
+ <div class="flex justify-center md:justify-start w-12 h-12 rounded-full bg-indigo-500 text-white items-center relative z-10">
104
+ <i data-feather="book" class="w-6 h-6"></i>
105
+ </div>
106
+ <div class="md:w-1/2 md:pl-12 mt-4 md:mt-0">
107
+ <p>Researching quantum algorithms for optimization problems under Prof. John Smith. Published 3 papers in top-tier journals.</p>
108
+ </div>
109
+ </div>
110
+
111
+ <!-- Timeline Item 2 -->
112
+ <div class="mb-12 flex md:flex-row flex-col items-center">
113
+ <div class="md:w-1/2 md:pr-12 md:text-right mb-4 md:mb-0">
114
+ <h3 class="text-xl font-semibold">M.Sc. in Computer Science</h3>
115
+ <p class="text-indigo-600">Stanford University | 2020-2022</p>
116
+ </div>
117
+ <div class="flex justify-center md:justify-start w-12 h-12 rounded-full bg-indigo-500 text-white items-center relative z-10">
118
+ <i data-feather="cpu" class="w-6 h-6"></i>
119
+ </div>
120
+ <div class="md:w-1/2 md:pl-12 mt-4 md:mt-0">
121
+ <p>Specialized in AI and Machine Learning with a thesis on "Neural Networks for Quantum State Classification".</p>
122
+ </div>
123
+ </div>
124
+
125
+ <!-- Timeline Item 3 -->
126
+ <div class="flex md:flex-row flex-col items-center">
127
+ <div class="md:w-1/2 md:pr-12 md:text-right mb-4 md:mb-0">
128
+ <h3 class="text-xl font-semibold">B.Sc. in Physics</h3>
129
+ <p class="text-indigo-600">ETH Zurich | 2016-2020</p>
130
+ </div>
131
+ <div class="flex justify-center md:justify-start w-12 h-12 rounded-full bg-indigo-500 text-white items-center relative z-10">
132
+ <i data-feather="atom" class="w-6 h-6"></i>
133
+ </div>
134
+ <div class="md:w-1/2 md:pl-12 mt-4 md:mt-0">
135
+ <p>Graduated with honors. Focused on quantum mechanics and computational physics.</p>
136
+ </div>
137
+ </div>
138
+ </div>
139
+ </div>
140
+ </div>
141
+ </section>
142
+
143
+ <!-- About Section -->
144
+ <section id="about" class="py-20 bg-gray-100">
145
+ <div class="container mx-auto px-6">
146
+ <div class="flex flex-col md:flex-row items-center gap-12">
147
+ <div class="md:w-1/2">
148
+ <img src="http://static.photos/people/640x360/1" alt="Profile" class="rounded-xl shadow-lg w-full max-w-md mx-auto">
149
+ </div>
150
+ <div class="md:w-1/2">
151
+ <h2 class="text-3xl font-bold mb-6">About Me</h2>
152
+ <p class="text-lg mb-6">I'm a developer and researcher passionate about bridging the gap between quantum computing and classical software. My work focuses on creating practical applications of quantum algorithms while making them accessible through intuitive interfaces.</p>
153
+ <div class="mb-8">
154
+ <h3 class="text-xl font-semibold mb-4">Research Interests</h3>
155
+ <ul class="grid grid-cols-2 gap-3">
156
+ <li class="flex items-center">
157
+ <i data-feather="zap" class="mr-2 text-indigo-500"></i> Quantum Machine Learning
158
+ </li>
159
+ <li class="flex items-center">
160
+ <i data-feather="code" class="mr-2 text-indigo-500"></i> Quantum Software Development
161
+ </li>
162
+ <li class="flex items-center">
163
+ <i data-feather="cpu" class="mr-2 text-indigo-500"></i> Hybrid Quantum-Classical Systems
164
+ </li>
165
+ <li class="flex items-center">
166
+ <i data-feather="bar-chart-2" class="mr-2 text-indigo-500"></i> Quantum Algorithm Optimization
167
+ </li>
168
+ </ul>
169
+ </div>
170
+ <a href="#" class="px-6 py-3 bg-indigo-600 text-white rounded-lg font-medium inline-flex items-center hover:bg-indigo-700 transition">
171
+ Download CV <i data-feather="download" class="ml-2"></i>
172
+ </a>
173
+ </div>
174
+ </div>
175
+ </div>
176
+ </section>
177
+
178
+ <!-- Contact Section -->
179
+ <section id="contact" class="py-20 bg-white">
180
+ <div class="container mx-auto px-6">
181
+ <h2 class="text-3xl font-bold text-center mb-12">Get In Touch</h2>
182
+ <div class="max-w-2xl mx-auto bg-gray-50 rounded-xl shadow-lg p-8">
183
+ <form>
184
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
185
+ <div>
186
+ <label for="name" class="block mb-2 font-medium">Name</label>
187
+ <input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
188
+ </div>
189
+ <div>
190
+ <label for="email" class="block mb-2 font-medium">Email</label>
191
+ <input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
192
+ </div>
193
+ </div>
194
+ <div class="mb-6">
195
+ <label for="subject" class="block mb-2 font-medium">Subject</label>
196
+ <input type="text" id="subject" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
197
+ </div>
198
+ <div class="mb-6">
199
+ <label for="message" class="block mb-2 font-medium">Message</label>
200
+ <textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500"></textarea>
201
+ </div>
202
+ <button type="submit" class="w-full px-6 py-3 bg-indigo-600 text-white rounded-lg font-medium hover:bg-indigo-700 transition">
203
+ Send Message <i data-feather="send" class="ml-2 inline"></i>
204
+ </button>
205
+ </form>
206
+ </div>
207
+ </div>
208
+ </section>
209
+
210
+ <custom-footer></custom-footer>
211
+
212
+ <script src="components/navbar.js"></script>
213
+ <script src="components/footer.js"></script>
214
+ <script src="script.js"></script>
215
+ <script>
216
+ feather.replace();
217
+ VANTA.GLOBE({
218
+ el: "#vanta-bg",
219
+ mouseControls: true,
220
+ touchControls: true,
221
+ gyroControls: false,
222
+ minHeight: 200.00,
223
+ minWidth: 200.00,
224
+ scale: 1.00,
225
+ scaleMobile: 1.00,
226
+ color: 0x5b21b6,
227
+ backgroundColor: 0x4f46e5
228
+ });
229
+ </script>
230
+ <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
231
+ </body>
232
+ </html>
project-details.html ADDED
@@ -0,0 +1,160 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Project Details | Quantum Coder Nexus</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
+ </head>
11
+ <body class="bg-gray-50">
12
+ <custom-navbar></custom-navbar>
13
+
14
+ <main class="container mx-auto px-6 py-16">
15
+ <div class="max-w-4xl mx-auto">
16
+ <!-- Back button -->
17
+ <a href="index.html#projects" class="inline-flex items-center text-indigo-600 hover:text-indigo-800 mb-8">
18
+ <i data-feather="arrow-left" class="mr-2"></i> Back to Projects
19
+ </a>
20
+
21
+ <!-- Project Header -->
22
+ <div class="flex flex-col md:flex-row gap-8 mb-12">
23
+ <div class="md:w-2/3">
24
+ <span class="inline-block px-3 py-1 bg-indigo-100 text-indigo-800 rounded-full text-sm mb-4">Quantum Computing</span>
25
+ <h1 class="text-4xl font-bold text-gray-900 mb-4">Quantum Simulation Project</h1>
26
+ <p class="text-xl text-gray-600 mb-6">Advanced quantum computing simulations using Qiskit framework with hybrid quantum-classical optimization techniques.</p>
27
+
28
+ <div class="flex flex-wrap gap-3 mb-6">
29
+ <span class="px-3 py-1 bg-gray-200 text-gray-800 rounded-full text-sm">Python</span>
30
+ <span class="px-3 py-1 bg-gray-200 text-gray-800 rounded-full text-sm">Qiskit</span>
31
+ <span class="px-3 py-1 bg-gray-200 text-gray-800 rounded-full text-sm">Quantum</span>
32
+ <span class="px-3 py-1 bg-gray-200 text-gray-800 rounded-full text-sm">Machine Learning</span>
33
+ </div>
34
+
35
+ <div class="flex gap-4">
36
+ <a href="#" class="px-5 py-2.5 bg-indigo-600 text-white rounded-lg font-medium hover:bg-indigo-700 transition inline-flex items-center">
37
+ <i data-feather="github" class="mr-2"></i> View Code
38
+ </a>
39
+ <a href="#" class="px-5 py-2.5 border border-gray-300 text-gray-700 rounded-lg font-medium hover:bg-gray-50 transition inline-flex items-center">
40
+ <i data-feather="external-link" class="mr-2"></i> Live Demo
41
+ </a>
42
+ </div>
43
+ </div>
44
+ <div class="md:w-1/3">
45
+ <div class="bg-white p-6 rounded-xl shadow-md sticky top-6">
46
+ <h3 class="font-semibold text-lg mb-4">Project Details</h3>
47
+ <ul class="space-y-3">
48
+ <li class="flex items-start">
49
+ <i data-feather="calendar" class="mr-2 text-indigo-500 mt-0.5 flex-shrink-0"></i>
50
+ <span><strong>Date:</strong> March 2023 - Present</span>
51
+ </li>
52
+ <li class="flex items-start">
53
+ <i data-feather="user" class="mr-2 text-indigo-500 mt-0.5 flex-shrink-0"></i>
54
+ <span><strong>Client:</strong> Quantum Research Lab</span>
55
+ </li>
56
+ <li class="flex items-start">
57
+ <i data-feather="award" class="mr-2 text-indigo-500 mt-0.5 flex-shrink-0"></i>
58
+ <span><strong>Status:</strong> Active Development</span>
59
+ </li>
60
+ <li class="flex items-start">
61
+ <i data-feather="tag" class="mr-2 text-indigo-500 mt-0.5 flex-shrink-0"></i>
62
+ <span><strong>Category:</strong> Quantum Algorithms</span>
63
+ </li>
64
+ </ul>
65
+ </div>
66
+ </div>
67
+ </div>
68
+
69
+ <!-- Project Gallery -->
70
+ <div class="mb-16">
71
+ <h2 class="text-2xl font-bold mb-6">Project Gallery</h2>
72
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
73
+ <img src="http://static.photos/technology/1024x576/1" alt="Project Screenshot 1" class="rounded-lg shadow-md w-full h-auto">
74
+ <img src="http://static.photos/technology/1024x576/2" alt="Project Screenshot 2" class="rounded-lg shadow-md w-full h-auto">
75
+ <img src="http://static.photos/technology/1024x576/3" alt="Project Screenshot 3" class="rounded-lg shadow-md w-full h-auto">
76
+ <img src="http://static.photos/technology/1024x576/4" alt="Project Screenshot 4" class="rounded-lg shadow-md w-full h-auto">
77
+ </div>
78
+ </div>
79
+
80
+ <!-- Project Content -->
81
+ <div class="prose max-w-none mb-16">
82
+ <h2>Project Overview</h2>
83
+ <p>This project focuses on developing advanced quantum computing simulations that bridge the gap between theoretical quantum algorithms and practical applications. The system leverages IBM's Qiskit framework to implement hybrid quantum-classical optimization techniques.</p>
84
+
85
+ <h3>Key Features</h3>
86
+ <ul>
87
+ <li>Quantum circuit visualization and simulation</li>
88
+ <li>Hybrid quantum-classical neural networks</li>
89
+ <li>Quantum error correction simulations</li>
90
+ <li>Performance benchmarking against classical counterparts</li>
91
+ <li>Interactive educational modules for quantum computing</li>
92
+ </ul>
93
+
94
+ <h3>Technical Implementation</h3>
95
+ <p>The backend is built with Python using Qiskit for quantum circuit construction and execution. The frontend provides an intuitive interface for researchers to design experiments and visualize results.</p>
96
+
97
+ <pre><code class="language-python"># Sample quantum circuit
98
+ from qiskit import QuantumCircuit, Aer, execute
99
+ qc = QuantumCircuit(2)
100
+ qc.h(0)
101
+ qc.cx(0, 1)
102
+ qc.measure_all()
103
+ backend = Aer.get_backend('qasm_simulator')
104
+ job = execute(qc, backend, shots=1024)
105
+ result = job.result()
106
+ print(result.get_counts(qc))</code></pre>
107
+
108
+ <h3>Results & Impact</h3>
109
+ <p>The project has demonstrated a 40% improvement in optimization problems compared to classical approaches and has been adopted by three research institutions for quantum computing education.</p>
110
+ </div>
111
+
112
+ <!-- Related Projects -->
113
+ <div class="mb-16">
114
+ <h2 class="text-2xl font-bold mb-6">Related Projects</h2>
115
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
116
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden transition-transform hover:scale-[1.02]">
117
+ <img src="http://static.photos/technology/640x360/5" alt="Related Project 1" class="w-full h-40 object-cover">
118
+ <div class="p-5">
119
+ <h3 class="font-semibold text-lg mb-2">Quantum ML Framework</h3>
120
+ <p class="text-gray-600 text-sm mb-4">Machine learning with quantum kernels</p>
121
+ <a href="#" class="text-indigo-600 text-sm font-medium inline-flex items-center">
122
+ View Project <i data-feather="arrow-right" class="ml-1 w-4 h-4"></i>
123
+ </a>
124
+ </div>
125
+ </div>
126
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden transition-transform hover:scale-[1.02]">
127
+ <img src="http://static.photos/technology/640x360/6" alt="Related Project 2" class="w-full h-40 object-cover">
128
+ <div class="p-5">
129
+ <h3 class="font-semibold text-lg mb-2">Optimization Toolkit</h3>
130
+ <p class="text-gray-600 text-sm mb-4">Quantum-enhanced optimization algorithms</p>
131
+ <a href="#" class="text-indigo-600 text-sm font-medium inline-flex items-center">
132
+ View Project <i data-feather="arrow-right" class="ml-1 w-4 h-4"></i>
133
+ </a>
134
+ </div>
135
+ </div>
136
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden transition-transform hover:scale-[1.02]">
137
+ <img src="http://static.photos/technology/640x360/7" alt="Related Project 3" class="w-full h-40 object-cover">
138
+ <div class="p-5">
139
+ <h3 class="font-semibold text-lg mb-2">Error Correction</h3>
140
+ <p class="text-gray-600 text-sm mb-4">Advanced quantum error correction</p>
141
+ <a href="#" class="text-indigo-600 text-sm font-medium inline-flex items-center">
142
+ View Project <i data-feather="arrow-right" class="ml-1 w-4 h-4"></i>
143
+ </a>
144
+ </div>
145
+ </div>
146
+ </div>
147
+ </div>
148
+ </div>
149
+ </main>
150
+
151
+ <custom-footer></custom-footer>
152
+
153
+ <script src="components/navbar.js"></script>
154
+ <script src="components/footer.js"></script>
155
+ <script src="script.js"></script>
156
+ <script>
157
+ feather.replace();
158
+ </script>
159
+ </body>
160
+ </html>
script.js ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ // Highlight.js initialization for code blocks
3
+ document.addEventListener('DOMContentLoaded', () => {
4
+ if (typeof hljs !== 'undefined') {
5
+ hljs.highlightAll();
6
+ }
7
+ });
8
+
9
+ // Smooth scrolling for anchor links
10
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
11
+ anchor.addEventListener('click', function (e) {
12
+ e.preventDefault();
13
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
14
+ behavior: 'smooth'
15
+ });
16
+ });
17
+ });
18
+
19
+ // Active navigation highlighting
20
+ window.addEventListener('scroll', () => {
21
+ const sections = document.querySelectorAll('section');
22
+ const navLinks = document.querySelectorAll('nav a');
23
+
24
+ let current = '';
25
+ sections.forEach(section => {
26
+ const sectionTop = section.offsetTop;
27
+ const sectionHeight = section.clientHeight;
28
+ if (pageYOffset >= (sectionTop - 100)) {
29
+ current = section.getAttribute('id');
30
+ }
31
+ });
32
+
33
+ navLinks.forEach(link => {
34
+ link.classList.remove('active');
35
+ if (link.getAttribute('href') === `#${current}`) {
36
+ link.classList.add('active');
37
+ }
38
+ });
39
+ });
40
+
41
+ // Form submission handler
42
+ const contactForm = document.querySelector('form');
43
+ if (contactForm) {
44
+ contactForm.addEventListener('submit', (e) => {
45
+ e.preventDefault();
46
+ alert('Thank you for your message! I will get back to you soon.');
47
+ contactForm.reset();
48
+ });
49
+ }
style.css CHANGED
@@ -1,28 +1,31 @@
 
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 styles */
2
  body {
3
+ font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
4
+ scroll-behavior: smooth;
5
  }
6
 
7
+ /* Timeline styling */
8
+ @media (max-width: 768px) {
9
+ .timeline-center::before {
10
+ left: 1.5rem !important;
11
+ }
12
+ .timeline-item::before {
13
+ left: 0.75rem !important;
14
+ }
15
  }
16
 
17
+ /* Custom animation */
18
+ @keyframes float {
19
+ 0% { transform: translateY(0px); }
20
+ 50% { transform: translateY(-20px); }
21
+ 100% { transform: translateY(0px); }
22
  }
23
 
24
+ .floating {
25
+ animation: float 6s ease-in-out infinite;
 
 
 
 
26
  }
27
 
28
+ /* Section spacing */
29
+ section {
30
+ scroll-margin-top: 80px;
31
+ }