feat(frontend): link naar leerpad-zoekpagina aan homepagina toegevoegd

This commit is contained in:
Gerald Schmittinger 2025-04-24 09:40:52 +02:00
parent 95a3d7b0d9
commit 5b9b939c0b
6 changed files with 44 additions and 10 deletions

View file

@ -11,7 +11,7 @@
selectedAge: { type: String, required: true },
});
const { locale } = useI18n();
const { t, locale } = useI18n();
const language = computed(() => locale.value);
const { data: allThemes, isLoading, error } = useThemeQuery(language);
@ -74,6 +74,22 @@
class="fill-height"
/>
</v-col>
<v-col
cols="12"
sm="6"
md="4"
lg="4"
class="d-flex"
>
<ThemeCard
path="/learningPath/search"
:is-absolute-path="true"
:title="t('searchAllLearningPathsTitle')"
:description="t('searchAllLearningPathsDescription')"
icon="mdi-magnify"
class="fill-height"
/>
</v-col>
</v-row>
</v-container>
</template>