Buttons
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lynked Up Replays</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
body {
font-family: 'Inter', system-ui, sans-serif;
}
.orange-banner {
background: linear-gradient(90deg, #ff781e, #f45c00);
color: #111827;
border-radius: 9999px;
padding: 16px 20px;
display: flex;
align-items: center;
gap: 16px;
max-width: 620px;
margin: 40px auto;
box-shadow: 0 10px 25px rgba(255, 120, 30, 0.3);
}
.icon {
width: 48px;
height: 48px;
background: rgba(255,255,255,0.9);
border-radius: 9999px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.title {
font-weight: 600;
font-size: 17px;
line-height: 1.2;
}
.subtext {
font-size: 14px;
opacity: 0.95;
margin-top: 2px;
}
</style>
</head>
<body class="bg-gray-50 flex items-center justify-center min-h-screen">
<div class="orange-banner">
<!-- Icon -->
<div class="icon">
<span class="text-2xl">🎥</span>
</div>
<!-- Text -->
<div>
<div class="title">Click here to access all of Lynked Up replays</div>
<div class="subtext">See upcoming trainings, opportunity calls, Zooms, and live events.</div>
</div>
</div>
</body>
</html>