------------------------------------------------------------
commit deec79404ca694b62abe30bf5ae2392606dc059a
Author: raisetonight <john@raisetonight.com>
Date: Wed Aug 28 11:02:48 2024 -1000
Update index.html
diff --git a/index.html b/index.html
index d1c926b..a0825ac 100644
--- a/index.html
+++ b/index.html
@@ -68,6 +68,10 @@
cursor: pointer;
transition: background-color 0.3s;
}
+ .cta-button a{
+ color: #1f2937;
+ text-decoration: none;
+ }
.cta-button:hover {
background-color: #fcd34d;
}
@@ -110,7 +114,7 @@
</main>
<footer>
- <p>First fundraise starts soon!</p>
+ <p>One startup per day. First fundraise starts soon!</p>
</footer>
<script>
------------------------------------------------------------
commit 7b90e6b14c5a779241d48f0bb986dcc81a1a049b
Author: raisetonight <john@raisetonight.com>
Date: Wed Aug 28 11:01:02 2024 -1000
Update index.html
diff --git a/index.html b/index.html
index 49819d3..d1c926b 100644
--- a/index.html
+++ b/index.html
@@ -105,12 +105,12 @@
</div>
<div class="cta">
- <button class="cta-button">Start Raising Now!</button>
+ <button class="cta-button"><a href="mailto:apply@raisetonight.com">Start Raising Now!</a></button>
</div>
</main>
<footer>
- <p>© 2024 RaiseTonight.com. All rights reserved.</p>
+ <p>First fundraise starts soon!</p>
</footer>
<script>
------------------------------------------------------------
commit 44f2b5ad0e2a9cd7f3a5dbda676683f1c3ef305c
Author: raisetonight <john@raisetonight.com>
Date: Wed Aug 28 10:58:57 2024 -1000
Create CNAME
diff --git a/CNAME b/CNAME
new file mode 100644
index 0000000..8196535
--- /dev/null
+++ b/CNAME
@@ -0,0 +1 @@
+raisetonight.com
\ No newline at end of file
------------------------------------------------------------
commit 68f583a976536e883c5e302fca9d20d19f700db9
Author: raisetonight <john@raisetonight.com>
Date: Wed Aug 28 10:57:04 2024 -1000
Create index.html
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..49819d3
--- /dev/null
+++ b/index.html
@@ -0,0 +1,122 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>RaiseTonight.com - Fund Your Dreams, Tonight!</title>
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/feather-icons/4.28.0/feather.min.js"></script>
+ <style>
+ body {
+ font-family: Arial, sans-serif;
+ margin: 0;
+ padding: 0;
+ min-height: 100vh;
+ background: linear-gradient(to bottom right, #8b5cf6, #3b82f6);
+ color: white;
+ }
+ .container {
+ width: 90%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+ header {
+ text-align: center;
+ padding: 2rem 0;
+ }
+ h1 {
+ font-size: 2.5rem;
+ margin-bottom: 0.5rem;
+ }
+ .subtitle {
+ font-size: 1.25rem;
+ }
+ main {
+ padding: 2rem 0;
+ }
+ .features {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 1rem;
+ }
+ .feature {
+ background: rgba(255, 255, 255, 0.1);
+ backdrop-filter: blur(10px);
+ padding: 1.5rem;
+ border-radius: 0.5rem;
+ }
+ .feature h2 {
+ display: flex;
+ align-items: center;
+ font-size: 1.25rem;
+ margin-bottom: 1rem;
+ }
+ .feature h2 i {
+ margin-right: 0.5rem;
+ }
+ .cta {
+ text-align: center;
+ margin-top: 2rem;
+ }
+ .cta-button {
+ background-color: #fbbf24;
+ color: #1f2937;
+ font-size: 1.25rem;
+ font-weight: bold;
+ padding: 0.75rem 1.5rem;
+ border: none;
+ border-radius: 9999px;
+ cursor: pointer;
+ transition: background-color 0.3s;
+ }
+ .cta-button:hover {
+ background-color: #fcd34d;
+ }
+ footer {
+ text-align: center;
+ padding: 2rem 0;
+ margin-top: 2rem;
+ }
+ </style>
+</head>
+<body>
+ <header>
+ <h1>RaiseTonight.com</h1>
+ <p class="subtitle">Fund Your Dreams, Tonight!</p>
+ </header>
+
+ <main class="container">
+ <div class="features">
+ <div class="feature">
+ <h2><i data-feather="sparkles"></i> Instant Funding</h2>
+ <p>Get the capital you need for your startup in just one night. No waiting, no hassle.</p>
+ </div>
+ <div class="feature">
+ <h2><i data-feather="dollar-sign"></i> Competitive Rates</h2>
+ <p>Our innovative platform connects you with investors offering the best rates in the market.</p>
+ </div>
+ <div class="feature">
+ <h2><i data-feather="rocket"></i> Launch Faster</h2>
+ <p>Don't let funding slow you down. Launch your startup at lightning speed with RaiseTonight.</p>
+ </div>
+ <div class="feature">
+ <h2><i data-feather="clock"></i> 24/7 Support</h2>
+ <p>Our team is always available to help you through the fundraising process, any time of day or night.</p>
+ </div>
+ </div>
+
+ <div class="cta">
+ <button class="cta-button">Start Raising Now!</button>
+ </div>
+ </main>
+
+ <footer>
+ <p>© 2024 RaiseTonight.com. All rights reserved.</p>
+ </footer>
+
+ <script>
+ document.addEventListener('DOMContentLoaded', (event) => {
+ feather.replace();
+ });
+ </script>
+</body>
+</html>