Skip to content
This repository has been archived by the owner on Dec 14, 2024. It is now read-only.

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Guyungy authored Dec 14, 2024
1 parent 198cf7d commit b209b24
Showing 1 changed file with 139 additions and 0 deletions.
139 changes: 139 additions & 0 deletions .github/workflows/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,139 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Damaihelper - A Ticket Helper Tool">
<meta name="author" content="Your Name">
<title>Damaihelper | Ticket Helper Tool</title>
<style>
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Georgia', serif;
background-color: #f1f1f1;
color: #4d4d4d;
line-height: 1.6;
text-align: center;
}

h1, h2 {
color: #5d4037;
}

h1 {
font-size: 3.5rem;
text-transform: uppercase;
font-weight: bold;
margin-top: 50px;
border-bottom: 3px solid #8d6e63;
display: inline-block;
padding-bottom: 10px;
}

h2 {
font-size: 2rem;
font-style: italic;
margin-bottom: 40px;
color: #3e2723;
}

.container {
width: 80%;
margin: 0 auto;
padding: 50px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-container {
background: #fff url('https://api.star-history.com/svg?repos=Guyungy/damaihelper&type=Date') no-repeat center center;
background-size: cover;
padding: 30px;
border-radius: 10px;
margin-bottom: 40px;
}

.content-section {
margin-bottom: 50px;
}

.content-section p {
font-size: 1.2rem;
color: #6d4c41;
line-height: 1.8;
}

.button {
display: inline-block;
background-color: #8d6e63;
color: white;
font-size: 1.5rem;
text-decoration: none;
padding: 15px 40px;
margin-top: 20px;
border-radius: 5px;
transition: background-color 0.3s;
}

.button:hover {
background-color: #5d4037;
}

footer {
font-size: 1rem;
margin-top: 50px;
color: #3e2723;
}

/* Add vintage background pattern */
body {
background-image: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
}

</style>
</head>
<body>
<header>
<h1>Damaihelper</h1>
<h2>Your Ultimate Ticket Helper Tool</h2>
</header>

<div class="container">
<div class="image-container"></div>

<section class="content-section">
<p>Welcome to <strong>Damaihelper</strong>, your ultimate tool to help you grab tickets quickly and efficiently. Whether you're trying to secure tickets for a concert, a show, or an event, our tool automates the process, saving you time and energy. Built with state-of-the-art technologies and optimized for speed, Damaihelper is the perfect companion for your ticketing needs.</p>
</section>

<section class="content-section">
<h2>How it Works</h2>
<p>Simply enter the ticket page URL, set your preferred time to grab tickets, and our software does the rest! No more waiting in long queues or dealing with slow responses from ticketing websites. Our system is designed to get you the best chance at securing the tickets you want, fast!</p>
</section>

<section class="content-section">
<h2>Features</h2>
<ul style="text-align: left; margin: 0 auto; display: inline-block;">
<li>Automated ticket grabbing</li>
<li>Proxy support for anonymous browsing</li>
<li>Real-time updates and progress tracking</li>
<li>Simulated retry mechanism for failed attempts</li>
</ul>
</section>

<section class="content-section">
<a href="https://github.com/Guyungy/damaihelper" class="button">Visit on GitHub</a>
</section>
</div>

<footer>
<p>&copy; 2024 Damaihelper | All rights reserved. Built with love for all ticket hunters.</p>
</footer>
</body>
</html>

0 comments on commit b209b24

Please sign in to comment.