2024-01-21 13:54:41 +09:00
|
|
|
import type {
|
|
|
|
LicenseConfig,
|
|
|
|
NavBarConfig,
|
|
|
|
ProfileConfig,
|
|
|
|
SiteConfig,
|
2024-02-18 18:13:43 +08:00
|
|
|
} from './types/config'
|
|
|
|
import { LinkPreset } from './types/config'
|
2023-10-23 17:45:07 +08:00
|
|
|
|
|
|
|
export const siteConfig: SiteConfig = {
|
2024-01-21 13:54:41 +09:00
|
|
|
title: 'Fuwari',
|
|
|
|
subtitle: 'Demo Site',
|
|
|
|
lang: 'en',
|
|
|
|
themeHue: 250,
|
|
|
|
banner: {
|
2024-02-18 18:13:43 +08:00
|
|
|
enable: false,
|
2024-01-21 13:54:41 +09:00
|
|
|
src: 'assets/images/demo-banner.png',
|
|
|
|
},
|
2024-04-23 02:57:38 +08:00
|
|
|
favicon: [ // Leave this array empty to use the default favicon
|
|
|
|
// {
|
|
|
|
// src: '/favicon/icon.png', // Path of the favicon, relative to the /public directory
|
|
|
|
// theme: 'light', // (Optional) Either 'light' or 'dark', set only if you have different favicons for light and dark mode
|
|
|
|
// sizes: '32x32', // (Optional) Size of the favicon, set only if you have favicons of different sizes
|
|
|
|
// }
|
|
|
|
]
|
2023-10-23 17:45:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const navBarConfig: NavBarConfig = {
|
2024-01-21 13:54:41 +09:00
|
|
|
links: [
|
|
|
|
LinkPreset.Home,
|
|
|
|
LinkPreset.Archive,
|
|
|
|
LinkPreset.About,
|
|
|
|
{
|
|
|
|
name: 'GitHub',
|
|
|
|
url: 'https://github.com/saicaca/fuwari',
|
|
|
|
external: true,
|
|
|
|
},
|
|
|
|
],
|
2023-10-23 17:45:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const profileConfig: ProfileConfig = {
|
2024-01-21 13:54:41 +09:00
|
|
|
avatar: 'assets/images/demo-avatar.png',
|
|
|
|
name: 'Lorem Ipsum',
|
|
|
|
bio: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.',
|
|
|
|
links: [
|
|
|
|
{
|
|
|
|
name: 'Twitter',
|
|
|
|
icon: 'fa6-brands:twitter',
|
|
|
|
url: 'https://twitter.com',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Steam',
|
|
|
|
icon: 'fa6-brands:steam',
|
|
|
|
url: 'https://store.steampowered.com',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'GitHub',
|
|
|
|
icon: 'fa6-brands:github',
|
|
|
|
url: 'https://github.com/saicaca/fuwari',
|
|
|
|
},
|
|
|
|
],
|
2023-11-03 14:10:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const licenseConfig: LicenseConfig = {
|
2024-01-21 13:54:41 +09:00
|
|
|
enable: true,
|
|
|
|
name: 'CC BY-NC-SA 4.0',
|
|
|
|
url: 'https://creativecommons.org/licenses/by-nc-sa/4.0/',
|
|
|
|
}
|