mtourville commited on
Commit
33af8c7
·
verified ·
1 Parent(s): 208c579

activate case studies button

Browse files
Files changed (3) hide show
  1. about.html +3 -2
  2. case-studies.html +258 -0
  3. index.html +3 -3
about.html CHANGED
@@ -34,9 +34,10 @@
34
  <a href="index.html" class="text-gray-600 hover:text-blue-600 transition">Home</a>
35
  <a href="services.html" class="text-gray-600 hover:text-blue-600 transition">Services</a>
36
  <a href="projects.html" class="text-gray-600 hover:text-blue-600 transition">Projects</a>
 
37
  <a href="about.html" class="text-blue-600 font-medium">About</a>
38
- <a href="#" class="text-gray-600 hover:text-blue-600 transition">Contact</a>
39
- <button class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded-md transition">Collaborate</button>
40
  </div>
41
  </div>
42
  <div class="md:hidden">
 
34
  <a href="index.html" class="text-gray-600 hover:text-blue-600 transition">Home</a>
35
  <a href="services.html" class="text-gray-600 hover:text-blue-600 transition">Services</a>
36
  <a href="projects.html" class="text-gray-600 hover:text-blue-600 transition">Projects</a>
37
+ <a href="case-studies.html" class="text-gray-600 hover:text-blue-600 transition">Case Studies</a>
38
  <a href="about.html" class="text-blue-600 font-medium">About</a>
39
+ <a href="contact.html" class="text-gray-600 hover:text-blue-600 transition">Contact</a>
40
+ <button class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded-md transition">Collaborate</button>
41
  </div>
42
  </div>
43
  <div class="md:hidden">
