File size: 3,002 Bytes
7d69aeb
3c71117
 
 
 
 
7d69aeb
3c71117
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7d69aeb
3c71117
 
 
 
 
 
5086ab3
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Steampunk Dreams</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
    <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <style>
        .steampunk-bg {
            background-color: #1a1a1a;
            color: #d4af37;
            font-family: 'Courier New', monospace;
        }
        .banner-container {
            border: 2px solid #d4af37;
            padding: 20px;
            margin: 20px 0;
            background-color: #2a2a2a;
        }
        .banner-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border: 1px solid #d4af37;
        }
        .contact-link {
            color: #d4af37;
            text-decoration: underline;
        }
    </style>
</head>
<body class="steampunk-bg">
    <div class="container mx-auto px-4 py-8">
        <h1 class="text-4xl font-bold text-center mb-8" data-aos="fade-down">Steampunk Dreams</h1>
        <h2 class="text-2xl font-semibold text-center mb-8" data-aos="fade-down">Campaign Banner Ads</h2>
        
        <div class="banner-container" data-aos="fade-right">
            <img src="https://huggingface.co/spaces/sativa/steampunk/resolve/main/images/header.png" alt="Steampunk Adventure Banner" class="banner-img mb-4">
            <p class="text-lg mb-4">Embark on a thrilling journey through time with our Steampunk Adventure collection. Gears, goggles, and grandeur await!</p>
        </div>
        
        <div class="banner-container" data-aos="fade-left">
            <img src="https://huggingface.co/spaces/sativa/steampunk/resolve/main/images/Hero.png" alt="Mechanical Wonders Banner" class="banner-img mb-4">
            <p class="text-lg mb-4">Discover the Mechanical Wonders of an alternate Victorian era where brass and steam power extraordinary inventions.</p>
        </div>
        
        <div class="banner-container" data-aos="fade-up">
            <img src="https://huggingface.co/spaces/sativa/steampunk/resolve/main/images/footer.png" alt="Aether Dreams Banner" class="banner-img mb-4">
            <p class="text-lg mb-4">Soar through the clouds in our Aether Dreams series, where airships rule the skies and adventure knows no bounds.</p>
        </div>
        
        <div class="text-center mt-8" data-aos="zoom-in">
            <a href="mailto:designer@steampunkdreams.com" class="contact-link text-xl">
                <i data-feather="mail" class="inline mr-2"></i> Contact the designer for more information
            </a>
        </div>
    </div>

    <script>
        AOS.init();
        feather.replace();
    </script>
</body>
</html>