Spaces:
Running
Running
Update index.html
Browse files- index.html +45 -10
index.html
CHANGED
@@ -74,18 +74,53 @@
|
|
74 |
</section>
|
75 |
|
76 |
<section class="py-12 bg-gray-50">
|
77 |
-
|
78 |
-
|
79 |
-
|
|
|
80 |
<p>These listings are curated by the StreamAI platform and submitted by fans. StreamAI does not host and is not responsible for the content of external sites.</p>
|
81 |
-
</div>
|
82 |
-
<div class="max-w-4xl mx-auto mb-8 bg-white p-4 rounded-lg shadow">
|
83 |
-
<div class="flex items-center mb-2"><i class="fas fa-rss-square text-orange-500 mr-2"></i><h3 class="font-semibold">Personalized RSS Feed</h3></div>
|
84 |
-
<div id="rss-feed" class="mt-4 space-y-3"></div>
|
85 |
-
</div>
|
86 |
-
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4" id="recommendations-container"></div>
|
87 |
</div>
|
88 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
|
90 |
<footer class="bg-gray-800 text-white py-12">
|
91 |
<div class="container mx-auto px-4 text-center"><p>© 2025 StreamAI. All rights reserved.</p></div>
|
|
|
74 |
</section>
|
75 |
|
76 |
<section class="py-12 bg-gray-50">
|
77 |
+
<div class="container mx-auto px-4">
|
78 |
+
<h2 class="text-3xl font-bold text-center mb-2 text-gray-800">Fan Favorites & Recommendations</h2>
|
79 |
+
|
80 |
+
<div class="text-center text-xs text-gray-500 mb-8 max-w-2xl mx-auto">
|
81 |
<p>These listings are curated by the StreamAI platform and submitted by fans. StreamAI does not host and is not responsible for the content of external sites.</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
</div>
|
83 |
+
|
84 |
+
<div class="max-w-2xl mx-auto mb-12 bg-white p-6 rounded-lg shadow-md">
|
85 |
+
<h3 class="text-xl font-semibold mb-4">Contribute a Fan Favorite!</h3>
|
86 |
+
<form id="add-listing-form" class="space-y-4">
|
87 |
+
<div>
|
88 |
+
<label for="listing-title" class="block text-sm font-medium text-gray-700">Title</label>
|
89 |
+
<input type="text" id="listing-title" name="title" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500" required>
|
90 |
+
</div>
|
91 |
+
<div>
|
92 |
+
<label for="listing-url" class="block text-sm font-medium text-gray-700">URL</label>
|
93 |
+
<input type="url" id="listing-url" name="url" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500" required>
|
94 |
+
</div>
|
95 |
+
<div>
|
96 |
+
<label for="listing-description" class="block text-sm font-medium text-gray-700">Short Description</label>
|
97 |
+
<textarea id="listing-description" name="description" rows="2" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500"></textarea>
|
98 |
+
</div>
|
99 |
+
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
|
100 |
+
<div>
|
101 |
+
<label for="listing-source" class="block text-sm font-medium text-gray-700">Your Name (or Nickname)</label>
|
102 |
+
<input type="text" id="listing-source" name="source_name" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500" required>
|
103 |
+
</div>
|
104 |
+
<div>
|
105 |
+
<label for="listing-category" class="block text-sm font-medium text-gray-700">Category</label>
|
106 |
+
<select id="listing-category" name="category" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500">
|
107 |
+
<option value="local_town">Local Town Favorite</option>
|
108 |
+
<option value="city">City Favorite</option>
|
109 |
+
<option value="national">National Recommendation</option>
|
110 |
+
</select>
|
111 |
+
</div>
|
112 |
+
</div>
|
113 |
+
<div>
|
114 |
+
<button type="submit" id="submit-listing-btn" class="w-full flex justify-center py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
|
115 |
+
Submit Listing
|
116 |
+
</button>
|
117 |
+
</div>
|
118 |
+
</form>
|
119 |
+
</div>
|
120 |
+
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4" id="recommendations-container">
|
121 |
+
</div>
|
122 |
+
</div>
|
123 |
+
</section>
|
124 |
|
125 |
<footer class="bg-gray-800 text-white py-12">
|
126 |
<div class="container mx-auto px-4 text-center"><p>© 2025 StreamAI. All rights reserved.</p></div>
|