Added options, preparing for Quasar rewrite

This commit is contained in:
2024-01-23 23:53:21 +03:00
parent dd084afb61
commit 4ac1fd9574
32 changed files with 3649 additions and 4609 deletions
+25
View File
@@ -1,5 +1,10 @@
import { defineStore } from 'pinia'
import aboutIcon from '~/assets/images/icons/info.png'
import projectIcon from '~/assets/images/icons/defrag.png'
import socialIcon from '~/assets/images/icons/user.png'
import blogIcon from '~/assets/images/icons/book.png'
export const usePageStore = defineStore('page', () => {
const title: string = 'Enderman'
const description: string = 'official website'
@@ -14,14 +19,34 @@ export const usePageStore = defineStore('page', () => {
{
name: 'About',
path: '/about',
icon: {
src: aboutIcon,
alt: 'Information',
},
},
{
name: 'Projects',
path: '/projects',
icon: {
src: projectIcon,
alt: 'Blocks',
},
},
{
name: 'Socials',
path: '/social',
icon: {
src: socialIcon,
alt: 'Users',
},
},
{
name: 'Blog',
path: '/blog',
icon: {
src: blogIcon,
alt: 'Book',
},
},
])