mtourville commited on
Commit
0c2ba93
·
verified ·
1 Parent(s): f4fea83

go to projects tab

Browse files
Files changed (2) hide show
  1. index.html +2 -2
  2. projects.html +277 -0
index.html CHANGED
@@ -37,9 +37,9 @@
37
  <div class="ml-10 flex items-center space-x-8">
38
  <a href="#" class="text-blue-600 font-medium">Home</a>
39
  <a href="#" class="text-gray-600 hover:text-blue-600 transition">Services</a>
40
- <a href="#" class="text-gray-600 hover:text-blue-600 transition">Projects</a>
41
  <a href="#" class="text-gray-600 hover:text-blue-600 transition">About</a>
42
- <a href="#" class="text-gray-600 hover:text-blue-600 transition">Contact</a>
43
  <button class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded-md transition">Get Quote</button>
44
  </div>
45
  </div>
 
37
  <div class="ml-10 flex items-center space-x-8">
38
  <a href="#" class="text-blue-600 font-medium">Home</a>
39
  <a href="#" class="text-gray-600 hover:text-blue-600 transition">Services</a>
40
+ <a href="projects.html" class="text-gray-600 hover:text-blue-600 transition">Projects</a>
41
  <a href="#" class="text-gray-600 hover:text-blue-600 transition">About</a>
42
+ <a href="#" class="text-gray-600 hover:text-blue-600 transition">Contact</a>
43
  <button class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded-md transition">Get Quote</button>
44
  </div>
45
  </div>
