Files
notxia.github.io/components/projects/cards/NNFromScratch.vue
2024-08-17 15:55:14 +02:00

15 lines
424 B
Vue

<template>
<ProjectCard
:title="$t('nn_scratch.title')" :image="image" image_classes="dark:invert"
:links="[
{ label: 'Repository', url: 'https://github.com/NotXia/nn-from-scratch' }
]">
<p>{{ $t('nn_scratch.description') }}</p>
</ProjectCard>
</template>
<script setup lang="ts">
import image from "@/assets/images/projects/neural_network.png";
</script>