Adición de contenido y páginas a su sitio y navegación superior
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Hacker House | Ticketed Events</title>
    <style>
        body {
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: #f9fbf9; /* Earthy white */
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        header {
            text-align: center;
            padding: 40px 0;
        }
        h1 {
            color: #2d5a27; /* Forest Green */
            font-size: 2.5rem;
        }
        .event-frame-wrapper {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 800px; /* Adjust height based on expected list length */
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            background: #fff;
        }
        iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
    </style>
</head>
<body>

    <div class="container">
        <header>
            <h1>The Gastronomic Renaissance</h1>
            <p>Secure your spot at the upcoming Hacker House sessions.</p>
        </header>

        <div class="event-frame-wrapper">
            <iframe 
                src="https://d2ctix.com/hackerhouse?search=Hacker+house" 
                title="Hacker House Ticketed Events"
                loading="lazy">
            </iframe>
        </div>
    </div>

</body>
</html>