Spaces:
Running
Running
TeacherPuffy
commited on
Update index.html
Browse files- index.html +346 -19
index.html
CHANGED
@@ -1,19 +1,346 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>BirdL - Technical Research Firm</title>
|
7 |
+
<style>
|
8 |
+
body {
|
9 |
+
font-family: 'Helvetica', 'Arial', sans-serif;
|
10 |
+
margin: 0;
|
11 |
+
padding: 0;
|
12 |
+
background-color: #f4f4f4;
|
13 |
+
color: #333;
|
14 |
+
overflow-x: hidden;
|
15 |
+
transition: background-color 0.5s ease;
|
16 |
+
}
|
17 |
+
header {
|
18 |
+
background-color: #d2b48c;
|
19 |
+
color: #fff;
|
20 |
+
padding: 20px 0;
|
21 |
+
text-align: center;
|
22 |
+
border-bottom: 2px solid #8b4513;
|
23 |
+
position: relative;
|
24 |
+
overflow: hidden;
|
25 |
+
transition: background-color 0.5s ease;
|
26 |
+
}
|
27 |
+
.container {
|
28 |
+
width: 80%;
|
29 |
+
margin: 0 auto;
|
30 |
+
padding: 20px;
|
31 |
+
transition: opacity 0.5s ease;
|
32 |
+
}
|
33 |
+
.intro, .leadership, .research-goals, .about, .blog, .study-areas, .research-methods, .operations {
|
34 |
+
background-color: #fff;
|
35 |
+
padding: 20px;
|
36 |
+
margin: 20px 0;
|
37 |
+
border-radius: 5px;
|
38 |
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
39 |
+
position: relative;
|
40 |
+
overflow: hidden;
|
41 |
+
transition: opacity 0.5s ease;
|
42 |
+
}
|
43 |
+
.leadership img {
|
44 |
+
max-width: 150px;
|
45 |
+
border-radius: 50%;
|
46 |
+
margin-right: 20px;
|
47 |
+
float: left;
|
48 |
+
}
|
49 |
+
.research-goals ul, .study-areas ul, .research-methods ul, .operations ul {
|
50 |
+
list-style-type: none;
|
51 |
+
padding: 0;
|
52 |
+
}
|
53 |
+
.research-goals ul li, .study-areas ul li, .research-methods ul li, .operations ul li {
|
54 |
+
margin-bottom: 10px;
|
55 |
+
background-color: #f8f8f8;
|
56 |
+
padding: 10px;
|
57 |
+
border-radius: 5px;
|
58 |
+
}
|
59 |
+
.blog ul {
|
60 |
+
list-style-type: none;
|
61 |
+
padding: 0;
|
62 |
+
}
|
63 |
+
.blog ul li {
|
64 |
+
margin-bottom: 10px;
|
65 |
+
}
|
66 |
+
.blog ul li a {
|
67 |
+
text-decoration: none;
|
68 |
+
color: #333;
|
69 |
+
font-weight: bold;
|
70 |
+
}
|
71 |
+
.blog ul li a:hover {
|
72 |
+
text-decoration: underline;
|
73 |
+
}
|
74 |
+
.social-links {
|
75 |
+
margin-top: 20px;
|
76 |
+
text-align: center;
|
77 |
+
}
|
78 |
+
.social-links a {
|
79 |
+
margin-right: 10px;
|
80 |
+
text-decoration: none;
|
81 |
+
color: #333;
|
82 |
+
font-weight: bold;
|
83 |
+
}
|
84 |
+
.social-links a:hover {
|
85 |
+
text-decoration: underline;
|
86 |
+
}
|
87 |
+
.graphic {
|
88 |
+
position: absolute;
|
89 |
+
top: 0;
|
90 |
+
right: 0;
|
91 |
+
width: 100px;
|
92 |
+
height: 100px;
|
93 |
+
background-color: #8b4513;
|
94 |
+
clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
|
95 |
+
animation: rotate 10s infinite linear;
|
96 |
+
}
|
97 |
+
@keyframes rotate {
|
98 |
+
from {
|
99 |
+
transform: rotate(0deg);
|
100 |
+
}
|
101 |
+
to {
|
102 |
+
transform: rotate(360deg);
|
103 |
+
}
|
104 |
+
}
|
105 |
+
.graphic-drone {
|
106 |
+
position: absolute;
|
107 |
+
bottom: 0;
|
108 |
+
left: 0;
|
109 |
+
width: 100px;
|
110 |
+
height: 100px;
|
111 |
+
background-color: #d2b48c;
|
112 |
+
clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
|
113 |
+
animation: hover 5s infinite ease-in-out;
|
114 |
+
}
|
115 |
+
@keyframes hover {
|
116 |
+
0%, 100% {
|
117 |
+
transform: translateY(0);
|
118 |
+
}
|
119 |
+
50% {
|
120 |
+
transform: translateY(-20px);
|
121 |
+
}
|
122 |
+
}
|
123 |
+
.graphic-phone {
|
124 |
+
position: absolute;
|
125 |
+
top: 50%;
|
126 |
+
left: 50%;
|
127 |
+
width: 50px;
|
128 |
+
height: 100px;
|
129 |
+
background-color: #8b4513;
|
130 |
+
clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
|
131 |
+
animation: slide 10s infinite linear;
|
132 |
+
}
|
133 |
+
@keyframes slide {
|
134 |
+
0%, 100% {
|
135 |
+
transform: translateX(0);
|
136 |
+
}
|
137 |
+
50% {
|
138 |
+
transform: translateX(20px);
|
139 |
+
}
|
140 |
+
}
|
141 |
+
.graphic-foxconn {
|
142 |
+
position: absolute;
|
143 |
+
top: 20%;
|
144 |
+
left: -50px;
|
145 |
+
width: 100px;
|
146 |
+
height: 100px;
|
147 |
+
background-color: #8b4513;
|
148 |
+
clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
|
149 |
+
animation: slide-left 10s infinite linear;
|
150 |
+
}
|
151 |
+
@keyframes slide-left {
|
152 |
+
0%, 100% {
|
153 |
+
transform: translateX(0);
|
154 |
+
}
|
155 |
+
50% {
|
156 |
+
transform: translateX(20px);
|
157 |
+
}
|
158 |
+
}
|
159 |
+
.graphic-dji {
|
160 |
+
position: absolute;
|
161 |
+
bottom: 20%;
|
162 |
+
right: -50px;
|
163 |
+
width: 100px;
|
164 |
+
height: 100px;
|
165 |
+
background-color: #d2b48c;
|
166 |
+
clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
|
167 |
+
animation: slide-right 10s infinite linear;
|
168 |
+
}
|
169 |
+
@keyframes slide-right {
|
170 |
+
0%, 100% {
|
171 |
+
transform: translateX(0);
|
172 |
+
}
|
173 |
+
50% {
|
174 |
+
transform: translateX(-20px);
|
175 |
+
}
|
176 |
+
}
|
177 |
+
.graphic-side {
|
178 |
+
position: fixed;
|
179 |
+
top: 0;
|
180 |
+
width: 50px;
|
181 |
+
height: 100%;
|
182 |
+
background-color: #8b4513;
|
183 |
+
clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
|
184 |
+
animation: slide-side 10s infinite linear;
|
185 |
+
}
|
186 |
+
.graphic-side-left {
|
187 |
+
left: 0;
|
188 |
+
}
|
189 |
+
.graphic-side-right {
|
190 |
+
right: 0;
|
191 |
+
}
|
192 |
+
@keyframes slide-side {
|
193 |
+
0%, 100% {
|
194 |
+
transform: translateY(0);
|
195 |
+
}
|
196 |
+
50% {
|
197 |
+
transform: translateY(20px);
|
198 |
+
}
|
199 |
+
}
|
200 |
+
</style>
|
201 |
+
</head>
|
202 |
+
<body>
|
203 |
+
|
204 |
+
<header>
|
205 |
+
<h1>BirdL - Technical Research Firm</h1>
|
206 |
+
<p>Deep Dive Analysis on Electronics Assembly, Machinery Advancement, and Low Altitude Economy</p>
|
207 |
+
<div class="graphic"></div>
|
208 |
+
<div class="graphic-drone"></div>
|
209 |
+
<div class="graphic-phone"></div>
|
210 |
+
<div class="graphic-foxconn"></div>
|
211 |
+
<div class="graphic-dji"></div>
|
212 |
+
<div class="graphic-side graphic-side-left"></div>
|
213 |
+
<div class="graphic-side graphic-side-right"></div>
|
214 |
+
</header>
|
215 |
+
|
216 |
+
<div class="container">
|
217 |
+
|
218 |
+
<div class="intro">
|
219 |
+
<h2>Welcome to BirdL</h2>
|
220 |
+
<p>At BirdL, we specialize in providing in-depth analysis and research on the development of electronics within China. Our focus areas include electronics assembly, machinery advancement, and the emerging low altitude economy. We aim to provide valuable insights and strategic guidance to our clients.</p>
|
221 |
+
</div>
|
222 |
+
|
223 |
+
<div class="leadership">
|
224 |
+
<h2>Leadership</h2>
|
225 |
+
<div>
|
226 |
+
<img src="placeholder_image.jpg" alt="Julian Herrera">
|
227 |
+
<h3>Julian Herrera - Founder & CEO</h3>
|
228 |
+
<p>Julian Herrera is a seasoned industry expert with over 20 years of experience in technical research and analysis. His vision and leadership have been instrumental in establishing BirdL as a leading research firm in the electronics and machinery sectors.</p>
|
229 |
+
</div>
|
230 |
+
</div>
|
231 |
+
|
232 |
+
<div class="research-goals">
|
233 |
+
<h2>Research Goals</h2>
|
234 |
+
<ul>
|
235 |
+
<li><strong>Electronics Assembly Analysis:</strong> Provide comprehensive research on the latest trends and technologies in electronics assembly.</li>
|
236 |
+
<li><strong>Machinery Advancement:</strong> Offer insights into the advancements in machinery and manufacturing processes.</li>
|
237 |
+
<li><strong>Low Altitude Economy:</strong> Explore the economic opportunities and challenges in the low altitude sector.</li>
|
238 |
+
<li><strong>Strategic Guidance:</strong> Deliver actionable insights and strategic guidance to help clients navigate the complex technological landscape.</li>
|
239 |
+
</ul>
|
240 |
+
</div>
|
241 |
+
|
242 |
+
<div class="study-areas">
|
243 |
+
<h2>Areas of Study</h2>
|
244 |
+
<ul>
|
245 |
+
<li><strong>Electronics Assembly:</strong> Detailed analysis of the latest trends and technologies in electronics assembly.</li>
|
246 |
+
<li><strong>Machinery Advancement:</strong> Insights into the advancements in machinery and manufacturing processes.</li>
|
247 |
+
<li><strong>Low Altitude Economy:</strong> Exploration of the economic opportunities and challenges in the low altitude sector.</li>
|
248 |
+
</ul>
|
249 |
+
</div>
|
250 |
+
|
251 |
+
<div class="research-methods">
|
252 |
+
<h2>Research Methods</h2>
|
253 |
+
<ul>
|
254 |
+
<li>
|
255 |
+
<h3>Electronics Assembly</h3>
|
256 |
+
<p>Our research in electronics assembly involves:</p>
|
257 |
+
<ul>
|
258 |
+
<li>Industry surveys and interviews with key stakeholders.</li>
|
259 |
+
<li>Analysis of patent filings and technological advancements.</li>
|
260 |
+
<li>Case studies of leading electronics manufacturers in China.</li>
|
261 |
+
</ul>
|
262 |
+
</li>
|
263 |
+
<li>
|
264 |
+
<h3>Machinery Advancement</h3>
|
265 |
+
<p>Our research in machinery advancement involves:</p>
|
266 |
+
<ul>
|
267 |
+
<li>Benchmarking against global standards and best practices.</li>
|
268 |
+
<li>Collaboration with academic institutions and research labs.</li>
|
269 |
+
<li>Field studies and factory visits to understand real-world applications.</li>
|
270 |
+
</ul>
|
271 |
+
</li>
|
272 |
+
<li>
|
273 |
+
<h3>Low Altitude Economy</h3>
|
274 |
+
<p>Our research in the low altitude economy involves:</p>
|
275 |
+
<ul>
|
276 |
+
<li>Policy analysis and regulatory landscape assessment.</li>
|
277 |
+
<li>Market sizing and demand forecasting.</li>
|
278 |
+
<li>Case studies of successful low altitude economy projects.</li>
|
279 |
+
</ul>
|
280 |
+
</li>
|
281 |
+
</ul>
|
282 |
+
</div>
|
283 |
+
|
284 |
+
<div class="operations">
|
285 |
+
<h2>Operations</h2>
|
286 |
+
<ul>
|
287 |
+
<li><strong>Dongguan:</strong> Our primary research and development center, focusing on electronics assembly and machinery advancement.</li>
|
288 |
+
<li><strong>Foshan:</strong> Our secondary research hub, specializing in low altitude economy and strategic guidance.</li>
|
289 |
+
<li><strong>La Quinta, CA:</strong> Our North American operations base, facilitating international collaboration and client engagement.</li>
|
290 |
+
</ul>
|
291 |
+
</div>
|
292 |
+
|
293 |
+
<div class="about">
|
294 |
+
<h2>About Us</h2>
|
295 |
+
<p>BirdL is a leading technical research firm dedicated to understanding and analyzing the complex landscape of electronics development in China. Our team of experts combines industry knowledge with analytical rigor to deliver actionable insights. We are committed to helping our clients navigate the ever-evolving technological landscape.</p>
|
296 |
+
</div>
|
297 |
+
|
298 |
+
<div class="blog">
|
299 |
+
<h2>Blog</h2>
|
300 |
+
<ul>
|
301 |
+
<li><a href="blog_post1.html">Latest Trends in Electronics Assembly</a></li>
|
302 |
+
<li><a href="blog_post2.html">Advancements in Machinery Technology</a></li>
|
303 |
+
<li><a href="blog_post3.html">The Future of the Low Altitude Economy</a></li>
|
304 |
+
</ul>
|
305 |
+
</div>
|
306 |
+
|
307 |
+
<div class="social-links">
|
308 |
+
<h2>Follow Us</h2>
|
309 |
+
<a href="https://twitter.com/BirdLTechHQ" target="_blank">BirdLTechHQ on X</a>
|
310 |
+
<a href="https://github.com/BirdLabortories" target="_blank">BirdLabortories on GitHub</a>
|
311 |
+
</div>
|
312 |
+
|
313 |
+
</div>
|
314 |
+
|
315 |
+
<script>
|
316 |
+
// Smooth scrolling for anchor links
|
317 |
+
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
318 |
+
anchor.addEventListener('click', function (e) {
|
319 |
+
e.preventDefault();
|
320 |
+
|
321 |
+
document.querySelector(this.getAttribute('href')).scrollIntoView({
|
322 |
+
behavior: 'smooth'
|
323 |
+
});
|
324 |
+
});
|
325 |
+
});
|
326 |
+
|
327 |
+
// Fade in sections on scroll
|
328 |
+
const sections = document.querySelectorAll('.intro, .leadership, .research-goals, .about, .blog, .study-areas, .research-methods, .operations');
|
329 |
+
|
330 |
+
const observer = new IntersectionObserver(entries => {
|
331 |
+
entries.forEach(entry => {
|
332 |
+
if (entry.isIntersecting) {
|
333 |
+
entry.target.style.opacity = 1;
|
334 |
+
} else {
|
335 |
+
entry.target.style.opacity = 0;
|
336 |
+
}
|
337 |
+
});
|
338 |
+
}, { threshold: 0.1 });
|
339 |
+
|
340 |
+
sections.forEach(section => {
|
341 |
+
observer.observe(section);
|
342 |
+
});
|
343 |
+
</script>
|
344 |
+
|
345 |
+
</body>
|
346 |
+
</html>
|