Spaces:
Running
Running
File size: 23,335 Bytes
8a4ba77 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Global Talent Connect | London & America Recruitment</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.hero-slideshow {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
overflow: hidden;
}
.slide {
position: absolute;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
opacity: 0;
transition: opacity 1.5s ease-in-out;
}
.slide.active {
opacity: 1;
}
.slide-overlay {
background: rgba(0, 0, 0, 0.5);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.floating-card {
backdrop-filter: blur(10px);
background: rgba(255, 255, 255, 0.85);
}
.country-flag {
width: 30px;
height: 20px;
display: inline-block;
margin-right: 8px;
border-radius: 2px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.job-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.animate-bounce-slow {
animation: bounce-slow 3s infinite;
}
@keyframes bounce-slow {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}
</style>
</head>
<body class="font-sans antialiased text-gray-800">
<!-- Background Slideshow -->
<div class="hero-slideshow">
<div class="slide" style="background-image: url('https://images.unsplash.com/photo-1486299267070-83823f5448dd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80');"></div>
<div class="slide" style="background-image: url('https://images.unsplash.com/photo-1545048702-79362596cdc9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');"></div>
<div class="slide" style="background-image: url('https://images.unsplash.com/photo-1485871981521-5b1bd3805eee?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');"></div>
<div class="slide-overlay"></div>
</div>
<!-- Navigation -->
<nav class="relative z-10 py-4 px-6 md:px-12 flex justify-between items-center">
<div class="text-white font-bold text-2xl">
<span class="text-blue-400">Global</span>Talent
</div>
<div class="hidden md:flex space-x-8">
<a href="#" class="text-white hover:text-blue-300 transition">Home</a>
<a href="#" class="text-white hover:text-blue-300 transition">Jobs</a>
<a href="#" class="text-white hover:text-blue-300 transition">Employers</a>
<a href="#" class="text-white hover:text-blue-300 transition">Candidates</a>
<a href="#" class="text-white hover:text-blue-300 transition">Contact</a>
</div>
<div class="flex items-center space-x-4">
<button class="text-white hover:text-blue-300 transition">
<i class="fas fa-search"></i>
</button>
<button class="md:hidden text-white">
<i class="fas fa-bars"></i>
</button>
<button class="hidden md:block bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded-full transition">
Register
</button>
</div>
</nav>
<!-- Hero Section -->
<section class="relative min-h-screen flex items-center px-6 md:px-12 pt-16">
<div class="max-w-4xl mx-auto text-center z-10">
<h1 class="text-4xl md:text-6xl font-bold text-white mb-6 leading-tight">
Find Your Dream Job in <span class="text-blue-300">London</span> or <span class="text-red-300">America</span>
</h1>
<p class="text-xl text-gray-200 mb-10 max-w-2xl mx-auto">
We connect top talent with leading companies across the UK and USA. Start your international career journey today.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="bg-blue-500 hover:bg-blue-600 text-white px-8 py-4 rounded-full text-lg font-semibold transition flex items-center justify-center">
<i class="fas fa-briefcase mr-2"></i> Find Jobs
</button>
<button class="bg-white hover:bg-gray-100 text-blue-500 px-8 py-4 rounded-full text-lg font-semibold transition flex items-center justify-center">
<i class="fas fa-user-tie mr-2"></i> Hire Talent
</button>
</div>
</div>
<div class="absolute bottom-10 left-0 right-0 flex justify-center animate-bounce-slow">
<a href="#jobs" class="text-white text-2xl">
<i class="fas fa-chevron-down"></i>
</a>
</div>
</section>
<!-- Stats Section -->
<section class="py-16 bg-white">
<div class="container mx-auto px-6 md:px-12">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 text-center">
<div class="p-6">
<div class="text-4xl font-bold text-blue-500 mb-2">5,000+</div>
<div class="text-gray-600">Jobs Available</div>
</div>
<div class="p-6">
<div class="text-4xl font-bold text-blue-500 mb-2">1,200+</div>
<div class="text-gray-600">Companies Hiring</div>
</div>
<div class="p-6">
<div class="text-4xl font-bold text-blue-500 mb-2">85%</div>
<div class="text-gray-600">Success Rate</div>
</div>
<div class="p-6">
<div class="text-4xl font-bold text-blue-500 mb-2">24h</div>
<div class="text-gray-600">Average Response Time</div>
</div>
</div>
</div>
</section>
<!-- Featured Jobs -->
<section id="jobs" class="py-16 bg-gray-50">
<div class="container mx-auto px-6 md:px-12">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Featured Opportunities</h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Browse our latest job openings in London and major US cities
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Job Card 1 -->
<div class="job-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
<div class="p-6">
<div class="flex justify-between items-start mb-4">
<div>
<span class="country-flag bg-[url('https://flagcdn.com/w20/gb.png')]"></span>
<span class="text-sm text-gray-500">London, UK</span>
</div>
<span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">Full-time</span>
</div>
<h3 class="text-xl font-bold mb-2">Senior Software Engineer</h3>
<p class="text-gray-600 mb-4">Leading fintech company looking for experienced developers to join their London team.</p>
<div class="flex justify-between items-center">
<span class="font-semibold text-blue-500">£75,000 - £90,000</span>
<button class="text-blue-500 hover:text-blue-700">
<i class="fas fa-arrow-right"></i>
</button>
</div>
</div>
</div>
<!-- Job Card 2 -->
<div class="job-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
<div class="p-6">
<div class="flex justify-between items-start mb-4">
<div>
<span class="country-flag bg-[url('https://flagcdn.com/w20/us.png')]"></span>
<span class="text-sm text-gray-500">New York, USA</span>
</div>
<span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded-full">Remote</span>
</div>
<h3 class="text-xl font-bold mb-2">Marketing Director</h3>
<p class="text-gray-600 mb-4">Global agency seeks marketing leader to oversee US and European campaigns.</p>
<div class="flex justify-between items-center">
<span class="font-semibold text-blue-500">$120,000 - $150,000</span>
<button class="text-blue-500 hover:text-blue-700">
<i class="fas fa-arrow-right"></i>
</button>
</div>
</div>
</div>
<!-- Job Card 3 -->
<div class="job-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
<div class="p-6">
<div class="flex justify-between items-start mb-4">
<div>
<span class="country-flag bg-[url('https://flagcdn.com/w20/gb.png')]"></span>
<span class="text-sm text-gray-500">Manchester, UK</span>
</div>
<span class="bg-yellow-100 text-yellow-800 text-xs px-2 py-1 rounded-full">Contract</span>
</div>
<h3 class="text-xl font-bold mb-2">UX/UI Designer</h3>
<p class="text-gray-600 mb-4">6-month contract with potential to extend for talented designer at digital agency.</p>
<div class="flex justify-between items-center">
<span class="font-semibold text-blue-500">£350 - £450/day</span>
<button class="text-blue-500 hover:text-blue-700">
<i class="fas fa-arrow-right"></i>
</button>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<button class="border-2 border-blue-500 text-blue-500 hover:bg-blue-500 hover:text-white px-8 py-3 rounded-full font-semibold transition">
View All Opportunities
</button>
</div>
</div>
</section>
<!-- How It Works -->
<section class="py-16 bg-white">
<div class="container mx-auto px-6 md:px-12">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">How It Works</h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Our simple 3-step process to connect you with the right opportunity
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="text-center p-6">
<div class="w-20 h-20 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-user-edit text-blue-500 text-3xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Create Your Profile</h3>
<p class="text-gray-600">Register and complete your professional profile to showcase your skills and experience.</p>
</div>
<div class="text-center p-6">
<div class="w-20 h-20 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-search text-blue-500 text-3xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Find Opportunities</h3>
<p class="text-gray-600">Browse our curated job listings or let our recruiters match you with suitable roles.</p>
</div>
<div class="text-center p-6">
<div class="w-20 h-20 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-handshake text-blue-500 text-3xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Get Hired</h3>
<p class="text-gray-600">We'll guide you through the interview process and help negotiate your ideal package.</p>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-6 md:px-12">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Success Stories</h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Hear from candidates who found their dream jobs through us
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="floating-card p-8 rounded-xl shadow-lg">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah J." class="w-16 h-16 rounded-full mr-4">
<div>
<h4 class="font-bold">Sarah J.</h4>
<p class="text-gray-600">Product Manager, London</p>
</div>
</div>
<p class="text-gray-700 mb-4">
"Global Talent Connect helped me secure a fantastic role in London within 3 weeks of registering. Their knowledge of the UK job market was invaluable."
</p>
<div class="text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<div class="floating-card p-8 rounded-xl shadow-lg">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael T." class="w-16 h-16 rounded-full mr-4">
<div>
<h4 class="font-bold">Michael T.</h4>
<p class="text-gray-600">Data Scientist, San Francisco</p>
</div>
</div>
<p class="text-gray-700 mb-4">
"As an international candidate, I was worried about the US visa process. The team guided me through every step and negotiated a great relocation package."
</p>
<div class="text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 bg-gradient-to-r from-blue-500 to-blue-600 text-white">
<div class="container mx-auto px-6 md:px-12 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready for Your Next Career Move?</h2>
<p class="text-xl text-blue-100 mb-8 max-w-2xl mx-auto">
Join thousands of professionals who found their ideal roles through our network.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="bg-white hover:bg-gray-100 text-blue-500 px-8 py-4 rounded-full text-lg font-semibold transition">
Register Now
</button>
<button class="border-2 border-white hover:bg-white hover:bg-opacity-10 text-white px-8 py-4 rounded-full text-lg font-semibold transition">
Contact Our Team
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-6 md:px-12">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-bold mb-4">
<span class="text-blue-400">Global</span>Talent
</h3>
<p class="text-gray-400">
Connecting exceptional talent with leading companies in London and across America since 2010.
</p>
</div>
<div>
<h4 class="font-bold mb-4">For Candidates</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Browse Jobs</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Career Advice</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Visa Guidance</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Salary Calculator</a></li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">For Employers</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Post a Job</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Browse Candidates</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Recruitment Solutions</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Employer Resources</a></li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">Contact Us</h4>
<address class="not-italic text-gray-400">
<p class="mb-2">123 Recruitment Lane</p>
<p class="mb-2">London, EC1A 1AA</p>
<p class="mb-2">+44 20 1234 5678</p>
<p class="mb-4">hello@globaltalent.com</p>
</address>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-500 text-sm mb-4 md:mb-0">
© 2023 Global Talent Connect. All rights reserved.
</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-500 hover:text-white text-sm transition">Privacy Policy</a>
<a href="#" class="text-gray-500 hover:text-white text-sm transition">Terms of Service</a>
<a href="#" class="text-gray-500 hover:text-white text-sm transition">Cookie Policy</a>
</div>
</div>
</div>
</footer>
<script>
// Background Slideshow
document.addEventListener('DOMContentLoaded', function() {
const slides = document.querySelectorAll('.slide');
let currentSlide = 0;
function showSlide(n) {
slides.forEach(slide => slide.classList.remove('active'));
currentSlide = (n + slides.length) % slides.length;
slides[currentSlide].classList.add('active');
}
function nextSlide() {
showSlide(currentSlide + 1);
}
// Start slideshow
showSlide(0);
setInterval(nextSlide, 5000);
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
}
});
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=mahen23/recruitment" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |