Add prettier config, format codebase

This commit is contained in:
David Haz
2025-07-12 11:59:33 +03:00
parent ac8b2c04d8
commit f4d97ee94e
211 changed files with 10586 additions and 8810 deletions

View File

@@ -4,10 +4,14 @@
<div class="footer-content">
<div class="footer-left">
<img :src="vueBitsLogo" alt="Vue Bits" class="footer-logo" />
<p class="footer-description">
A library created with <i class="pi pi-heart-fill footer-heart"></i> by
A library created with
<i class="pi pi-heart-fill footer-heart"></i>
by
<a href="https://davidhaz.com/" target="_blank" class="footer-creator-link">this guy</a>
</p>
<p class="footer-copyright">© {{ currentYear }} Vue Bits</p>
</div>
@@ -15,15 +19,12 @@
<a href="https://github.com/DavidHDev/vue-bits" target="_blank" rel="noopener noreferrer" class="footer-link">
GitHub
</a>
<router-link to="/text-animations/split-text" class="footer-link">
Docs
</router-link>
<a href="https://www.jsrepo.com/" target="_blank" class="footer-link">
CLI
</a>
<a href="https://reactbits.dev/" target="_blank" class="footer-link">
React Bits
</a>
<router-link to="/text-animations/split-text" class="footer-link">Docs</router-link>
<a href="https://www.jsrepo.com/" target="_blank" class="footer-link">CLI</a>
<a href="https://reactbits.dev/" target="_blank" class="footer-link">React Bits</a>
</div>
</div>
</footer>
@@ -31,10 +32,10 @@
</template>
<script setup lang="ts">
import { computed } from 'vue'
import vueBitsLogo from '../../../assets/logos/vue-bits-logo.svg'
import FadeContent from '@/content/Animations/FadeContent/FadeContent.vue'
import './Footer.css'
import { computed } from 'vue';
import vueBitsLogo from '../../../assets/logos/vue-bits-logo.svg';
import FadeContent from '@/content/Animations/FadeContent/FadeContent.vue';
import './Footer.css';
const currentYear = computed(() => new Date().getFullYear())
</script>
const currentYear = computed(() => new Date().getFullYear());
</script>