Files
notxia.github.io/components/projects/cards/StreetAnomaly.vue
2026-04-14 23:10:24 +02:00

15 lines
433 B
Vue

<template>
<ProjectCard
title="Street Anomaly Segmentation" :image="image" image_classes=""
:links="[
{ label: 'Repository', url: 'https://github.com/NotXia/street-anomaly-segmentation' }
]">
<p>{{ $t('street_anomaly.description') }}</p>
</ProjectCard>
</template>
<script setup lang="ts">
import image from "@/assets/images/projects/street_anomaly.png";
</script>