-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscreenshots.js
49 lines (49 loc) · 1.38 KB
/
screenshots.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
42
43
44
45
46
47
48
49
module.exports = {
imageBaseUrl: './static/images/websiteScreenshots',
imageDetails: {
imageBasePath: './static/images',
folderName: 'websiteScreenshots',
imageFileExtension: '.png',
},
pages: [
{
nickname: 'blog',
url: 'https://kevinshu1995.github.io/blog/',
title: '部落格 - 前端路上',
description: '紀錄與程式、前端相關的筆記,及生活故事的簡單紀錄。',
},
{
nickname: 'jsDungeon',
url: 'https://kevinshu1995.github.io/hex_jsDungeon/',
title: '作品集散地 - JS地下城',
description:
'集合幾個 JavaScript 的小專案,未來將整合所有程式相關作品。',
},
{
nickname: 'maskMap',
url: 'https://kevinshu1995.github.io/maskmap/',
title: '口罩地圖',
description:
'因應 2020 年新冠肺炎&剛學 JS,所以寫了這個網站當作練習。',
},
{
nickname: 'reactTailwind-SignUpForm',
url: 'https://react-tailwind-sign-up-form.vercel.app/',
title: 'React x Tailwind - Sign up form',
description:
'My first web application developed with React.js. Submitting on Fronted Mentor.',
links: [
{
name: 'Fronted Mentor',
url:
'https://www.frontendmentor.io/solutions/react-x-tailwind-sign-up-form-jMzVVUSKr',
},
{
name: 'Source code',
url:
'https://github.com/kevinshu1995/react-tailwind-sign-up-form',
},
],
},
],
}