updated directory structure to fix root Service Worker issues and performance improvements

This commit is contained in:
Keep Creating Online
2025-02-05 16:54:40 -05:00
parent 03c28dacab
commit b6b61e4e15
94 changed files with 2265 additions and 79 deletions

5
views/explore.html Normal file
View File

@@ -0,0 +1,5 @@
<!-- views/explore.html -->
<section>
<h2 class="text-xl mb-4 text-gray-700">Explore</h2>
<p class="text-gray-600">Coming Soon...</p>
</section>

View File

@@ -0,0 +1,13 @@
<!-- views/most-recent-videos.html -->
<section>
<!-- You can have a heading if you want -->
<h2 class="text-xl mb-4 text-gray-700">Most Recent Videos</h2>
<!-- Video List -->
<div
id="videoList"
class="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-3 gap-8"
>
<!-- Videos will be dynamically inserted here -->
</div>
</section>

5
views/subscriptions.html Normal file
View File

@@ -0,0 +1,5 @@
<!-- views/subscriptions.html -->
<section>
<h2 class="text-xl mb-4 text-gray-700">Subscriptions</h2>
<p class="text-gray-600">Coming Soon...</p>
</section>