feat: NavFooter
This commit is contained in:
parent
42329764dd
commit
efee84d0ea
@ -4,8 +4,7 @@ import { ref } from 'vue';
|
||||
import { useThemeConfig } from '@/plugins/vuetify/@core/composable/useThemeConfig';
|
||||
|
||||
// Components
|
||||
// import Footer from '@/layouts/components/Footer.vue';
|
||||
import newFooter from '@/layouts/components/newFooter.vue';
|
||||
import newFooter from '@/layouts/components/NavFooter.vue';
|
||||
import NavbarThemeSwitcher from '@/layouts/components/NavbarThemeSwitcher.vue';
|
||||
import UserProfile from '@/layouts/components/ChainProfile.vue';
|
||||
|
||||
@ -13,11 +12,8 @@ import { useDashboard } from '@/stores/useDashboard';
|
||||
|
||||
// @layouts plugin
|
||||
import NavBarI18n from './NavBarI18n.vue';
|
||||
import NavSearchBar from './NavSearchBar.vue';
|
||||
import NavBarNotifications from './NavBarNotifications.vue';
|
||||
import NavBarWallet from './NavBarWallet.vue';
|
||||
import TheCustomizer from '@/plugins/vuetify/@core/components/TheCustomizer.vue';
|
||||
import Breadcrumbs from './Breadcrumbs.vue';
|
||||
import { useBlockchain } from '@/stores';
|
||||
|
||||
const { appRouteTransition } = useThemeConfig();
|
||||
@ -44,7 +40,9 @@ const sidebarShow = ref(false);
|
||||
>
|
||||
<div class="flex items-center pl-4 py-4 mb-1">
|
||||
<img class="w-10 h-10" src="../../assets/logo.svg" />
|
||||
<h1 class="flex-1 ml-3 text-2xl font-semibold dark:text-white">Ping.pub</h1>
|
||||
<h1 class="flex-1 ml-3 text-2xl font-semibold dark:text-white">
|
||||
Ping.pub
|
||||
</h1>
|
||||
<div class="pr-4 cursor-pointer xl:hidden" @click="sidebarShow = false">
|
||||
<Icon icon="mdi-close" class="text-3xl" />
|
||||
</div>
|
||||
|
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<footer class="footer items-center p-4 text-base mb-4">
|
||||
<footer class="footer items-center p-4 text-sm mb-4">
|
||||
<div class="items-center grid-flow-col">
|
||||
©
|
||||
{{ new Date().getFullYear() }}
|
@ -1,10 +1,6 @@
|
||||
<script lang="ts" setup>
|
||||
import { useSkins } from '@core/composable/useSkins';
|
||||
import { useThemeConfig } from '@core/composable/useThemeConfig';
|
||||
|
||||
const DefaultLayout = defineAsyncComponent(
|
||||
() => import('./components/DefaultLayout.vue')
|
||||
);
|
||||
import DefaultLayout from './components/DefaultLayout.vue';
|
||||
|
||||
const { layoutAttrs, injectSkinClasses } = useSkins();
|
||||
|
||||
@ -14,8 +10,3 @@ injectSkinClasses();
|
||||
<template>
|
||||
<DefaultLayout v-bind="layoutAttrs" />
|
||||
</template>
|
||||
|
||||
<style lang="scss">
|
||||
// As we are using `layouts` plugin we need its styles to be imported
|
||||
@use '@layouts/styles/default-layout';
|
||||
</style>
|
||||
|
Loading…
Reference in New Issue
Block a user