mirror of
https://github.com/NotXia/notxia.github.io.git
synced 2026-05-06 08:46:40 +00:00
15 lines
433 B
Vue
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> |