Spaces:
Running
Running
Create a 'coming soon' page for Speedodude.com. include email sign-up with discounts. Include advertising columns on both sides. Include space holder for logo.png
Browse files- README.md +8 -5
- index.html +152 -19
- style.css +6 -25
README.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: SpeedoDude Splash πββοΈ
|
| 3 |
+
colorFrom: green
|
| 4 |
+
colorTo: yellow
|
| 5 |
+
emoji: π³
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite-v3
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# Welcome to your new DeepSite project!
|
| 13 |
+
This project was created with [DeepSite](https://huggingface.co/deepsite).
|
index.html
CHANGED
|
@@ -1,19 +1,152 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>SpeedoDude - Coming Soon</title>
|
| 7 |
+
<link rel="icon" type="image/x-icon" href="https://static.photos/sport/200x200/42">
|
| 8 |
+
<link rel="stylesheet" href="style.css">
|
| 9 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 10 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 11 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 12 |
+
</head>
|
| 13 |
+
<body class="bg-gradient-to-br from-slate-900 via-blue-900 to-indigo-900 min-h-screen">
|
| 14 |
+
<!-- Animated Background Particles -->
|
| 15 |
+
<div class="fixed inset-0 overflow-hidden pointer-events-none">
|
| 16 |
+
<div class="particle absolute w-2 h-2 bg-blue-300 rounded-full opacity-20"></div>
|
| 17 |
+
<div class="particle absolute w-3 h-3 bg-purple-300 rounded-full opacity-15"></div>
|
| 18 |
+
<div class="particle absolute w-1 h-1 bg-white rounded-full opacity-25"></div>
|
| 19 |
+
<!-- More particles will be added via JavaScript -->
|
| 20 |
+
</div>
|
| 21 |
+
|
| 22 |
+
<!-- Glass morphic overlay -->
|
| 23 |
+
<div class="glass-overlay absolute inset-0 pointer-events-none"></div>
|
| 24 |
+
|
| 25 |
+
<!-- Main Container -->
|
| 26 |
+
<div class="relative min-h-screen flex flex-col lg:flex-row items-center justify-center p-4">
|
| 27 |
+
|
| 28 |
+
<!-- Left Advertising Column -->
|
| 29 |
+
<aside class="w-full lg:w-1/4 lg:h-screen flex items-center justify-center p-4 order-2 lg:order-1">
|
| 30 |
+
<div class="ad-container-left glass-card rounded-2xl p-6 text-center transform hover:scale-105 transition-all duration-300">
|
| 31 |
+
<h3 class="text-white text-xl font-bold mb-4 gradient-text">Premium Gear</h3>
|
| 32 |
+
<div class="ad-content space-y-4">
|
| 33 |
+
<img src="https://static.photos/sport/320x240/123" alt="Swimming gear" class="rounded-lg mx-auto shadow-lg">
|
| 34 |
+
<img src="https://static.photos/sport/320x240/124" alt="Training equipment" class="rounded-lg mx-auto shadow-lg">
|
| 35 |
+
</div>
|
| 36 |
+
<p class="text-blue-200 text-sm mt-4 italic">Discover the ultimate swim collection</p>
|
| 37 |
+
</div>
|
| 38 |
+
</aside>
|
| 39 |
+
|
| 40 |
+
<!-- Center Content -->
|
| 41 |
+
<main class="w-full lg:w-1/2 flex flex-col items-center justify-center text-center z-10 order-1 lg:order-2 py-8">
|
| 42 |
+
<div class="glass-card rounded-3xl p-8 md:p-12 max-w-lg w-full">
|
| 43 |
+
<!-- Logo placeholder -->
|
| 44 |
+
<div class="logo-container mb-8">
|
| 45 |
+
<img src="https://static.photos/sport/200x200/42" alt="SpeedoDude Logo" class="w-32 h-32 mx-auto rounded-full border-4 border-white border-opacity-20 shadow-2xl">
|
| 46 |
+
<div class="logo-glow absolute inset-0 rounded-full"></div>
|
| 47 |
+
</div>
|
| 48 |
+
|
| 49 |
+
<!-- Coming Soon text -->
|
| 50 |
+
<h1 class="text-5xl md:text-6xl font-black text-white mb-4 tracking-tight">
|
| 51 |
+
<span class="gradient-text animate-pulse">COMING</span>
|
| 52 |
+
<br>
|
| 53 |
+
<span class="text-blue-200">SOON</span>
|
| 54 |
+
</h1>
|
| 55 |
+
|
| 56 |
+
<p class="text-blue-100 text-xl mb-8 leading-relaxed">
|
| 57 |
+
The ultimate destination for speed swimming gear is making waves soon!
|
| 58 |
+
</p>
|
| 59 |
+
|
| 60 |
+
<!-- Email signup -->
|
| 61 |
+
<div class="email-container mt-12">
|
| 62 |
+
<form id="signup-form" class="space-y-4">
|
| 63 |
+
<div class="relative">
|
| 64 |
+
<input
|
| 65 |
+
type="email"
|
| 66 |
+
id="email-input"
|
| 67 |
+
placeholder="Enter your email for exclusive deals"
|
| 68 |
+
class="w-full px-6 py-4 pr-16 rounded-full bg-white bg-opacity-10 border border-white border-opacity-20 text-white placeholder-blue-200 focus:outline-none focus:ring-4 focus:ring-blue-400 focus:ring-opacity-50 transition-all duration-300"
|
| 69 |
+
required
|
| 70 |
+
>
|
| 71 |
+
<button
|
| 72 |
+
type="submit"
|
| 73 |
+
class="absolute right-2 top-1/2 transform -translate-y-1/2 w-12 h-12 bg-gradient-to-r from-blue-500 to-purple-600 rounded-full hover:from-purple-600 hover:to-blue-500 transition-all duration-300 shadow-lg hover:shadow-2xl group"
|
| 74 |
+
>
|
| 75 |
+
<i data-feather="arrow-right" class="w-6 h-6 text-white transform transition-transform duration-300 group-hover:translate-x-1"></i>
|
| 76 |
+
</button>
|
| 77 |
+
</div>
|
| 78 |
+
|
| 79 |
+
<div class="text-center">
|
| 80 |
+
<label class="flex items-center justify-center text-sm text-blue-200">
|
| 81 |
+
<input type="checkbox" id="consent" class="mr-2 rounded" required>
|
| 82 |
+
I agree to receive awesome discounts and swimming tips
|
| 83 |
+
</label>
|
| 84 |
+
</div>
|
| 85 |
+
</form>
|
| 86 |
+
|
| 87 |
+
<div id="success-message" class="hidden mt-6">
|
| 88 |
+
<div class="bg-green-500 bg-opacity-20 border border-green-300 rounded-full px-6 py-4 text-white">
|
| 89 |
+
<i data-feather="check-circle" class="inline w-5 h-5 mr-2"></i>
|
| 90 |
+
You're in! Check your email for a sweet 20% discount πββοΈ
|
| 91 |
+
</div>
|
| 92 |
+
</div>
|
| 93 |
+
</div>
|
| 94 |
+
|
| 95 |
+
<!-- Countdown Timer -->
|
| 96 |
+
<div class="countdown-container mt-8">
|
| 97 |
+
<div class="grid grid-cols-4 gap-4 max-w-xs mx-auto">
|
| 98 |
+
<div class="time-unit glass-card rounded-xl p-3">
|
| 99 |
+
<div id="days" class="text-2xl font-bold text-white">00</div>
|
| 100 |
+
<div class="text-xs text-blue-200">DAYS</div>
|
| 101 |
+
</div>
|
| 102 |
+
<div class="time-unit glass-card rounded-xl p-3">
|
| 103 |
+
<div id="hours" class="text-2xl font-bold text-white">00</div>
|
| 104 |
+
<div class="text-xs text-blue-200">HRS</div>
|
| 105 |
+
</div>
|
| 106 |
+
<div class="time-unit glass-card rounded-xl p-3">
|
| 107 |
+
<div id="minutes" class="text-2xl font-bold text-white">00</div>
|
| 108 |
+
<div class="text-xs text-blue-200">MIN</div>
|
| 109 |
+
</div>
|
| 110 |
+
<div class="time-unit glass-card rounded-xl p-3">
|
| 111 |
+
<div id="seconds" class="text-2xl font-bold text-white">00</div>
|
| 112 |
+
<div class="text-xs text-blue-200">SEC</div>
|
| 113 |
+
</div>
|
| 114 |
+
</div>
|
| 115 |
+
</div>
|
| 116 |
+
|
| 117 |
+
<!-- Social Links -->
|
| 118 |
+
<div class="social-links absolute bottom-8 left-1/2 transform -translate-x-1/2">
|
| 119 |
+
<div class="flex space-x-4">
|
| 120 |
+
<a href="#" class="text-blue-300 hover:text-white transition-colors duration-300">
|
| 121 |
+
<i data-feather="instagram" class="w-6 h-6"></i>
|
| 122 |
+
</a>
|
| 123 |
+
<a href="#" class="text-blue-300 hover:text-white transition-colors duration-300">
|
| 124 |
+
<i data-feather="facebook" class="w-6 h-6"></i>
|
| 125 |
+
</a>
|
| 126 |
+
<a href="#" class="text-blue-300 hover:text-white transition-colors duration-300">
|
| 127 |
+
<i data-feather="twitter" class="w-6 h-6"></i>
|
| 128 |
+
</a>
|
| 129 |
+
</div>
|
| 130 |
+
</div>
|
| 131 |
+
</div>
|
| 132 |
+
</main>
|
| 133 |
+
|
| 134 |
+
<!-- Right Advertising Column -->
|
| 135 |
+
<aside class="w-full lg:w-1/4 lg:h-screen flex items-center justify-center p-4 order-3">
|
| 136 |
+
<div class="ad-container-right glass-card rounded-2xl p-6 text-center transform hover:scale-105 transition-all duration-300">
|
| 137 |
+
<h3 class="text-white text-xl font-bold mb-4 gradient-text">Pro Athletes</h3>
|
| 138 |
+
<div class="ad-content space-y-4">
|
| 139 |
+
<img src="https://static.photos/sport/320x240/125" alt="Pro swimmer" class="rounded-lg mx-auto shadow-lg">
|
| 140 |
+
<img src="https://static.photos/sport/320x240/126" alt="Championship pool" class="rounded-lg mx-auto shadow-lg">
|
| 141 |
+
</div>
|
| 142 |
+
<p class="text-blue-200 text-sm mt-4 italic">Get the gear champions trust</p>
|
| 143 |
+
</div>
|
| 144 |
+
</aside>
|
| 145 |
+
|
| 146 |
+
</div>
|
| 147 |
+
|
| 148 |
+
<script src="script.js"></script>
|
| 149 |
+
<script>feather.replace();</script>
|
| 150 |
+
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
|
| 151 |
+
</body>
|
| 152 |
+
</html>
|
style.css
CHANGED
|
@@ -1,28 +1,9 @@
|
|
| 1 |
-
|
| 2 |
-
padding: 2rem;
|
| 3 |
-
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
| 4 |
-
}
|
| 5 |
-
|
| 6 |
-
h1 {
|
| 7 |
-
font-size: 16px;
|
| 8 |
-
margin-top: 0;
|
| 9 |
-
}
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
margin-bottom: 10px;
|
| 15 |
-
margin-top: 5px;
|
| 16 |
}
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
margin: 0 auto;
|
| 21 |
-
padding: 16px;
|
| 22 |
-
border: 1px solid lightgray;
|
| 23 |
-
border-radius: 16px;
|
| 24 |
-
}
|
| 25 |
-
|
| 26 |
-
.card p:last-child {
|
| 27 |
-
margin-bottom: 0;
|
| 28 |
-
}
|
|
|
|
| 1 |
+
/* Custom styles for SpeedoDude coming soon page */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
+
/* Global styles */
|
| 4 |
+
* {
|
| 5 |
+
box-sizing: border-box;
|
|
|
|
|
|
|
| 6 |
}
|
| 7 |
|
| 8 |
+
body {
|
| 9 |
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|