GOSCW25 commited on
Commit
82a7943
·
verified ·
1 Parent(s): df94569

Add $12 Ticket price under show starts - Follow Up Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +230 -18
  3. prompts.txt +7 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Goscw Event Calender
3
- emoji: 📚
4
- colorFrom: green
5
- colorTo: green
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: goscw-event-calender
3
+ emoji: 🐳
4
+ colorFrom: gray
5
+ colorTo: red
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,231 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
 
 
 
 
 
 
 
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>Georgia Old School Championship Wrestling</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .wrestler-fist {
11
+ background: linear-gradient(135deg, #ff0000 0%, #800000 100%);
12
+ width: 120px;
13
+ height: 120px;
14
+ border-radius: 50%;
15
+ display: flex;
16
+ align-items: center;
17
+ justify-content: center;
18
+ box-shadow: 0 10px 20px rgba(0,0,0,0.3);
19
+ }
20
+ .wrestler-fist i {
21
+ color: white;
22
+ font-size: 60px;
23
+ transform: rotate(-30deg);
24
+ text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
25
+ }
26
+ .event-card {
27
+ transition: all 0.3s ease;
28
+ }
29
+ .event-card:hover {
30
+ transform: translateY(-5px);
31
+ box-shadow: 0 15px 30px rgba(0,0,0,0.2);
32
+ }
33
+ @keyframes pulse {
34
+ 0% { transform: scale(1); }
35
+ 50% { transform: scale(1.05); }
36
+ 100% { transform: scale(1); }
37
+ }
38
+ .ticket-pulse {
39
+ animation: pulse 2s infinite;
40
+ }
41
+ </style>
42
+ </head>
43
+ <body class="bg-gray-900 text-white font-sans">
44
+ <!-- Header Section -->
45
+ <header class="bg-red-900 text-white py-6 shadow-lg">
46
+ <div class="container mx-auto px-4">
47
+ <div class="flex flex-col md:flex-row justify-between items-center">
48
+ <div class="flex items-center space-x-4 mb-4 md:mb-0">
49
+ <div class="wrestler-fist">
50
+ <i class="fas fa-fist-raised"></i>
51
+ </div>
52
+ <h1 class="text-3xl md:text-4xl font-extrabold tracking-tight">
53
+ <span class="block">Georgia Old School</span>
54
+ <span class="block">Championship Wrestling</span>
55
+ </h1>
56
+ </div>
57
+ <div class="bg-yellow-500 text-gray-900 font-bold px-6 py-2 rounded-full shadow-lg ticket-pulse">
58
+ Tickets: $12 | Kids 6 & under FREE!
59
+ </div>
60
+ </div>
61
+ </div>
62
+ </header>
63
+
64
+ <!-- Main Content -->
65
+ <main class="container mx-auto px-4 py-12">
66
+ <section class="mb-16">
67
+ <h2 class="text-3xl font-bold mb-8 text-center relative">
68
+ <span class="bg-gray-900 px-6 relative z-10">Upcoming Events</span>
69
+ <span class="absolute left-0 right-0 top-1/2 h-1 bg-red-700 z-0"></span>
70
+ </h2>
71
+
72
+ <div class="grid md:grid-cols-2 gap-8">
73
+ <!-- Event 1 -->
74
+ <div class="event-card bg-gray-800 rounded-lg overflow-hidden shadow-xl border-t-4 border-red-700">
75
+ <div class="p-6">
76
+ <div class="flex flex-col md:flex-row items-center mb-6">
77
+ <div class="wrestler-fist mb-4 md:mb-0 md:mr-6">
78
+ <i class="fas fa-fist-raised"></i>
79
+ </div>
80
+ <div class="text-center md:text-left">
81
+ <h3 class="text-2xl font-bold text-yellow -400">Southern Slugfest</h3>
82
+ <p class="text-red-400 font-semibold">June 14th, 2024</p>
83
+ </div>
84
+ </div>
85
+ <div class="space-y-4">
86
+ <div class="flex items-center">
87
+ <i class="fas fa-map-marker-alt text-red-500 mr-3 text-xl"></i>
88
+ <p>Moultrie, GA</p>
89
+ </div>
90
+ <div class="flex items-center">
91
+ <i class="fas fa-door-open text-red-500 mr-3 text-xl"></i>
92
+ <p>Doors Open: 6:00 PM</p>
93
+ </div>
94
+ <div class="flex items-center">
95
+ <i class="fas fa-bell text-red-500 mr-3 text-xl"></i>
96
+ <p>Show Starts: 7:00 PM</p>
97
+ </div>
98
+ <div class="flex items-center">
99
+ <i class="fas fa-ticket-alt text-red-500 mr-3 text-xl"></i>
100
+ <p>Tickets: $12 (Kids 6 & under FREE)</p>
101
+ </div>
102
+
103
+ </div>
104
+ <div class="pt-4 border-t border-gray-700">
105
+ <p class="italic text-gray-400 mb-3">Get ready for the most intense wrestling action of the summer! Southern Slugfest will feature championship matches, grudge matches, and surprises you won't want to miss!</p>
106
+ <button class="bg-red-700 hover:bg-red-800 text-white font-bold py-2 px-6 rounded-full transition duration-300 flex items-center mx-auto md:mx-0">
107
+ <i class="fas fa-ticket-alt mr-2"></i> Find out more
108
+ </button>
109
+ </div>
110
+ </div>
111
+ </div>
112
+ </div>
113
+
114
+ <!-- Event 2 -->
115
+ <div class="event-card bg-gray-800 rounded-lg overflow-hidden shadow-xl border-t-4 border-red-700">
116
+ <div class="p-6">
117
+ <div class="flex flex-col md:flex-row items-center mb-6">
118
+ <div class="wrestler-fist mb-4 md:mb-0 md:mr-6">
119
+ <i class="fas fa-fist-raised"></i>
120
+ </div>
121
+ <div class="text-center md:text-left">
122
+ <h3 class="text-2xl font-bold text-yellow-400">Buff's Bash</h3>
123
+ <p class="text-red-400 font-semibold">August 2nd, 2024</p>
124
+ </div>
125
+ </div>
126
+ <div class="space-y-4">
127
+ <div class="flex items-center">
128
+ <i class="fas fa-map-marker-alt text-red-500 mr-3 text-xl"></i>
129
+ <p>Moultrie, GA</p>
130
+ </div>
131
+ <div class="flex items-center">
132
+ <i class="fas fa-door-open text-red-500 mr-3 text-xl"></i>
133
+ <p>Doors Open: 6:00 PM</p>
134
+ </div>
135
+ <div class="flex items-center">
136
+ <i class="fas fa-bell text-red-500 mr-3 text-xl"></i>
137
+ <p>Show Starts: 7:00 PM</p>
138
+ </div>
139
+ </div>
140
+ <div class="flex items-center">
141
+ <i class="fas fa-ticket-alt text-red-500 mr-3 text-xl"></i>
142
+ <p>Tickets: $12 (Kids 6 & under FREE)</p>
143
+ </div>
144
+
145
+ </div>
146
+ <div class="pt-4 border-t border-gray-700">
147
+ <p class="italic text-gray-400 mb-3"> Buffs Bash! Located at the Tommy Meredith Gym in Moultrie, Ga. Staring WCW and WWF Buff Bagwell! 2 exciting Titile Matches and an amazing Ladies match!! Catch Buff Bagwell, Buddy Golden, Danny Stratos, Sam Phoenix and many more!!! Dont miss your chance to meet an NWO member in person!!!! </p>
148
+ <button class="bg-red-700 hover:bg-red-800 text-white font-bold py-2 px-6 rounded-full transition duration-300 flex items-center mx-auto md:mx-0">
149
+ <i class="fas fa-ticket-alt mr-2"></i> Find out more
150
+ </button>
151
+ </div>
152
+ </div>
153
+ </div>
154
+ </div>
155
+ </div>
156
+ </section>
157
+ <div class="text-center">
158
+ <div class="bg-red-800 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
159
+ <i class="fas fa-clock text-2xl text-yellow-400"></i>
160
+ </div>
161
+ <h3 class="font-bold mb-2">Ticket Prices</h3>
162
+ <p>All Ticket $12 at the door</p>
163
+ <p>Kids 6 and under Free with paid adult</p>
164
+ </div>
165
+ <div class="text-center">
166
+ <div class="bg-red-800 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
167
+ <i class="fas fa-clock text-2xl text-yellow-400"></i>
168
+ </div>
169
+ <h3 class="font-bold mb-2">Show Times</h3>
170
+ <p>Doors Open: 6:00 PM</p>
171
+ <p>Show Starts: 7:00 PM</p>
172
+ </div>
173
+
174
+ <div class="text-center">
175
+ <div class="bg-red-800 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
176
+ <i class="fas fa-question-circle text-2xl text-yellow-400"></i>
177
+ </div>
178
+ <h3 class="font-bold mb-2">More Info</h3>
179
+ <p>Concessions available</p>
180
+ <p>Family-friendly environment</p>
181
+ </div> <div class="text-center">
182
+ <div class="bg-red-800 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
183
+ <i class="fas fa-question-circle text-2xl text-yellow-400"></i>
184
+ </div>
185
+ <h3 class="font-bold mb-2">Contact Us</h3>
186
+ <p>Email: oldschoolwrestling25@gmail.com</p>
187
+ <p>Phone: 229-206-1609 / 229-309-0788 / 229-205-6430 / 229-254-0524</p>
188
+ </div>
189
+ </section>
190
+ </main>
191
+
192
+ <!-- Footer -->
193
+ <footer class="bg-gray-900 border-t border-gray-800 py-8">
194
+ <div class="container mx-auto px-4 text-center">
195
+ <div class="flex justify-center space-x-6 mb-6">
196
+ <a href="#" class="text-gray-400 hover:text-red-500 text-2xl">
197
+ <i class="fab fa-facebook"></i>
198
+ </a>
199
+ <a href="#" class="text-gray-400 hover:text-red-500 text-2xl">
200
+ <i class="fab fa-twitter"></i>
201
+ </a>
202
+ <a href="#" class="text-gray-400 hover:text-red-500 text-2xl">
203
+ <i class="fab fa-instagram"></i>
204
+ </a>
205
+ </div>
206
+ <p class="text-gray-500">© 2025 Georgia Old School Championship Wrestling LLC. All rights reserved.</p>
207
+ <p class="text-gray-600 text-sm mt-2">Relive the golden era of professional wrestling!</p>
208
+ </div>
209
+ </footer>
210
+
211
+ <script>
212
+ // Simple animation for ticket buttons
213
+ document.querySelectorAll('button').forEach(button => {
214
+ button.addEventListener('mouseenter', function() {
215
+ this.classList.add('animate-bounce');
216
+ });
217
+ button.addEventListener('mouseleave', function() {
218
+ $0
219
+ this.classList.remove('animate-bounce');
220
+ });
221
+ });
222
+ </script>
223
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=GOSCW25/goscw-event-calender" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
224
  </html>
225
+
226
+ <!-- Additional Info Section -->
227
+ <section class="bg-gray-800 rounded-lg p-8 shadow-lg">
228
+ <h2 class="text-2xl font-bold mb-6 text-yellow-400 text-center">KEEP IT OLD SCHOOL</h2>
229
+ <div class="grid md:grid-cols-3 gap-8">
230
+ <div class="text-center">
231
+ <div class="bg-red-800 w-16 h-16 rounded-full flex items-center justify-cent
prompts.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ change southern slug fest date to June 14th 2025.
2
+ change contact to location to Bainbridge, Ga and change the contact phone number to (229) 206 - 1609 and change the email to oldschoolwrestling25@gmail.com
3
+ change the upcoming event date for southern slugfest to June 14
4
+ Change the picture for southern slugfest to an ai generated photo of a fist
5
+ change the photo for southern slugfest to a cartoon photo of a fist
6
+ a professional wrestling website for a company named Georgia Old School Championship Wrestling that showcases the upcoming events and ticket prices. which are $12 per person kids 6 and under free. the up coming events will be Southern Slugfest on june 14th in mloultrie ga doors open at 6pm and the show starts at 7pm. the second event will be Buffs Bash august 2nd in moultrie ga doors open at 6pm and the show starts 7pm, the picture for each event should be a cartoon photo of a fist
7
+ Add $12 Ticket price under show starts