projects.html ADDED
@@ -0,0 +1,277 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Our Projects | Essential Engineering</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.waves.min.js"></script>
12
+ <style>
13
+ .project-card:hover {
14
+ transform: translateY(-5px);
15
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
16
+ }
17
+ </style>
18
+ </head>
19
+ <body class="font-sans antialiased text-gray-800">
20
+ <div id="vanta-bg" class="fixed top-0 left-0 w-full h-full -z-1"></div>
21
+
22
+ <!-- Navigation -->
23
+ <nav class="bg-white bg-opacity-90 backdrop-filter backdrop-blur-sm shadow-sm fixed w-full z-50">
24
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
25
+ <div class="flex justify-between h-20 items-center">
26
+ <div class="flex-shrink-0 flex items-center">
27
+ <img src="https://huggingface.co/spaces/mtourville/pureflow-mep-masters/resolve/main/images/Essential%20Logo.jpg" alt="Essential Engineering Logo" class="h-16 w-auto hovered-element">
28
+ </div>
29
+ <div class="hidden md:block">
30
+ <div class="ml-10 flex items-center space-x-8">
31
+ <a href="index.html" class="text-gray-600 hover:text-blue-600 transition">Home</a>
32
+ <a href="#" class="text-gray-600 hover:text-blue-600 transition">Services</a>
33
+ <a href="projects.html" class="text-blue-600 font-medium">Projects</a>
34
+ <a href="#" class="text-gray-600 hover:text-blue-600 transition">About</a>
35
+ <a href="#" class="text-gray-600 hover:text-blue-600 transition">Contact</a>
36
+ <button class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded-md transition">Get Quote</button>
37
+ </div>
38
+ </div>
39
+ <div class="md:hidden">
40
+ <button class="text-gray-600">
41
+ <i data-feather="menu"></i>
42
+ </button>
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </nav>
47
+
48
+ <!-- Projects Header -->
49
+ <section class="pt-32 pb-16 px-4 sm:px-6 lg:px-8 bg-white bg-opacity-90">
50
+ <div class="max-w-7xl mx-auto">
51
+ <div class="text-center">
52
+ <span class="text-blue-600 font-medium">OUR WORK</span>
53
+ <h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6 text-gray-800">
54
+ Featured <span class="text-blue-600">Projects</span>
55
+ </h1>
56
+ <p class="text-lg text-gray-600 mb-8 max-w-2xl mx-auto">
57
+ Explore our portfolio of completed projects showcasing our expertise in critical environment MEP engineering.
58
+ </p>
59
+ </div>
60
+ </div>
61
+ </section>
62
+
63
+ <!-- Projects Grid -->
64
+ <section class="py-16 px-4 sm:px-6 lg:px-8 bg-gray-50">
65
+ <div class="max-w-7xl mx-auto">
66
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
67
+ <!-- Project 1 -->
68
+ <div class="project-card bg-white rounded-xl overflow-hidden border border-gray-100 transition duration-300">
69
+ <img src="http://static.photos/medical/640x360/1" alt="Pharmaceutical Facility" class="w-full h-48 object-cover">
70
+ <div class="p-6">
71
+ <span class="text-blue-600 text-sm font-medium">Pharmaceutical</span>
72
+ <h3 class="text-xl font-bold mt-2 mb-3">Biotech Cleanroom Facility</h3>
73
+ <p class="text-gray-600 mb-4">
74
+ ISO Class 7 cleanrooms with full HVAC validation and monitoring systems for a leading biotech company.
75
+ </p>
76
+ <div class="flex items-center text-sm text-gray-500">
77
+ <i data-feather="map-pin" class="w-4 h-4 mr-1"></i>
78
+ <span>Boston, MA</span>
79
+ </div>
80
+ </div>
81
+ </div>
82
+
83
+ <!-- Project 2 -->
84
+ <div class="project-card bg-white rounded-xl overflow-hidden border border-gray-100 transition duration-300">
85
+ <img src="http://static.photos/technology/640x360/2" alt="Semiconductor Facility" class="w-full h-48 object-cover">
86
+ <div class="p-6">
87
+ <span class="text-blue-600 text-sm font-medium">Microelectronics</span>
88
+ <h3 class="text-xl font-bold mt-2 mb-3">Semiconductor Fab Expansion</h3>
89
+ <p class="text-gray-600 mb-4">
90
+ Ultra-clean environment with vibration isolation and EMI shielding for semiconductor manufacturing.
91
+ </p>
92
+ <div class="flex items-center text-sm text-gray-500">
93
+ <i data-feather="map-pin" class="w-4 h-4 mr-1"></i>
94
+ <span>Austin, TX</span>
95
+ </div>
96
+ </div>
97
+ </div>
98
+
99
+ <!-- Project 3 -->
100
+ <div class="project-card bg-white rounded-xl overflow-hidden border border-gray-100 transition duration-300">
101
+ <img src="http://static.photos/science/640x360/3" alt="Research Lab" class="w-full h-48 object-cover">
102
+ <div class="p-6">
103
+ <span class="text-blue-600 text-sm font-medium">Life Sciences</span>
104
+ <h3 class="text-xl font-bold mt-2 mb-3">BSL-3 Research Laboratory</h3>
105
+ <p class="text-gray-600 mb-4">
106
+ High containment laboratory with redundant HVAC and specialized exhaust treatment systems.
107
+ </p>
108
+ <div class="flex items-center text-sm text-gray-500">
109
+ <i data-feather="map-pin" class="w-4 h-4 mr-1"></i>
110
+ <span>Research Triangle, NC</span>
111
+ </div>
112
+ </div>
113
+ </div>
114
+
115
+ <!-- Project 4 -->
116
+ <div class="project-card bg-white rounded-xl overflow-hidden border border-gray-100 transition duration-300">
117
+ <img src="http://static.photos/technology/640x360/4" alt="Data Center" class="w-full h-48 object-cover">
118
+ <div class="p-6">
119
+ <span class="text-blue-600 text-sm font-medium">Data Center</span>
120
+ <h3 class="text-xl font-bold mt-2 mb-3">Tier IV Data Center</h3>
121
+ <p class="text-gray-600 mb-4">
122
+ Mission-critical facility with N+2 cooling redundancy and fault-tolerant power distribution.
123
+ </p>
124
+ <div class="flex items-center text-sm text-gray-500">
125
+ <i data-feather="map-pin" class="w-4 h-4 mr-1"></i>
126
+ <span>Chicago, IL</span>
127
+ </div>
128
+ </div>
129
+ </div>
130
+
131
+ <!-- Project 5 -->
132
+ <div class="project-card bg-white rounded-xl overflow-hidden border border-gray-100 transition duration-300">
133
+ <img src="http://static.photos/medical/640x360/5" alt="Vaccine Facility" class="w-full h-48 object-cover">
134
+ <div class="p-6">
135
+ <span class="text-blue-600 text-sm font-medium">Pharmaceutical</span>
136
+ <h3 class="text-xl font-bold mt-2 mb-3">Vaccine Manufacturing Facility</h3>
137
+ <p class="text-gray-600 mb-4">
138
+ GMP-compliant facility with classified zones and validated HVAC systems for vaccine production.
139
+ </p>
140
+ <div class="flex items-center text-sm text-gray-500">
141
+ <i data-feather="map-pin" class="w-4 h-4 mr-1"></i>
142
+ <span>Philadelphia, PA</span>
143
+ </div>
144
+ </div>
145
+ </div>
146
+
147
+ <!-- Project 6 -->
148
+ <div class="project-card bg-white rounded-xl overflow-hidden border border-gray-100 transition duration-300">
149
+ <img src="http://static.photos/technology/640x360/6" alt="Advanced Manufacturing" class="w-full h-48 object-cover">
150
+ <div class="p-6">
151
+ <span class="text-blue-600 text-sm font-medium">Advanced Manufacturing</span>
152
+ <h3 class="text-xl font-bold mt-2 mb-3">Battery Manufacturing Plant</h3>
153
+ <p class="text-gray-600 mb-4">
154
+ Dry room environment with dew point control and specialized fire protection systems.
155
+ </p>
156
+ <div class="flex items-center text-sm text-gray-500">
157
+ <i data-feather="map-pin" class="w-4 h-4 mr-1"></i>
158
+ <span>Detroit, MI</span>
159
+ </div>
160
+ </div>
161
+ </div>
162
+ </div>
163
+ </div>
164
+ </section>
165
+
166
+ <!-- Project Statistics -->
167
+ <section class="py-16 px-4 sm:px-6 lg:px-8 bg-blue-600 text-white">
168
+ <div class="max-w-7xl mx-auto">
169
+ <div class="grid md:grid-cols-4 gap-8 text-center">
170
+ <div>
171
+ <div class="text-4xl font-bold mb-2">150+</div>
172
+ <div class="text-blue-100">Projects Completed</div>
173
+ </div>
174
+ <div>
175
+ <div class="text-4xl font-bold mb-2">25</div>
176
+ <div class="text-blue-100">Industry Awards</div>
177
+ </div>
178
+ <div>
179
+ <div class="text-4xl font-bold mb-2">50M+</div>
180
+ <div class="text-blue-100">Square Feet Designed</div>
181
+ </div>
182
+ <div>
183
+ <div class="text-4xl font-bold mb-2">100%</div>
184
+ <div class="text-blue-100">Client Satisfaction</div>
185
+ </div>
186
+ </div>
187
+ </div>
188
+ </section>
189
+
190
+ <!-- Footer -->
191
+ <footer class="bg-gray-900 text-white py-16 px-4 sm:px-6 lg:px-8">
192
+ <div class="max-w-7xl mx-auto">
193
+ <div class="grid md:grid-cols-4 gap-12">
194
+ <div>
195
+ <div class="flex items-center mb-6">
196
+ <img src="https://huggingface.co/spaces/mtourville/pureflow-mep-masters/resolve/main/images/Essential%20Logo.jpg" alt="Essential Engineering Logo" class="h-14 w-auto">
197
+ <span class="ml-3 text-xl font-bold">Essential Engineering</span>
198
+ </div>
199
+ <p class="text-gray-400 mb-6">
200
+ Specialized MEP solutions for critical environments in pharmaceutical, microelectronics, and advanced manufacturing.
201
+ </p>
202
+ <div class="flex space-x-4">
203
+ <a href="#" class="text-gray-400 hover:text-white">
204
+ <i data-feather="linkedin"></i>
205
+ </a>
206
+ <a href="#" class="text-gray-400 hover:text-white">
207
+ <i data-feather="twitter"></i>
208
+ </a>
209
+ <a href="#" class="text-gray-400 hover:text-white">
210
+ <i data-feather="facebook"></i>
211
+ </a>
212
+ </div>
213
+ </div>
214
+
215
+ <div>
216
+ <h4 class="text-lg font-semibold mb-6">Services</h4>
217
+ <ul class="space-y-3">
218
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Cleanroom Design</a></li>
219
+ <li><a href="#" class="text-gray-400 hover:text-white transition">HVAC Systems</a></li>
220
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Process Piping</a></li>
221
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Electrical Systems</a></li>
222
+ </ul>
223
+ </div>
224
+
225
+ <div>
226
+ <h4 class="text-lg font-semibold mb-6">Projects</h4>
227
+ <ul class="space-y-3">
228
+ <li><a href="projects.html" class="text-gray-400 hover:text-white transition">All Projects</a></li>
229
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Pharmaceutical</a></li>
230
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Microelectronics</a></li>
231
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Life Sciences</a></li>
232
+ </ul>
233
+ </div>
234
+
235
+ <div>
236
+ <h4 class="text-lg font-semibold mb-6">Contact</h4>
237
+ <address class="not-italic text-gray-400">
238
+ <p class="mb-3">123 Engineering Drive</p>
239
+ <p class="mb-3">Tech Park, CA 90210</p>
240
+ <p class="mb-3">Phone: (555) 123-4567</p>
241
+ <p>Email: info@essentialeng.com</p>
242
+ </address>
243
+ </div>
244
+ </div>
245
+
246
+ <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
247
+ <p class="text-gray-500 text-sm mb-4 md:mb-0">
248
+ © 2023 Essential Engineering Company. All rights reserved.
249
+ </p>
250
+ <div class="flex space-x-6">
251
+ <a href="#" class="text-gray-500 hover:text-white text-sm">Privacy Policy</a>
252
+ <a href="#" class="text-gray-500 hover:text-white text-sm">Terms of Service</a>
253
+ </div>
254
+ </div>
255
+ </div>
256
+ </footer>
257
+
258
+ <script>
259
+ feather.replace();
260
+ VANTA.WAVES({
261
+ el: "#vanta-bg",
262
+ mouseControls: true,
263
+ touchControls: true,
264
+ gyroControls: false,
265
+ minHeight: 200.00,
266
+ minWidth: 200.00,
267
+ scale: 1.00,
268
+ scaleMobile: 1.00,
269
+ color: 0x3b82f6,
270
+ shininess: 35.00,
271
+ waveHeight: 15.00,
272
+ waveSpeed: 0.60,
273
+ zoom: 0.75
274
+ });
275
+ </script>
276
+ </body>
277
+ </html>