mirror of
https://github.com/NotXia/notxia.github.io.git
synced 2026-05-06 16:56:37 +00:00
14 lines
409 B
Vue
14 lines
409 B
Vue
<template>
|
|
<ProjectCard
|
|
title="Natural example-based XAI" :image="image"
|
|
:links="[
|
|
{ label: 'Repository', url: 'https://github.com/NotXia/natural-examples-xai' }
|
|
]">
|
|
|
|
<p>{{ $t('natural_examples.description') }}</p>
|
|
</ProjectCard>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import image from "@/assets/images/projects/natural_example.png";
|
|
</script> |