Remove duplicate 'Alle Termine anzeigen' button from TermineVorschau
This commit is contained in:
@@ -38,22 +38,12 @@
|
||||
<Calendar :size="32" class="text-gray-400 mx-auto mb-2" />
|
||||
<p class="text-gray-600 text-sm">Keine kommenden Termine</p>
|
||||
</div>
|
||||
|
||||
<div v-if="naechsteTermine.length > 0" class="text-center">
|
||||
<NuxtLink
|
||||
to="/termine"
|
||||
class="inline-flex items-center px-4 py-2 bg-primary-600 hover:bg-primary-700 text-white text-sm font-medium rounded-lg transition-colors"
|
||||
>
|
||||
Alle Termine anzeigen
|
||||
<ArrowRight :size="16" class="ml-1" />
|
||||
</NuxtLink>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, computed, onMounted } from 'vue'
|
||||
import { Calendar, ArrowRight } from 'lucide-vue-next'
|
||||
import { Calendar } from 'lucide-vue-next'
|
||||
|
||||
const termine = ref([])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user