Remove unused binary assets: cursor.webp and datagrip.webp

This commit is contained in:
2025-07-24 19:44:01 +02:00
parent 4c05ddf143
commit 55669af5a6
23 changed files with 429 additions and 687 deletions

View File

@@ -30,7 +30,7 @@ defineProps({
size="20"
/>
<span
class="duration-300 underline-offset-2 font-bold text-md text-black dark:text-white underline decoration-gray-300 dark:decoration-neutral-700 group-hover:decoration-black dark:group-hover:decoration-white"
class="duration-300 underline-offset-2 font-semibold text-md text-black dark:text-white underline decoration-gray-300 dark:decoration-neutral-700 group-hover:decoration-black dark:group-hover:decoration-white"
>
{{ label }}
</span>

View File

@@ -1,6 +1,5 @@
<script lang="ts" setup>
import type { UsesItem } from '#components'
import type { PropType } from 'vue'
defineProps({
item: {

View File

@@ -1,16 +1,18 @@
<script lang="ts" setup>
defineProps({
title: {
type: String,
type: Object as PropType<{ en: string; fr: string; es: string }>,
required: true,
},
})
const { locale } = useI18n()
</script>
<template>
<div class="space-y-8">
<USeparator
:label="title"
:label="locale === 'en' ? title.en : locale === 'es' ? title.es : title.fr"
size="xs"
/>
<ul class="space-y-8">