Removed video tab

This commit is contained in:
2025-08-14 19:35:42 +02:00
parent 472223a929
commit 9a6892f197

View File

@@ -17,26 +17,6 @@
<!-- Tab Content -->
<div class="flex-1 overflow-auto p-4 dark:bg-gray-800 dark:text-gray-200">
<!-- Video Instructions Tab -->
<div v-if="activeTab === 0" class="h-full flex flex-col space-y-6">
<h3 class="text-lg font-semibold mb-4">Video tutorial</h3>
<div class="flex-1 bg-gray-100 dark:bg-gray-700 rounded-lg flex items-center justify-center">
<div class="w-full aspect-video max-w-3xl mx-auto">
<video controls playsinline class="w-full h-full object-contain rounded-lg shadow-md">
<source src="@/assets/tut.mp4" type="video/mp4" />
</video>
</div>
</div>
<h3 class="text-lg font-semibold mb-4">Split spritesheet</h3>
<div class="flex-1 bg-gray-100 dark:bg-gray-700 rounded-lg flex items-center justify-center">
<div class="w-full aspect-video max-w-3xl mx-auto">
<video controls playsinline class="w-full h-full object-contain rounded-lg shadow-md">
<source src="@/assets/tut-split.mp4" type="video/mp4" />
</video>
</div>
</div>
</div>
<!-- About & Instructions Tab -->
<div v-if="activeTab === 1" class="h-full overflow-y-auto">
<h3 class="text-lg font-semibold mb-4">About Spritesheet generator</h3>
@@ -170,7 +150,7 @@
(e: 'close'): void;
}>();
const activeTab = ref(0);
const activeTab = ref(1);
const changelogHtml = ref<string>('');
const tabs = [{ name: 'Video tutorial' }, { name: 'About & instructions' }, { name: 'Support the project' }, { name: 'Changelog' }];