forked from vzhou842/victorzhou.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
41 lines (40 loc) · 996 Bytes
/
config.js
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
'use strict';
module.exports = {
url: 'https://victorzhou.com',
title: 'victorzhou.com',
subtitle: 'Software Engineer. I blog about web development, machine learning, and more topics.',
copyright: '© Victor Zhou 2022',
postsPerPage: 8,
googleAnalyticsId: 'UA-58664433-1',
menu: [
{
label: 'Blog',
path: '/',
},
{
label: 'About',
path: '/about/',
},
{
label: 'Tags',
path: '/tags/',
},
{
label: 'More Posts',
path: '/posts/',
},
],
author: {
name: 'Victor Zhou',
photo: '/photo2.png',
photoLarge: '/photo2-large.png',
bio: 'Software Engineer. I blog about <a href="/tag/web-development/">web development</a>, <a href="/tag/machine-learning/">machine learning</a>, and <a href="/tags/">more topics</a>.',
contacts: {
email: 'vzhou842@gmail.com',
twitter: 'victorczhou',
github: 'vzhou842',
rss: '/rss.xml',
},
},
previewImage: '/preview.png',
};