From 78319342fc96bb4462b3867284e58c34bd86e328 Mon Sep 17 00:00:00 2001 From: rizaldy Date: Wed, 31 Jan 2024 01:03:12 +0700 Subject: [PATCH] chore: add some configs --- config.json | 40 ++++++++++++++++++++++++++++++++++++++++ next.config.js | 6 ++++++ 2 files changed, 46 insertions(+) create mode 100644 config.json create mode 100644 next.config.js diff --git a/config.json b/config.json new file mode 100644 index 0000000..1831c50 --- /dev/null +++ b/config.json @@ -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/" + } + } +} \ No newline at end of file diff --git a/next.config.js b/next.config.js new file mode 100644 index 0000000..dceb820 --- /dev/null +++ b/next.config.js @@ -0,0 +1,6 @@ +module.exports = { + output: "export", + env: { + COMMIT_SHORT_SHA: process.env.COMMIT_SHORT_SHA || "HEAD", + }, +};