mithunparambath commited on
Commit
b49a706
·
verified ·
1 Parent(s): e97dfc6

As a product presentation with specfication

Browse files
Files changed (4) hide show
  1. components/footer.js +2 -2
  2. components/navbar.js +2 -2
  3. index.html +192 -56
  4. style.css +55 -0
components/footer.js CHANGED
@@ -60,12 +60,12 @@ class CustomFooter extends HTMLElement {
60
  <h4>Quick Links</h4>
61
  <div class="footer-links">
62
  <a href="#about" class="footer-link">About</a>
63
- <a href="#technologies" class="footer-link">Technologies</a>
64
  <a href="#service" class="footer-link">Services</a>
65
  <a href="#partnerships" class="footer-link">Partnerships</a>
66
  <a href="#contact" class="footer-link">Contact</a>
67
  </div>
68
- </div>
69
  <div class="footer-section">
70
  <h4>Contact</h4>
71
  <div class="footer-links">
 
60
  <h4>Quick Links</h4>
61
  <div class="footer-links">
62
  <a href="#about" class="footer-link">About</a>
63
+ <a href="#specifications" class="footer-link">Specifications</a>
64
  <a href="#service" class="footer-link">Services</a>
65
  <a href="#partnerships" class="footer-link">Partnerships</a>
66
  <a href="#contact" class="footer-link">Contact</a>
67
  </div>
68
+ </div>
69
  <div class="footer-section">
70
  <h4>Contact</h4>
71
  <div class="footer-links">
components/navbar.js CHANGED
@@ -72,12 +72,12 @@ class CustomNavbar extends HTMLElement {
72
  </a>
73
  <div class="nav-links">
74
  <a href="#about" class="nav-link">About</a>
75
- <a href="#technologies" class="nav-link">Technologies</a>
76
  <a href="#service" class="nav-link">Services</a>
77
  <a href="#partnerships" class="nav-link">Partnerships</a>
78
  <a href="#contact" class="nav-link">Contact</a>
79
  </div>
80
- <button class="mobile-menu-btn">
81
  <i data-feather="menu"></i>
82
  </button>
83
  </div>
 
72
  </a>
73
  <div class="nav-links">
74
  <a href="#about" class="nav-link">About</a>
75
+ <a href="#specifications" class="nav-link">Specifications</a>
76
  <a href="#service" class="nav-link">Services</a>
77
  <a href="#partnerships" class="nav-link">Partnerships</a>
78
  <a href="#contact" class="nav-link">Contact</a>
79
  </div>
80
+ <button class="mobile-menu-btn">
81
  <i data-feather="menu"></i>
82
  </button>
83
  </div>
index.html CHANGED
@@ -41,14 +41,14 @@
41
  Advanced MOCVD and PVD systems for 2D materials, TMDs, and quantum device fabrication
42
  </p>
43
  <div class="flex flex-col sm:flex-row gap-4 justify-center">
44
- <a href="#technologies" class="bg-orange-500 hover:bg-orange-600 text-white px-8 py-4 rounded-lg font-semibold transition-all duration-300 transform hover:scale-105 shadow-lg">
45
- Explore Technologies
46
  </a>
47
  <a href="#contact" class="border border-orange-500 text-orange-500 hover:bg-orange-500 hover:text-white px-8 py-4 rounded-lg font-semibold transition-all duration-300 shadow-md">
48
- Get in Touch
49
  </a>
50
  </div>
51
- </div>
52
  </section>
53
  <!-- About Section -->
54
  <section id="about" class="py-20 px-4 bg-gray-50">
@@ -105,78 +105,214 @@
105
  </div>
106
  </div>
107
  </section>
108
- <!-- Technologies Section -->
109
- <section id="technologies" class="py-20 px-4 bg-white">
110
  <div class="max-w-6xl mx-auto">
111
  <div class="text-center mb-16">
112
- <h2 class="text-4xl md:text-5xl font-bold mb-4 text-gray-900">Advanced Technologies</h2>
113
  <div class="w-24 h-1 bg-orange-500 mx-auto"></div>
114
  </div>
115
- <div class="grid md:grid-cols-2 gap-12">
116
- <!-- MOCVD Card -->
117
- <div class="bg-white rounded-2xl p-8 border border-gray-200 hover:border-orange-500 transition-all duration-300 shadow-md hover:shadow-lg">
118
- <div class="flex items-center gap-4 mb-6">
119
- <div class="w-12 h-12 bg-orange-500 rounded-lg flex items-center justify-center">
120
- <i data-feather="layers" class="text-white"></i>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
121
  </div>
122
- <h3 class="text-2xl font-semibold text-gray-900">MOCVD Systems</h3>
123
  </div>
124
- <p class="text-gray-600 mb-6">
125
- Metal Organic Chemical Vapor Deposition systems for high-precision thin film growth
126
- of 2D materials and transition metal dichalcogenides (TMDs).
127
- </p>
128
- <ul class="space-y-2 text-gray-500 mb-6">
129
- <li class="flex items-center gap-2">
130
- <i data-feather="check" class="text-orange-500 w-4 h-4"></i>
131
- Atomic-level thickness control
 
 
 
132
  </li>
133
- <li class="flex items-center gap-2">
134
- <i data-feather="check" class="text-orange-500 w-4 h-4"></i>
135
- Multi-wafer processing capability
136
  </li>
137
- <li class="flex items-center gap-2">
138
- <i data-feather="check" class="text-orange-500 w-4 h-4"></i>
139
- In-situ monitoring and control
140
  </li>
141
  </ul>
142
- <div class="bg-orange-50 rounded-lg p-4 border-l-4 border-orange-500">
143
- <h4 class="font-semibold text-orange-500 mb-2">Applications</h4>
144
- <p class="text-sm text-gray-600">Quantum devices, photonics, flexible electronics, advanced sensors</p>
145
- </div>
146
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
 
148
- <!-- PVD Card -->
149
- <div class="bg-white rounded-2xl p-8 border border-gray-200 hover:border-orange-500 transition-all duration-300 shadow-md hover:shadow-lg">
150
- <div class="flex items-center gap-4 mb-6">
151
- <div class="w-12 h-12 bg-orange-500 rounded-lg flex items-center justify-center">
152
- <i data-feather="zap" class="text-white"></i>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
153
  </div>
154
- <h3 class="text-2xl font-semibold text-gray-900">PVD Systems</h3>
155
  </div>
156
- <p class="text-gray-600 mb-6">
157
- Physical Vapor Deposition systems for metal and dielectric thin films with
158
- exceptional uniformity and reproducibility.
159
- </p>
160
- <ul class="space-y-2 text-gray-500 mb-6">
161
- <li class="flex items-center gap-2">
162
- <i data-feather="check" class="text-orange-500 w-4 h-4"></i>
163
- Ultra-high vacuum compatibility
 
 
 
164
  </li>
165
- <li class="flex items-center gap-2">
166
- <i data-feather="check" class="text-orange-500 w-4 h-4"></i>
167
- Multi-target configuration
168
  </li>
169
- <li class="flex items-center gap-2">
170
- <i data-feather="check" class="text-orange-500 w-4 h-4"></i>
171
- Sub-nanometer film uniformity
172
  </li>
173
  </ul>
174
- <div class="bg-orange-50 rounded-lg p-4 border-l-4 border-orange-500">
175
- <h4 class="font-semibold text-orange-500 mb-2">Applications</h4>
176
- <p class="text-sm text-gray-600">Interconnect metallization, MEMS, protective coatings, optical films</p>
177
- </div>
178
  </div>
179
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
180
  </div>
181
  </section>
182
  <!-- Service Section -->
 
41
  Advanced MOCVD and PVD systems for 2D materials, TMDs, and quantum device fabrication
42
  </p>
43
  <div class="flex flex-col sm:flex-row gap-4 justify-center">
44
+ <a href="#specifications" class="bg-orange-500 hover:bg-orange-600 text-white px-8 py-4 rounded-lg font-semibold transition-all duration-300 transform hover:scale-105 shadow-lg">
45
+ View Specifications
46
  </a>
47
  <a href="#contact" class="border border-orange-500 text-orange-500 hover:bg-orange-500 hover:text-white px-8 py-4 rounded-lg font-semibold transition-all duration-300 shadow-md">
48
+ Request Demo
49
  </a>
50
  </div>
51
+ </div>
52
  </section>
53
  <!-- About Section -->
54
  <section id="about" class="py-20 px-4 bg-gray-50">
 
105
  </div>
106
  </div>
107
  </section>
108
+ <!-- Product Specifications Section -->
109
+ <section id="specifications" class="py-20 px-4 bg-gray-50">
110
  <div class="max-w-6xl mx-auto">
111
  <div class="text-center mb-16">
112
+ <h2 class="text-4xl md:text-5xl font-bold mb-4 text-gray-900">Product Specifications</h2>
113
  <div class="w-24 h-1 bg-orange-500 mx-auto"></div>
114
  </div>
115
+
116
+ <!-- MOCVD System Specifications -->
117
+ <div class="bg-white rounded-2xl p-8 mb-12 shadow-lg border border-gray-200">
118
+ <div class="flex items-center gap-4 mb-8">
119
+ <div class="w-16 h-16 bg-orange-500 rounded-xl flex items-center justify-center">
120
+ <i data-feather="layers" class="text-white w-8 h-8"></i>
121
+ </div>
122
+ <h3 class="text-3xl font-semibold text-gray-900">NM-MOCVD-3000 Series</h3>
123
+ <p class="text-gray-600 text-lg mb-6">Advanced Metal Organic Chemical Vapor Deposition System</p>
124
+ </div>
125
+
126
+ <div class="grid md:grid-cols-2 gap-8 mb-8">
127
+ <div class="space-y-6">
128
+ <h4 class="text-xl font-semibold text-orange-500">Technical Specifications</h4>
129
+ <div class="space-y-4">
130
+ <div class="flex justify-between items-center border-b border-gray-200 pb-2">
131
+ <span class="text-gray-700">Wafer Size</span>
132
+ <span class="font-semibold text-gray-900">50mm - 150mm</span>
133
+ </div>
134
+ <div class="flex justify-between items-center border-b border-gray-200 pb-2">
135
+ <span class="text-gray-700">Growth Temperature</span>
136
+ <span class="font-semibold text-gray-900">300°C - 1200°C</span>
137
+ </div>
138
+ <div class="flex justify-between items-center border-b border-gray-200 pb-2">
139
+ <span class="text-gray-700">Pressure Range</span>
140
+ <span class="font-semibold text-gray-900">10 mTorr - 760 Torr</span>
141
+ </div>
142
+ <div class="flex justify-between items-center border-b border-gray-200 pb-2">
143
+ <span class="text-gray-700">Growth Rate</span>
144
+ <span class="font-semibold text-gray-900">0.01 - 10 nm/min</span>
145
+ </div>
146
+ <div class="flex justify-between items-center border-b border-gray-200 pb-2">
147
+ <span class="text-gray-700">Uniformity</span>
148
+ <span class="font-semibold text-gray-900">±2% (1σ)</span>
149
  </div>
 
150
  </div>
151
+ </div>
152
+ <div class="space-y-6">
153
+ <h4 class="text-xl font-semibold text-orange-500">Key Features</h4>
154
+ <ul class="space-y-3 text-gray-600">
155
+ <li class="flex items-center gap-3">
156
+ <i data-feather="check" class="text-orange-500 w-5 h-5"></i>
157
+ <span>Multi-zone temperature control</span>
158
+ </li>
159
+ <li class="flex items-center gap-3">
160
+ <i data-feather="check" class="text-orange-500 w-5 h-5"></i>
161
+ <span>Real-time in-situ monitoring</span>
162
  </li>
163
+ <li class="flex items-center gap-3">
164
+ <i data-feather="check" class="text-orange-500 w-5 h-5"></i>
165
+ <span>Automated precursor delivery</span>
166
  </li>
167
+ <li class="flex items-center gap-3">
168
+ <i data-feather="check" class="text-orange-500 w-5 h-5"></i>
169
+ <span>Cluster tool compatibility</span>
170
  </li>
171
  </ul>
 
 
 
 
172
  </div>
173
+ </div>
174
+
175
+ <div class="bg-orange-50 rounded-xl p-6 border-l-4 border-orange-500">
176
+ <h4 class="font-semibold text-orange-500 mb-3">Supported Materials</h4>
177
+ <div class="grid grid-cols-2 gap-4 text-sm">
178
+ <div class="flex items-center gap-2">
179
+ <i data-feather="check-circle" class="text-orange-500 w-4 h-4"></i>
180
+ <span>Graphene & 2D Materials</span>
181
+ </div>
182
+ <div class="flex items-center gap-2">
183
+ <i data-feather="check-circle" class="text-orange-500 w-4 h-4"></i>
184
+ <span>Transition Metal Dichalcogenides</span>
185
+ </div>
186
+ <div class="flex items-center gap-2">
187
+ <i data-feather="check-circle" class="text-orange-500 w-4 h-4"></i>
188
+ <span>III-V & II-VI Compounds</span>
189
+ </div>
190
+ <div class="flex items-center gap-2">
191
+ <i data-feather="check-circle" class="text-orange-500 w-4 h-4"></i>
192
+ <span>Perovskites & Oxides</span>
193
+ </div>
194
+ </div>
195
+ </div>
196
 
197
+ <!-- PVD System Specifications -->
198
+ <div class="bg-white rounded-2xl p-8 mt-12 shadow-lg border border-gray-200">
199
+ <div class="flex items-center gap-4 mb-8">
200
+ <div class="w-16 h-16 bg-orange-500 rounded-xl flex items-center justify-center">
201
+ <i data-feather="zap" class="text-white w-8 h-8"></i>
202
+ </div>
203
+ <h3 class="text-3xl font-semibold text-gray-900">NM-PVD-5000 Series</h3>
204
+ <p class="text-gray-600 text-lg mb-6">High-Performance Physical Vapor Deposition System</p>
205
+ </div>
206
+
207
+ <div class="grid md:grid-cols-2 gap-8 mb-8">
208
+ <div class="space-y-6">
209
+ <h4 class="text-xl font-semibold text-orange-500">Technical Specifications</h4>
210
+ <div class="space-y-4">
211
+ <div class="flex justify-between items-center border-b border-gray-200 pb-2">
212
+ <span class="text-gray-700">Base Pressure</span>
213
+ <span class="font-semibold text-gray-900">≤ 5×10⁻⁸ Torr</span>
214
+ </div>
215
+ <div class="flex justify-between items-center border-b border-gray-200 pb-2">
216
+ <span class="text-gray-700">Deposition Rate</span>
217
+ <span class="font-semibold text-gray-900">0.1 - 10 nm/sec</span>
218
+ </div>
219
+ <div class="flex justify-between items-center border-b border-gray-200 pb-2">
220
+ <span class="text-gray-700">Target Configuration</span>
221
+ <span class="font-semibold text-gray-900">Up to 4 targets</span>
222
+ </div>
223
+ <div class="flex justify-between items-center border-b border-gray-200 pb-2">
224
+ <span class="text-gray-700">Film Uniformity</span>
225
+ <span class="font-semibold text-gray-900">±1% (3σ)</span>
226
+ </div>
227
+ <div class="flex justify-between items-center border-b border-gray-200 pb-2">
228
+ <span class="text-gray-700">Substrate Heating</span>
229
+ <span class="font-semibold text-gray-900">RT - 800°C</span>
230
  </div>
 
231
  </div>
232
+ </div>
233
+ <div class="space-y-6">
234
+ <h4 class="text-xl font-semibold text-orange-500">Key Features</h4>
235
+ <ul class="space-y-3 text-gray-600">
236
+ <li class="flex items-center gap-3">
237
+ <i data-feather="check" class="text-orange-500 w-5 h-5"></i>
238
+ <span>Load-lock compatible</span>
239
+ </li>
240
+ <li class="flex items-center gap-3">
241
+ <i data-feather="check" class="text-orange-500 w-5 h-5"></i>
242
+ <span>RF/DC magnetron sputtering</span>
243
  </li>
244
+ <li class="flex items-center gap-3">
245
+ <i data-feather="check" class="text-orange-500 w-5 h-5"></i>
246
+ <span>Multi-layer deposition capability</span>
247
  </li>
248
+ <li class="flex items-center gap-3">
249
+ <i data-feather="check" class="text-orange-500 w-5 h-5"></i>
250
+ <span>Integrated thickness monitoring</span>
251
  </li>
252
  </ul>
 
 
 
 
253
  </div>
254
  </div>
255
+
256
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-4">
257
+ <div class="bg-orange-50 rounded-lg p-4 text-center">
258
+ <div class="text-2xl font-bold text-orange-500">99.999%</div>
259
+ <div class="text-sm text-gray-600">Target Purity</div>
260
+ </div>
261
+ <div class="bg-orange-50 rounded-lg p-4 text-center">
262
+ <div class="text-2xl font-bold text-orange-500">≤ 0.5nm</div>
263
+ <div class="text-sm text-gray-600">Surface Roughness</div>
264
+ </div>
265
+ <div class="bg-orange-50 rounded-lg p-4 text-center">
266
+ <div class="text-2xl font-bold text-orange-500">24/7</div>
267
+ <div class="text-sm text-gray-600">Uptime</div>
268
+ </div>
269
+ <div class="bg-orange-50 rounded-lg p-4 text-center">
270
+ <div class="text-2xl font-bold text-orange-500">ISO 5</div>
271
+ <div class="text-sm text-gray-600">Clean Room</div>
272
+ </div>
273
+ </div>
274
+ </div>
275
+
276
+ <!-- System Comparison -->
277
+ <div class="bg-white rounded-2xl p-8 mt-12 shadow-lg border border-gray-200">
278
+ <div class="text-center mb-8">
279
+ <h3 class="text-3xl font-semibold text-gray-900">System Comparison</h3>
280
+ </div>
281
+ <div class="overflow-x-auto">
282
+ <table class="w-full text-sm text-left text-gray-700">
283
+ <thead class="bg-orange-500 text-white">
284
+ <tr>
285
+ <th class="px-6 py-4">Parameter</th>
286
+ <th class="px-6 py-4">NM-MOCVD-3000</th>
287
+ <th class="px-6 py-4">NM-PVD-5000</th>
288
+ </tr>
289
+ </thead>
290
+ <tbody>
291
+ <tr class="border-b border-gray-200">
292
+ <td class="px-6 py-4 font-medium">Process Type</td>
293
+ <td class="px-6 py-4">Chemical Vapor Deposition</td>
294
+ <td class="px-6 py-4">Physical Vapor Deposition</td>
295
+ </tr>
296
+ <tr class="border-b border-gray-200">
297
+ <td class="px-6 py-4 font-medium">Material Quality</td>
298
+ <td class="px-6 py-4">High crystalline quality</td>
299
+ <td class="px-6 py-4">Excellent density & adhesion</td>
300
+ </tr>
301
+ <tr class="border-b border-gray-200">
302
+ <td class="px-6 py-4 font-medium">Throughput</td>
303
+ <td class="px-6 py-4">Medium (batch process)</td>
304
+ <td class="px-6 py-4">High (continuous process)</td>
305
+ </tr>
306
+ <tr class="border-b border-gray-200">
307
+ <td class="px-6 py-4 font-medium">Operating Cost</td>
308
+ <td class="px-6 py-4">Medium (precursor cost)</td>
309
+ <td class="px-6 py-4 font-medium">Applications</td>
310
+ <td class="px-6 py-4">2D materials, quantum devices</td>
311
+ <td class="px-6 py-4">Metallization, MEMS, coatings</td>
312
+ </tr>
313
+ </tbody>
314
+ </table>
315
+ </div>
316
  </div>
317
  </section>
318
  <!-- Service Section -->
style.css CHANGED
@@ -1,3 +1,4 @@
 
1
  body {
2
  padding: 2rem;
3
  font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
@@ -26,3 +27,57 @@ p {
26
  .card p:last-child {
27
  margin-bottom: 0;
28
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
  body {
3
  padding: 2rem;
4
  font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
27
  .card p:last-child {
28
  margin-bottom: 0;
29
  }
30
+
31
+ /* Specification table styles */
32
+ table {
33
+ border-collapse: collapse;
34
+ width: 100%;
35
+ }
36
+
37
+ th, td {
38
+ padding: 12px 16px;
39
+ border-bottom: 1px solid #e5e7eb;
40
+ }
41
+
42
+ th {
43
+ background: #ff6600;
44
+ color: white;
45
+ font-weight: 600;
46
+ }
47
+
48
+ tr:nth-child(even) {
49
+ background-color: #f9fafb;
50
+ }
51
+
52
+ /* Animation for specification sections */
53
+ section {
54
+ opacity: 0;
55
+ transform: translateY(20px);
56
+ transition: all 0.6s ease;
57
+ }
58
+
59
+ section.animate-in {
60
+ opacity: 1;
61
+ transform: translateY(0);
62
+ }
63
+
64
+ /* Responsive design for specification tables */
65
+ @media (max-width: 768px) {
66
+ .overflow-x-auto {
67
+ -webkit-overflow-scrolling: touch;
68
+ }
69
+
70
+ table {
71
+ min-width: 600px;
72
+ }
73
+ }
74
+
75
+ /* Enhanced hover effects for specification cards */
76
+ .bg-white.rounded-2xl {
77
+ transition: transform 0.3s ease, box-shadow 0.3s ease;
78
+ }
79
+
80
+ .bg-white.rounded-2xl:hover {
81
+ transform: translateY(-5px);
82
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
83
+ }