case-studies.html ADDED
@@ -0,0 +1,258 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Case Studies | 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
+ .case-study-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">
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="services.html" class="text-gray-600 hover:text-blue-600 transition">Services</a>
33
+ <a href="projects.html" class="text-gray-600 hover:text-blue-600 transition">Projects</a>
34
+ <a href="case-studies.html" class="text-blue-600 font-medium">Case Studies</a>
35
+ <a href="about.html" class="text-gray-600 hover:text-blue-600 transition">About</a>
36
+ <a href="contact.html" class="text-gray-600 hover:text-blue-600 transition">Contact</a>
37
+ <a href="#" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded-md transition">Collaborate</a>
38
+ </div>
39
+ </div>
40
+ <div class="md:hidden">
41
+ <button class="text-gray-600">
42
+ <i data-feather="menu"></i>
43
+ </button>
44
+ </div>
45
+ </div>
46
+ </div>
47
+ </nav>
48
+
49
+ <!-- Case Studies Header -->
50
+ <section class="pt-32 pb-16 px-4 sm:px-6 lg:px-8 bg-white bg-opacity-90">
51
+ <div class="max-w-7xl mx-auto text-center">
52
+ <h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6 text-gray-800">
53
+ Our <span class="text-blue-600">Success Stories</span>
54
+ </h1>
55
+ <p class="text-lg text-gray-600 mb-8 max-w-3xl mx-auto">
56
+ Explore how we've helped clients overcome complex engineering challenges in critical environments.
57
+ </p>
58
+ </div>
59
+ </section>
60
+
61
+ <!-- Case Studies Grid -->
62
+ <section class="py-16 px-4 sm:px-6 lg:px-8 bg-gray-50">
63
+ <div class="max-w-7xl mx-auto">
64
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
65
+ <!-- Case Study 1 -->
66
+ <div class="case-study-card bg-white rounded-xl border border-gray-100 transition duration-300 overflow-hidden">
67
+ <img src="http://static.photos/technology/1024x576/10" alt="Biotech Facility" class="w-full h-48 object-cover">
68
+ <div class="p-6">
69
+ <span class="text-blue-600 font-medium">PHARMACEUTICAL</span>
70
+ <h3 class="text-xl font-bold my-3">Biotech Cleanroom Expansion</h3>
71
+ <p class="text-gray-600 mb-4">
72
+ Designed ISO Class 5 cleanrooms for a leading biotech company, reducing energy consumption by 30% while improving particle counts.
73
+ </p>
74
+ <a href="#" class="text-blue-600 font-medium flex items-center">
75
+ Read Case Study <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
76
+ </a>
77
+ </div>
78
+ </div>
79
+
80
+ <!-- Case Study 2 -->
81
+ <div class="case-study-card bg-white rounded-xl border border-gray-100 transition duration-300 overflow-hidden">
82
+ <img src="http://static.photos/technology/1024x576/11" alt="Semiconductor Facility" class="w-full h-48 object-cover">
83
+ <div class="p-6">
84
+ <span class="text-blue-600 font-medium">MICROELECTRONICS</span>
85
+ <h3 class="text-xl font-bold my-3">300mm Wafer Fab Upgrade</h3>
86
+ <p class="text-gray-600 mb-4">
87
+ Retrofit of a semiconductor facility to support next-gen 300mm wafer processing with zero downtime during construction.
88
+ </p>
89
+ <a href="#" class="text-blue-600 font-medium flex items-center">
90
+ Read Case Study <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
91
+ </a>
92
+ </div>
93
+ </div>
94
+
95
+ <!-- Case Study 3 -->
96
+ <div class="case-study-card bg-white rounded-xl border border-gray-100 transition duration-300 overflow-hidden">
97
+ <img src="http://static.photos/technology/1024x576/12" alt="Research Lab" class="w-full h-48 object-cover">
98
+ <div class="p-6">
99
+ <span class="text-blue-600 font-medium">LIFE SCIENCES</span>
100
+ <h3 class="text-xl font-bold my-3">BSL-3 Research Laboratory</h3>
101
+ <p class="text-gray-600 mb-4">
102
+ Designed containment systems for a university research facility working with dangerous pathogens.
103
+ </p>
104
+ <a href="#" class="text-blue-600 font-medium flex items-center">
105
+ Read Case Study <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
106
+ </a>
107
+ </div>
108
+ </div>
109
+
110
+ <!-- Case Study 4 -->
111
+ <div class="case-study-card bg-white rounded-xl border border-gray-100 transition duration-300 overflow-hidden">
112
+ <img src="http://static.photos/technology/1024x576/13" alt="Data Center" class="w-full h-48 object-cover">
113
+ <div class="p-6">
114
+ <span class="text-blue-600 font-medium">DATA CENTER</span>
115
+ <h3 class="text-xl font-bold my-3">Tier IV Data Center</h3>
116
+ <p class="text-gray-600 mb-4">
117
+ Mission critical design for a financial services company requiring 99.995% uptime with full redundancy.
118
+ </p>
119
+ <a href="#" class="text-blue-600 font-medium flex items-center">
120
+ Read Case Study <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
121
+ </a>
122
+ </div>
123
+ </div>
124
+
125
+ <!-- Case Study 5 -->
126
+ <div class="case-study-card bg-white rounded-xl border border-gray-100 transition duration-300 overflow-hidden">
127
+ <img src="http://static.photos/technology/1024x576/14" alt="Manufacturing Facility" class="w-full h-48 object-cover">
128
+ <div class="p-6">
129
+ <span class="text-blue-600 font-medium">ADVANCED MANUFACTURING</span>
130
+ <h3 class="text-xl font-bold my-3">Battery Production Facility</h3>
131
+ <p class="text-gray-600 mb-4">
132
+ Designed dry room environment for lithium-ion battery production with dew point control at -60°F.
133
+ </p>
134
+ <a href="#" class="text-blue-600 font-medium flex items-center">
135
+ Read Case Study <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
136
+ </a>
137
+ </div>
138
+ </div>
139
+
140
+ <!-- Case Study 6 -->
141
+ <div class="case-study-card bg-white rounded-xl border border-gray-100 transition duration-300 overflow-hidden">
142
+ <img src="http://static.photos/technology/1024x576/15" alt="Hospital" class="w-full h-48 object-cover">
143
+ <div class="p-6">
144
+ <span class="text-blue-600 font-medium">HEALTHCARE</span>
145
+ <h3 class="text-xl font-bold my-3">Hospital Pharmacy Sterile Compounding</h3>
146
+ <p class="text-gray-600 mb-4">
147
+ USP 797/800 compliant design for a 500-bed hospital's central pharmacy sterile compounding suite.
148
+ </p>
149
+ <a href="#" class="text-blue-600 font-medium flex items-center">
150
+ Read Case Study <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
151
+ </a>
152
+ </div>
153
+ </div>
154
+ </div>
155
+ </div>
156
+ </section>
157
+
158
+ <!-- CTA Section -->
159
+ <section class="py-20 px-4 sm:px-6 lg:px-8 bg-blue-600 text-white">
160
+ <div class="max-w-7xl mx-auto text-center">
161
+ <h2 class="text-3xl font-bold mb-6">Need Solutions for Your Critical Environment?</h2>
162
+ <p class="text-blue-100 max-w-2xl mx-auto mb-8">
163
+ Our team of MEP specialists is ready to discuss your project requirements and deliver solutions that meet the most stringent industry standards.
164
+ </p>
165
+ <a href="contact.html" class="bg-white text-blue-600 hover:bg-blue-50 px-8 py-3 rounded-md font-medium transition inline-block">
166
+ Contact Our Team
167
+ </a>
168
+ </div>
169
+ </section>
170
+
171
+ <!-- Footer -->
172
+ <footer class="bg-gray-900 text-white py-16 px-4 sm:px-6 lg:px-8">
173
+ <div class="max-w-7xl mx-auto">
174
+ <div class="grid md:grid-cols-4 gap-12">
175
+ <div>
176
+ <div class="flex items-center mb-6">
177
+ <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">
178
+ <span class="ml-3 text-xl font-bold">Essential Engineering Design Build Partnership</span>
179
+ </div>
180
+ <p class="text-gray-400 mb-6">
181
+ Specialized MEP solutions for critical environments in pharmaceutical, microelectronics, and advanced manufacturing.
182
+ </p>
183
+ <div class="flex space-x-4">
184
+ <a href="#" class="text-gray-400 hover:text-white">
185
+ <i data-feather="linkedin"></i>
186
+ </a>
187
+ <a href="#" class="text-gray-400 hover:text-white">
188
+ <i data-feather="twitter"></i>
189
+ </a>
190
+ <a href="#" class="text-gray-400 hover:text-white">
191
+ <i data-feather="facebook"></i>
192
+ </a>
193
+ </div>
194
+ </div>
195
+
196
+ <div>
197
+ <h4 class="text-lg font-semibold mb-6">Services</h4>
198
+ <ul class="space-y-3">
199
+ <li><a href="services.html#cleanroom-design" class="text-gray-400 hover:text-white transition">Cleanroom Design</a></li>
200
+ <li><a href="services.html#hvac-systems" class="text-gray-400 hover:text-white transition">HVAC Systems</a></li>
201
+ <li><a href="services.html#process-piping" class="text-gray-400 hover:text-white transition">Process Piping</a></li>
202
+ <li><a href="services.html#electrical-systems" class="text-gray-400 hover:text-white transition">Electrical Systems</a></li>
203
+ </ul>
204
+ </div>
205
+
206
+ <div>
207
+ <h4 class="text-lg font-semibold mb-6">Resources</h4>
208
+ <ul class="space-y-3">
209
+ <li><a href="case-studies.html" class="text-gray-400 hover:text-white transition">Case Studies</a></li>
210
+ <li><a href="#" class="text-gray-400 hover:text-white transition">White Papers</a></li>
211
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Industry Standards</a></li>
212
+ <li><a href="#" class="text-gray-400 hover:text-white transition">FAQ</a></li>
213
+ </ul>
214
+ </div>
215
+
216
+ <div>
217
+ <h4 class="text-lg font-semibold mb-6">Contact</h4>
218
+ <address class="not-italic text-gray-400">
219
+ <p class="mb-3">456 Innovation Parkway</p>
220
+ <p class="mb-3">Sanford, NC 27330</p>
221
+ <p class="mb-3">Phone: (617) 555-7890</p>
222
+ <p>Email: contact@essentialeng.com</p>
223
+ </address>
224
+ </div>
225
+ </div>
226
+
227
+ <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
228
+ <p class="text-gray-500 text-sm mb-4 md:mb-0">
229
+ © 2023 Essential Engineering Design Build Partnership. All rights reserved.
230
+ </p>
231
+ <div class="flex space-x-6">
232
+ <a href="#" class="text-gray-500 hover:text-white text-sm">Privacy Policy</a>
233
+ <a href="#" class="text-gray-500 hover:text-white text-sm">Terms of Service</a>
234
+ </div>
235
+ </div>
236
+ </div>
237
+ </footer>
238
+
239
+ <script>
240
+ feather.replace();
241
+ VANTA.WAVES({
242
+ el: "#vanta-bg",
243
+ mouseControls: true,
244
+ touchControls: true,
245
+ gyroControls: false,
246
+ minHeight: 200.00,
247
+ minWidth: 200.00,
248
+ scale: 1.00,
249
+ scaleMobile: 1.00,
250
+ color: 0x3b82f6,
251
+ shininess: 35.00,
252
+ waveHeight: 15.00,
253
+ waveSpeed: 0.60,
254
+ zoom: 0.75
255
+ });
256
+ </script>
257
+ </body>
258
+ </html>
index.html CHANGED
@@ -74,10 +74,10 @@
74
  <button class="bg-blue-600 hover:bg-blue-700 text-white px-8 py-3 rounded-md transition">
75
  <a href="services.html">Our Services</a>
76
  </button>
77
- <button class="border border-blue-600 text-blue-600 hover:bg-blue-50 px-8 py-3 rounded-md transition">
78
  Case Studies
79
- </button>
80
- </div>
81
  </div>
82
  <div class="md:w-1/2">
83
  <div class="relative">
 
74
  <button class="bg-blue-600 hover:bg-blue-700 text-white px-8 py-3 rounded-md transition">
75
  <a href="services.html">Our Services</a>
76
  </button>
77
+ <a href="case-studies.html" class="border border-blue-600 text-blue-600 hover:bg-blue-50 px-8 py-3 rounded-md transition">
78
  Case Studies
79
+ </a>
80
+ </div>
81
  </div>
82
  <div class="md:w-1/2">
83
  <div class="relative">