chore: add some configs

This commit is contained in:
rizaldy 2024-01-31 01:03:12 +07:00
parent 627733ceb9
commit 78319342fc
2 changed files with 46 additions and 0 deletions

40
config.json Normal file
View File

@ -0,0 +1,40 @@
{
"navbar": {
"logotype": "not instagram™",
"logo": "https://s3.rizaldy.club/0x0/d43840c5ee4ec66a3bee3c6e2.png"
},
"profile": {
"avatar": "https://s3.rizaldy.club/0x0/IMG_6279.JPG",
"username":"faultables",
"follow_url": "https://edgy.social/@rizaldy",
"message_url": "mailto:rizaldy@duck.com",
"display_name": "rizaldy",
"about": "SRE, DevOps, and everything in between",
"link": "rizaldy.club"
},
"footer": {
"repo": "https://github.com/faultables/ig.rizaldy.club",
"links": [
{
"label": "About",
"url": "/static/about"
},
{
"label": "Blog",
"url": "https://rizaldy.club"
},
{
"label": "Mastodon",
"url": "https://edgy.social/@rizaldy"
},
{
"label": "Bluesky",
"url": "https://bsky.app/profile/rizaldy.club"
}
],
"license": {
"name": "CC BY-NC-SA 4.0",
"url": "https://creativecommons.org/licenses/by-nc-sa/4.0/"
}
}
}

6
next.config.js Normal file
View File

@ -0,0 +1,6 @@
module.exports = {
output: "export",
env: {
COMMIT_SHORT_SHA: process.env.COMMIT_SHORT_SHA || "HEAD",
},
};