JS und CSS Dateien hinzugefügt, Navbar-Component hinzugefügt, Fonts korrigiert

This commit is contained in:
R40fendt
2025-04-04 20:47:38 +02:00
parent b4dca8e5b0
commit 1b31a84e18
22 changed files with 2172 additions and 6 deletions

View File

@@ -1,10 +1,34 @@
<script lang="ts">
export default {}
<script lang="js">
import { RouterView } from 'vue-router';
import Navbar from './Navbar.vue';
import './assets/parallax/jarallax.js';
import './assets/bootstrap/js/bootstrap.bundle.min.js';
import './assets/dropdown/js/navbar-dropdown.js';
import './assets/mbr-switch-arrow/mbr-switch-arrow.js';
import './assets/embla/embla.min.js';
import './assets/embla/script.js';
import './assets/scrollgallery/scroll-gallery.js';
import './assets/smoothscroll/smooth-scroll.js';
/* import './assets/ytplayer/index.js'; */
import './assets/theme/js/script.js';
import './assets/formoid/formoid.min.js';
/*import './assets/modal.js';*/
export default {
components: {
RouterView,
Navbar
}
}
</script>
<template>
<!-- Haupt-Component -->
<!-- Navigationsleiste, Footer, Klönkasten etc. -->
<Navbar/>
<RouterView/>
</template>
<style scoped>
<style>
</style>