34950-vm/index.php
Flatlogic Bot dbf75ca780 1 version
2025-10-16 14:27:03 +00:00

93 lines
2.8 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Professional Vibe-Coding Webinar</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
background-color: #1a202c;
color: #e2e8f0;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
text-align: center;
}
.container {
max-width: 800px;
padding: 2rem;
}
.schedule-block {
background-color: #2d3748;
border-radius: 0.5rem;
padding: 2rem;
border: 1px solid #4a5568;
}
h2 {
color: #f6e05e;
font-size: 1.5rem;
margin-bottom: 1rem;
text-transform: uppercase;
}
ul {
list-style: none;
padding: 0;
margin: 0 0 1.5rem 0;
text-align: left;
display: inline-block;
}
li {
margin-bottom: 0.5rem;
font-size: 1.125rem;
}
.date-time {
font-size: 1.25rem;
font-weight: bold;
margin-bottom: 1.5rem;
}
.register-button {
display: inline-block;
background-color: #f6e05e;
color: #1a202c;
padding: 0.75rem 1.5rem;
border-radius: 0.375rem;
text-decoration: none;
font-weight: bold;
font-size: 1.125rem;
transition: background-color 0.2s;
margin-bottom: 1.5rem;
}
.register-button:hover {
background-color: #f6d32d;
}
.byline {
font-size: 1rem;
color: #a0aec0;
}
</style>
</head>
<body>
<div class="container">
<h1 style="font-size: 2.5rem; font-weight: bold; color: #f6e05e; margin-bottom: 0.5rem;">Professional vibe-coding webinar</h1>
<p style="font-size: 1.25rem; color: #a0aec0; margin-bottom: 2rem;">by Flatlogic</p>
<div class="schedule-block">
<h2>Schedule</h2>
<ul>
<li> Intro ~10 min</li>
<li> Creating Apps ~40-50 min</li>
<li> Q&A</li>
</ul>
<div class="date-time">
Monday, November 3 At 6.00 PM PST
</div>
<a href="register.php" class="register-button">Register Now </a>
<div class="byline">
By: Philip Daineka, Alex Rubanau, Alexey Vertel
</div>
</div>
</div>
</body>
</html>