mirror of
https://github.com/bakateam/merakiui.git
synced 2025-12-09 23:15:35 +00:00
Fix broken components & update navbars logo
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
<template>
|
||||
<div :class="{ 'dark' : darkMode }">
|
||||
<div class="bg-white dark:bg-gray-900 font-roboto">
|
||||
<header-component></header-component>
|
||||
<main-component></main-component>
|
||||
<header-component />
|
||||
<main-component />
|
||||
<footer-component />
|
||||
|
||||
<back-to-top visibleoffset="800">
|
||||
<app-button class="fixed bottom-0 right-0 p-2 mx-10 my-10 text-white bg-gray-800 rounded-md hover:bg-gray-900 dark:hover:bg-gray-700 focus:outline-none" aria-label="Back to top">
|
||||
@@ -28,10 +29,11 @@
|
||||
import AppButton from "~/components/utilities/AppButton.vue";
|
||||
import HeaderComponent from "~/components/Header";
|
||||
import MainComponent from "~/components/Main";
|
||||
import FooterComponent from "~/components/Footer";
|
||||
import BackToTop from "vue-backtotop";
|
||||
|
||||
export default {
|
||||
components: { AppButton, HeaderComponent, MainComponent, BackToTop },
|
||||
components: { AppButton, HeaderComponent, MainComponent, FooterComponent, BackToTop },
|
||||
|
||||
data() {
|
||||
return {
|
||||
@@ -42,7 +44,6 @@ export default {
|
||||
watch: {
|
||||
darkMode() {
|
||||
localStorage.setItem("darkMode", this.darkMode);
|
||||
console.log('Night Mode: ' + this.darkMode);
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user