Skip to content

Instantly share code, notes, and snippets.

@eriknomitch
Created November 16, 2023 14:35
Show Gist options
  • Save eriknomitch/579a1b4b49f1a92312a505b2cfa95673 to your computer and use it in GitHub Desktop.
Save eriknomitch/579a1b4b49f1a92312a505b2cfa95673 to your computer and use it in GitHub Desktop.
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>HuntClub</title>
<script src="https://cdn.tailwindcss.com"></script>
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&amp;display=swap"
rel="stylesheet"
/>
<style>
body {
font-family: "Open+Sans", sans-serif;
background-color: #fcfbf3;
}
</style>
</head>
<body class="text-gray-800">
<header class="border-b border-gray-200 py-4">
<div class="container mx-auto flex justify-between items-center">
<h1 class="text-3xl font-bold">HuntClub</h1>
<nav>
<ul class="flex space-x-4">
<li>
<a class="text-gray-600 hover:text-gray-800" href="#"
>Talent Acquisition</a
>
</li>
<li>
<a class="text-gray-600 hover:text-gray-800" href="#"
>Investor Solutions</a
>
</li>
<li>
<a class="text-gray-600 hover:text-gray-800" href="#"
>Expert Community</a
>
</li>
<li>
<a class="text-gray-600 hover:text-gray-800" href="#"
>Resources</a
>
</li>
<li>
<a class="text-gray-600 hover:text-gray-800" href="#"
>Our Impact</a
>
</li>
</ul>
</nav>
<div class="flex space-x-4">
<a class="text-gray-600 hover:text-gray-800" href="#">Login</a>
<a class="bg-black text-white px-4 py-2 rounded-full" href="#"
>Get Started</a
>
</div>
</div>
</header>
<main class="container mx-auto mt-12">
<section class="flex flex-col lg:flex-row justify-between items-center">
<div class="lg:w-1/2">
<h2 class="text-6xl font-bold mb-6">The Search Is Over</h2>
<p class="text-gray-600 mb-6">
We've reimagined recruiting for companies building the future.
</p>
<p class="text-gray-600 mb-6">
Powered by technology and community, Hunt Club is a full-service
recruiting company that connects businesses with the world's best
talent.
</p>
<button
class="bg-orange-500 text-white px-6 py-3 rounded-full hover:bg-orange-600"
>
Get Started
</button>
</div>
<div class="lg:w-1/2 flex justify-end">
<div class="relative">
<img
alt="Professional woman in an office setting, looking confident"
class="rounded-full mb-6"
height="500"
src="https://oaidalleapiprodscus.blob.core.windows.net/private/org-KGoLFCZ7q8ArOyI9qgNsbR7B/user-CNTQE5NHjVO8grC2w6xLD58v/img-4CgJwgWjkZiKOIzl2162vDIl.png?st=2023-11-16T13%3A31%3A55Z&amp;se=2023-11-16T15%3A31%3A55Z&amp;sp=r&amp;sv=2021-08-06&amp;sr=b&amp;rscd=inline&amp;rsct=image/png&amp;skoid=6aaadede-4fb3-4698-a8f6-684d7786b067&amp;sktid=a48cca56-e6da-484e-a814-9c849652bcb3&amp;skt=2023-11-16T14%3A31%3A55Z&amp;ske=2023-11-17T14%3A31%3A55Z&amp;sks=b&amp;skv=2021-08-06&amp;sig=FZWfnCEqzm762Hh%2ByBUcv2v43KGDjKvQf1yDMKzWc%2BU%3D"
width="500"
/>
<div
class="absolute bottom-0 right-0 bg-green-600 text-white p-4 rounded-tl-lg"
>
<h3 class="font-bold">EXECUTIVE ROLE</h3>
<p>Chief Financial Officer</p>
<p class="text-sm">Series B eCommerce</p>
</div>
<div
class="absolute bottom-0 right-0 transform translate-x-4 translate-y-4 bg-white p-4 shadow-lg rounded"
>
<div class="flex items-center">
<img
alt="Professional woman in an office setting, looking confident"
class="rounded-full mr-4"
height="100"
src="https://oaidalleapiprodscus.blob.core.windows.net/private/org-KGoLFCZ7q8ArOyI9qgNsbR7B/user-CNTQE5NHjVO8grC2w6xLD58v/img-4CgJwgWjkZiKOIzl2162vDIl.png?st=2023-11-16T13%3A31%3A55Z&amp;se=2023-11-16T15%3A31%3A55Z&amp;sp=r&amp;sv=2021-08-06&amp;sr=b&amp;rscd=inline&amp;rsct=image/png&amp;skoid=6aaadede-4fb3-4698-a8f6-684d7786b067&amp;sktid=a48cca56-e6da-484e-a814-9c849652bcb3&amp;skt=2023-11-16T14%3A31%3A55Z&amp;ske=2023-11-17T14%3A31%3A55Z&amp;sks=b&amp;skv=2021-08-06&amp;sig=FZWfnCEqzm762Hh%2ByBUcv2v43KGDjKvQf1yDMKzWc%2BU%3D"
width="100"
/>
<div>
<h4 class="font-bold">Maryn Cook</h4>
<p class="text-sm">Chief Financial Officer</p>
<p class="text-xs text-gray-600">15+ Years Exp. | Fintech</p>
<p class="text-xs text-gray-600">Operations | U.S. Based</p>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment