We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5afa18a commit 18e3ddcCopy full SHA for 18e3ddc
components/content/FeaturesSection.vue
@@ -12,12 +12,12 @@
12
<div class="mb-6 flex h-20 w-20 items-center justify-center rounded-2xl bg-primary/10 p-3 group-hover:bg-primary/20 transition-colors">
13
<template v-if="feature?.icon">
14
<NuxtImg
15
- :src="feature.icon.light || '/placeholder-icon-light.png'"
+ :src="feature.icon.light"
16
:alt="feature.icon.alt || feature.title"
17
class="h-10 w-10 object-contain dark:hidden"
18
/>
19
20
- :src="feature.icon.dark || feature.icon.light || '/placeholder-icon-dark.png'"
+ :src="feature.icon.dark || feature.icon.light"
21
22
class="hidden h-10 w-10 object-contain dark:block"
23
0 commit comments