Spaces:
Running
Running
File size: 31,981 Bytes
00a4c47 | 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 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Romeo Kango | World-Class Copywriter</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-gradient {
background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
}
.testimonial-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.typewriter {
overflow: hidden;
border-right: .15em solid #fff;
white-space: nowrap;
margin: 0 auto;
letter-spacing: .15em;
animation:
typing 3.5s steps(40, end),
blink-caret .75s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: #fff; }
}
.floating {
animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
</style>
</head>
<body class="font-sans antialiased text-gray-800">
<!-- Navigation -->
<nav class="bg-white shadow-lg sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<span class="text-indigo-600 font-bold text-2xl">RK</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#about" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">About</a>
<a href="#testimonials" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Testimonials</a>
<a href="#work" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Work</a>
<a href="#contact" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Contact</a>
<a href="#hire" class="bg-indigo-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-700 transition duration-300">Hire Me</a>
</div>
<div class="-mr-2 flex items-center md:hidden">
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-controls="mobile-menu" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-gradient text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 md:py-32">
<div class="md:flex items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Romeo Kango</h1>
<h2 class="text-2xl md:text-3xl font-semibold mb-6 typewriter">The World's Most Persuasive Wordsmith</h2>
<p class="text-xl mb-8">I craft words that don't just sell - they create movements, build empires, and change lives.</p>
<div class="flex space-x-4">
<a href="#work" class="bg-white text-indigo-600 px-6 py-3 rounded-md text-lg font-semibold hover:bg-gray-100 transition duration-300">See My Work</a>
<a href="#contact" class="border-2 border-white text-white px-6 py-3 rounded-md text-lg font-semibold hover:bg-white hover:text-indigo-600 transition duration-300">Hire Me</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative">
<img src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Romeo Kango" class="rounded-full h-64 w-64 md:h-80 md:w-80 object-cover border-4 border-white floating shadow-2xl">
<div class="absolute -bottom-5 -right-5 bg-yellow-400 text-gray-900 px-4 py-2 rounded-full font-bold shadow-lg">
<i class="fas fa-trophy mr-2"></i>#1 Copywriter
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="bg-gray-50 py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 text-center">
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="text-4xl font-bold text-indigo-600 mb-2">$287M+</div>
<div class="text-gray-600">Generated in Sales</div>
</div>
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="text-4xl font-bold text-indigo-600 mb-2">12+</div>
<div class="text-gray-600">Years Experience</div>
</div>
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="text-4xl font-bold text-indigo-600 mb-2">642%</div>
<div class="text-gray-600">Highest Conversion Lift</div>
</div>
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="text-4xl font-bold text-indigo-600 mb-2">97%</div>
<div class="text-gray-600">Client Retention</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">The Gary Halbert of Our Generation</h2>
<div class="w-20 h-1 bg-indigo-600 mx-auto"></div>
</div>
<div class="md:flex items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<img src="https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Romeo Kango working" class="rounded-xl shadow-xl">
</div>
<div class="md:w-1/2 md:pl-12">
<p class="text-lg mb-6">When Gary Halbert passed, the direct response world lost its greatest wordsmith. For years, marketers searched for someone who could fill that void. Then came Romeo Kango.</p>
<p class="text-lg mb-6">Romeo doesn't just write copy - he engineers psychological triggers that bypass resistance and create insatiable desire. His words don't just persuade, they hypnotize.</p>
<p class="text-lg mb-6">With a background in cognitive psychology and 12 years of direct response marketing experience, Romeo combines the art of persuasion with the science of human behavior to create copy that consistently outperforms industry benchmarks by 300-600%.</p>
<div class="bg-indigo-50 border-l-4 border-indigo-600 p-4 mb-6">
<p class="text-indigo-800 italic">"Romeo's copy doesn't just sell products - it creates customers who feel like they've discovered something life-changing. That's the mark of true mastery."</p>
<p class="text-indigo-600 font-semibold mt-2">- David Ogilvy Jr.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">What Legends Say About Romeo</h2>
<div class="w-20 h-1 bg-indigo-600 mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-white p-8 rounded-xl shadow-md testimonial-card transition duration-300">
<div class="flex items-center mb-4">
<img src="https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Client" class="w-12 h-12 rounded-full object-cover">
<div class="ml-4">
<h4 class="font-bold">Sarah Johnson</h4>
<p class="text-gray-600">CEO, TechStart Inc.</p>
</div>
</div>
<p class="text-gray-700 mb-4">"We tested Romeo's copy against our in-house team and 3 other 'A-list' copywriters. His version outperformed everyone by 642%. That's not a typo - six hundred forty-two percent. I've never seen anything like it in my 20 years in marketing."</p>
<div class="flex 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>
<!-- Testimonial 2 -->
<div class="bg-white p-8 rounded-xl shadow-md testimonial-card transition duration-300">
<div class="flex items-center mb-4">
<img src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Client" class="w-12 h-12 rounded-full object-cover">
<div class="ml-4">
<h4 class="font-bold">Michael Rodriguez</h4>
<p class="text-gray-600">Founder, GrowthHack Labs</p>
</div>
</div>
<p class="text-gray-700 mb-4">"I've worked with every big name in copywriting - from Schwartz to Kennedy to Halbert. Romeo is better. Period. His control for our supplement line has been running unchanged for 4 years and has generated over $87M in sales. That's Gary Halbert-level control longevity."</p>
<div class="flex 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>
<!-- Testimonial 3 -->
<div class="bg-white p-8 rounded-xl shadow-md testimonial-card transition duration-300">
<div class="flex items-center mb-4">
<img src="https://images.unsplash.com/photo-1580489944761-15a19d654956?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=761&q=80" alt="Client" class="w-12 h-12 rounded-full object-cover">
<div class="ml-4">
<h4 class="font-bold">Emily Chen</h4>
<p class="text-gray-600">CMO, Fortune 500 Company</p>
</div>
</div>
<p class="text-gray-700 mb-4">"We paid $250,000 for a single sales letter from Romeo. Best investment we ever made. It's generated over $14M so far and shows no signs of slowing down. Our board calls it 'the money printer'."</p>
<div class="flex 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>
<!-- Testimonial 4 -->
<div class="bg-white p-8 rounded-xl shadow-md testimonial-card transition duration-300">
<div class="flex items-center mb-4">
<img src="https://images.unsplash.com/photo-1568602471122-7832951cc4c5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Client" class="w-12 h-12 rounded-full object-cover">
<div class="ml-4">
<h4 class="font-bold">James Wilson</h4>
<p class="text-gray-600">Serial Entrepreneur</p>
</div>
</div>
<p class="text-gray-700 mb-4">"Romeo took my failing SaaS business and with one email sequence turned it into a $3M/year cash cow. His understanding of human psychology is unparalleled. He's the only copywriter I know who can make people feel like they're missing out if they don't buy."</p>
<div class="flex 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>
<!-- Testimonial 5 -->
<div class="bg-white p-8 rounded-xl shadow-md testimonial-card transition duration-300">
<div class="flex items-center mb-4">
<img src="https://images.unsplash.com/photo-1544725176-7c40e5a71c5e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1467&q=80" alt="Client" class="w-12 h-12 rounded-full object-cover">
<div class="ml-4">
<h4 class="font-bold">Robert Clayton</h4>
<p class="text-gray-600">Former Student of Gary Halbert</p>
</div>
</div>
<p class="text-gray-700 mb-4">"I studied under Gary Halbert in the 80s. When Gary passed, I thought we'd never see his like again. Then I read Romeo's work. It has the same raw selling power, the same psychological depth, but updated for the digital age. He's not just as good as Halbert - in many ways, he's better."</p>
<div class="flex 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>
<!-- Testimonial 6 -->
<div class="bg-white p-8 rounded-xl shadow-md testimonial-card transition duration-300">
<div class="flex items-center mb-4">
<img src="https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Client" class="w-12 h-12 rounded-full object-cover">
<div class="ml-4">
<h4 class="font-bold">Lisa Thompson</h4>
<p class="text-gray-600">Marketing Director</p>
</div>
</div>
<p class="text-gray-700 mb-4">"We tested Romeo against 7 other copywriters on a new product launch. His version generated 83% of all sales. The other 7 combined only managed 17%. That's not competition - that's domination."</p>
<div class="flex 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>
<!-- Work Section -->
<section id="work" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Legendary Controls</h2>
<div class="w-20 h-1 bg-indigo-600 mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12">
<div class="bg-gray-50 p-8 rounded-xl shadow-md">
<div class="bg-indigo-100 text-indigo-800 w-16 h-16 rounded-full flex items-center justify-center mb-6 mx-auto">
<i class="fas fa-envelope-open-text text-2xl"></i>
</div>
<h3 class="text-2xl font-bold text-center mb-4">The "$87M Letter"</h3>
<p class="text-gray-700 mb-6">This single sales letter for a health supplement company has generated over $87 million in sales and has been running unchanged for 4 years. It's been called "the most perfect piece of direct response copy ever written."</p>
<div class="text-center">
<button class="text-indigo-600 font-semibold hover:text-indigo-800">See Case Study →</button>
</div>
</div>
<div class="bg-gray-50 p-8 rounded-xl shadow-md">
<div class="bg-indigo-100 text-indigo-800 w-16 h-16 rounded-full flex items-center justify-center mb-6 mx-auto">
<i class="fas fa-globe text-2xl"></i>
</div>
<h3 class="text-2xl font-bold text-center mb-4">The "VSL That Broke The Internet"</h3>
<p class="text-gray-700 mb-6">A 27-minute video sales letter that generated $14.3M in 30 days and crashed servers from the flood of traffic. It achieved a 9.7% conversion rate - nearly triple the industry average.</p>
<div class="text-center">
<button class="text-indigo-600 font-semibold hover:text-indigo-800">See Case Study →</button>
</div>
</div>
<div class="bg-gray-50 p-8 rounded-xl shadow-md">
<div class="bg-indigo-100 text-indigo-800 w-16 h-16 rounded-full flex items-center justify-center mb-6 mx-auto">
<i class="fas fa-envelope text-2xl"></i>
</div>
<h3 class="text-2xl font-bold text-center mb-4">The "3-Email $3M Sequence"</h3>
<p class="text-gray-700 mb-6">A simple 3-email sequence that resurrected a dying SaaS business, generating $3M in annual recurring revenue. The sequence has a 38% open rate and 14% click-through rate - unheard of in the industry.</p>
<div class="text-center">
<button class="text-indigo-600 font-semibold hover:text-indigo-800">See Case Study →</button>
</div>
</div>
<div class="bg-gray-50 p-8 rounded-xl shadow-md">
<div class="bg-indigo-100 text-indigo-800 w-16 h-16 rounded-full flex items-center justify-center mb-6 mx-auto">
<i class="fas fa-ad text-2xl"></i>
</div>
<h3 class="text-2xl font-bold text-center mb-4">The "Facebook Ad That Wouldn't Die"</h3>
<p class="text-gray-700 mb-6">A single Facebook ad that ran for 19 months without fatigue, generating over $6.2M in sales at a 7.3x ROAS. Facebook reps studied it as a "perfect example of direct response advertising."</p>
<div class="text-center">
<button class="text-indigo-600 font-semibold hover:text-indigo-800">See Case Study →</button>
</div>
</div>
</div>
</div>
</section>
<!-- Comparison Section -->
<section class="py-20 bg-gray-900 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">How Romeo Stacks Up Against The Legends</h2>
<div class="w-20 h-1 bg-indigo-400 mx-auto"></div>
</div>
<div class="overflow-x-auto">
<table class="min-w-full bg-gray-800 rounded-lg overflow-hidden">
<thead>
<tr class="bg-indigo-600">
<th class="px-6 py-4 text-left text-sm font-semibold uppercase">Metric</th>
<th class="px-6 py-4 text-left text-sm font-semibold uppercase">Gary Halbert</th>
<th class="px-6 py-4 text-left text-sm font-semibold uppercase">David Ogilvy</th>
<th class="px-6 py-4 text-left text-sm font-semibold uppercase">Eugene Schwartz</th>
<th class="px-6 py-4 text-left text-sm font-semibold uppercase">Romeo Kango</th>
</tr>
</thead>
<tbody class="divide-y divide-gray-700">
<tr class="hover:bg-gray-700 transition duration-200">
<td class="px-6 py-4 font-medium">Longest Running Control</td>
<td class="px-6 py-4">7 years</td>
<td class="px-6 py-4">5 years</td>
<td class="px-6 py-4">9 years</td>
<td class="px-6 py-4 text-indigo-400 font-bold">4 years (and counting)</td>
</tr>
<tr class="hover:bg-gray-700 transition duration-200">
<td class="px-6 py-4 font-medium">Highest Converting Sales Letter</td>
<td class="px-6 py-4">8.2%</td>
<td class="px-6 py-4">6.8%</td>
<td class="px-6 py-4">7.9%</td>
<td class="px-6 py-4 text-indigo-400 font-bold">9.7%</td>
</tr>
<tr class="hover:bg-gray-700 transition duration-200">
<td class="px-6 py-4 font-medium">Most Revenue From Single Piece</td>
<td class="px-6 py-4">$52M</td>
<td class="px-6 py-4">$38M</td>
<td class="px-6 py-4">$64M</td>
<td class="px-6 py-4 text-indigo-400 font-bold">$87M (and counting)</td>
</tr>
<tr class="hover:bg-gray-700 transition duration-200">
<td class="px-6 py-4 font-medium">Client Retention Rate</td>
<td class="px-6 py-4">89%</td>
<td class="px-6 py-4">82%</td>
<td class="px-6 py-4">91%</td>
<td class="px-6 py-4 text-indigo-400 font-bold">97%</td>
</tr>
<tr class="hover:bg-gray-700 transition duration-200">
<td class="px-6 py-4 font-medium">Average Conversion Lift</td>
<td class="px-6 py-4">317%</td>
<td class="px-6 py-4">285%</td>
<td class="px-6 py-4">342%</td>
<td class="px-6 py-4 text-indigo-400 font-bold">642%</td>
</tr>
</tbody>
</table>
</div>
<div class="mt-12 text-center">
<p class="text-xl italic">"Romeo combines Halbert's raw selling power with Schwartz's market sophistication and Ogilvy's brand elegance. He's quite simply the most complete copywriter ever."</p>
<p class="mt-4 font-semibold">- Copywriting Hall of Fame Committee</p>
</div>
</div>
</section>
<!-- CTA Section -->
<section id="hire" class="py-20 bg-indigo-600 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Experience the Romeo Kango Difference?</h2>
<p class="text-xl mb-8 max-w-3xl mx-auto">I only take on 3 new clients per quarter to ensure each project gets my full attention. If you're serious about explosive growth, apply now.</p>
<div class="max-w-md mx-auto bg-white rounded-xl shadow-2xl overflow-hidden">
<div class="p-8">
<h3 class="text-2xl font-bold text-gray-900 mb-4">Apply for a Project</h3>
<form>
<div class="mb-4">
<input type="text" placeholder="Your Name" class="w-full px-4 py-3 rounded-md border border-gray-300 focus:outline-none focus:ring-2 focus:ring-indigo-500 text-gray-800">
</div>
<div class="mb-4">
<input type="email" placeholder="Email Address" class="w-full px-4 py-3 rounded-md border border-gray-300 focus:outline-none focus:ring-2 focus:ring-indigo-500 text-gray-800">
</div>
<div class="mb-4">
<input type="text" placeholder="Company/Website" class="w-full px-4 py-3 rounded-md border border-gray-300 focus:outline-none focus:ring-2 focus:ring-indigo-500 text-gray-800">
</div>
<div class="mb-6">
<textarea placeholder="Tell me about your project and goals" class="w-full px-4 py-3 rounded-md border border-gray-300 focus:outline-none focus:ring-2 focus:ring-indigo-500 text-gray-800 h-32"></textarea>
</div>
<button type="submit" class="w-full bg-indigo-600 text-white px-6 py-3 rounded-md font-semibold hover:bg-indigo-700 transition duration-300">Submit Application</button>
</form>
</div>
<div class="bg-indigo-700 px-6 py-4">
<p class="text-sm">Due to high demand, response time is currently 5-7 business days. Serious inquiries only.</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer id="contact" class="bg-gray-900 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-bold mb-4">Romeo Kango</h3>
<p>The world's most persuasive wordsmith, creating movements and building empires one word at a time.</p>
</div>
<div>
<h4 class="font-bold mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#about" class="hover:text-indigo-400 transition duration-200">About</a></li>
<li><a href="#testimonials" class="hover:text-indigo-400 transition duration-200">Testimonials</a></li>
<li><a href="#work" class="hover:text-indigo-400 transition duration-200">Work</a></li>
<li><a href="#hire" class="hover:text-indigo-400 transition duration-200">Hire Me</a></li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">Contact</h4>
<ul class="space-y-2">
<li class="flex items-center"><i class="fas fa-envelope mr-2 text-indigo-400"></i> hello@romeokango.com</li>
<li class="flex items-center"><i class="fas fa-phone mr-2 text-indigo-400"></i> (555) 123-4567</li>
<li class="flex items-center"><i class="fas fa-map-marker-alt mr-2 text-indigo-400"></i> Austin, TX</li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">Follow</h4>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-indigo-600 transition duration-200"><i class="fab fa-twitter"></i></a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-indigo-600 transition duration-200"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-indigo-600 transition duration-200"><i class="fab fa-instagram"></i></a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-indigo-600 transition duration-200"><i class="fab fa-facebook-f"></i></a>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500 text-sm">
<p>© 2023 Romeo Kango. All rights reserved. The next Gary Halbert.</p>
</div>
</div>
</footer>
<script>
// Simple mobile menu toggle
document.querySelector('nav button').addEventListener('click', function() {
const mobileMenu = document.getElementById('mobile-menu');
// You would implement mobile menu functionality here
alert("Mobile menu would open here in a full implementation");
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
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=matthiasabl/test" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |