feat!: switch to Nuxt, complete overhaul

This commit is contained in:
2025-07-16 12:47:33 -05:00
parent f5ec1d2264
commit 00c0770388
49 changed files with 7414 additions and 1673 deletions
+24
View File
@@ -0,0 +1,24 @@
<template>
<div class="image-skeleton" />
</template>
<script lang="ts">
import { defineComponent } from 'vue';
export default defineComponent({
name: "ImageSkeleton",
});
</script>
<style lang="scss">
@use "@/scss/_variables.scss" as *;
.image-skeleton {
width: 100%;
height: 100%;
background-color: $gray-400;
display: block;
border-radius: 3px;
}
</style>