<title>gibwork</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: #ffffff;
color: #1a1a1a;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 50px;
background-color: #ffffff;
box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}
.logo {
display: flex;
align-items: center;
gap: 8px;
font-size: 24px;
font-weight: bold;
}
.logo-icon {
background-color: #7c3aed;
color: white;
padding: 4px 8px;
border-radius: 8px;
font-size: 18px;
}
nav ul {
display: flex;
list-style: none;
gap: 25px;
}
nav a {
text-decoration: none;
color: #6b7280;
font-size: 13px;
font-weight: 600;
letter-spacing: 0.5px;
}
.nav-right {
display: flex;
align-items: center;
gap: 20px;
}
.social-icons {
display: flex;
gap: 15px;
color: #1a1a1a;
font-size: 16px;
}
.open-app-btn {
background-color: #7c3aed;
color: white;
border: none;
padding: 10px 20px;
border-radius: 20px;
font-weight: 600;
cursor: pointer;
}
.hero {
text-align: center;
padding: 60px 20px 30px;
max-width: 800px;
margin: 0 auto;
}
.badge {
display: inline-block;
background-color: #f3f4f6;
color: #4b5563;
padding: 4px 12px;
border-radius: 15px;
font-size: 12px;
margin-bottom: 20px;
}
.hero h1 {
font-size: 48px;
font-weight: 800;
margin-bottom: 15px;
color: #000000;
}
.hero p {
color: #6b7280;
font-size: 16px;
line-height: 1.5;
margin-bottom: 30px;
}
.cta-btn {
background-color: #7c3aed;
color: white;
border: none;
padding: 12px 28px;
border-radius: 12px;
font-weight: 600;
font-size: 15px;
cursor: pointer;
margin-bottom: 20px;
}
.powered-by {
font-size: 12px;
color: #6b7280;
margin-bottom: 40px;
}
.powered-by span {
font-weight: bold;
color: #000;
letter-spacing: 1px;
}
.download-section {
display: flex;
justify-content: center;
align-items: center;
gap: 40px;
margin-bottom: 50px;
}
.store-buttons {
display: flex;
flex-direction: column;
gap: 15px;
}
.store-btn {
background: linear-gradient(135deg, #a78bfa, #7c3aed);
width: 180px;
padding: 10px;
border-radius: 10px;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
.store-btn img {
height: 35px;
}
.qr-box {
text-align: center;
}
.qr-box p {
font-size: 14px;
font-weight: 600;
margin-bottom: 8px;
}
.qr-box img {
width: 100px;
height: 100px;
}
</style>
<!-- Header Section -->
<header>
<div class="logo">
<span class="logo-icon">W</span> gibwork
</div>
<nav>
<ul>
<li><a href="#">ABOUT</a></li>
<li><a href="#">TESTIMONIAL</a></li>
<li><a href="#">FAQ</a></li>
<li><a href="#">DOCS</a></li>
</ul>
</nav>
<div class="nav-right">
<div class="social-icons">
<i class="fa-brands fa-youtube"></i>
<i class="fa-brands fa-discord"></i>
<i class="fa-brands fa-x-twitter"></i>
</div>
<button class="open-app-btn">Open App</button>
</div>
</header>
<!-- Hero Content -->
<section class="hero">
<div class="badge">✦ Introducing gibwork ✦</div>
<h1>Find Talent, Find Work</h1>
<p>Whether you're searching for your next gig or seeking skilled individuals, our platform connects you with the perfect match.</p>
<button class="cta-btn">Get Started For Free</button>
<div class="powered-by">powered by <span>SOLANA</span></div>
</section>
<!-- Download Section -->
<div class="download-section">
<div class="store-buttons">
<div class="store-btn">
<i class="fa-brands fa-apple" style="font-size: 30px; color: white; margin-right: 10px;"></i>
<div style="color: white; text-align: left; font-size: 10px;">
Download on the<br><strong style="font-size: 13px;">App Store</strong>
</div>
</div>
<div class="store-btn">
<i class="fa-brands fa-google-play" style="font-size: 24px; color: white; margin-right: 10px;"></i>
<div style="color: white; text-align: left; font-size: 10px;">
Download on the<br><strong style="font-size: 13px;">Play Store</strong>
</div>
</div>
</div>
<div class="qr-box">
<p>Scan to get the<br>App</p>
<img src="https://api.qrserver.com/v1/create-qr-code/?size=100x100&data=https://gibwork.com" alt="QR Code">
</div>
</div>
