Move many things over from Knossos (and other rearrangements) (#102)

This commit is contained in:
Emma Alexia
2023-10-16 21:18:23 -04:00
committed by GitHub
parent 46a6fee81d
commit 8369330053
68 changed files with 852 additions and 342 deletions

View File

@@ -7,7 +7,7 @@
stroke-miterlimit="2"
clip-rule="evenodd"
viewBox="0 0 3307 593"
:class="{ animate: animate }"
:class="{ animate }"
>
<path
fill-rule="nonzero"
@@ -30,16 +30,13 @@
</svg>
</template>
<script>
export default {
name: 'TextLogo',
props: {
animate: {
type: Boolean,
default: false,
},
<script setup>
defineProps({
animate: {
type: Boolean,
default: false,
},
}
})
</script>
<style lang="scss" scoped>