Added options, preparing for Quasar rewrite
This commit is contained in:
@@ -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',
|
||||
},
|
||||
},
|
||||
])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user