-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.ts
43 lines (43 loc) · 1.37 KB
/
app.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
export default defineAppConfig({
arch: {
general: {
locale: 'en',
title: 'Arch',
image: 'https://raw.githubusercontent.com/arashsheyda/arch/main/.playground/public/cover.jpg',
description: 'Arch is a Nuxt 3 template for creating your personal website less than a minute.',
keywords: 'nuxt arch, nuxt content, nuxt layers',
favicon: 'https://raw.githubusercontent.com/arashsheyda/arch/main/.playground/public/favicon.ico',
themeColor: '#00cfff',
},
banner: {
image: 'https://raw.githubusercontent.com/arashsheyda/arch/main/.playground/public/images/banner.jpg',
alt: 'Arch Banner',
},
aside: {
name: 'John Doe',
job: 'Full Stack Developer',
image: 'https://raw.githubusercontent.com/arashsheyda/arch/main/.playground/public/images/logo.jpg',
imageHover: 'https://raw.githubusercontent.com/arashsheyda/arch/main/.playground/public/images/logo-hover.jpg',
email: '[email protected]',
company: '@',
location: 'World',
},
footer: {
copyright: {
name: 'Developer',
link: '/',
},
links: [],
poweredBy: true,
},
socials: [
// {
// title: 'Github',
// icon: 'uil:github',
// url: 'https://github.com/arashsheyda/arch',
// color: '#000000',
// target: '_blank',
// },
],
},
})