From 114bc4efeae5434cceca309fc77a3d6a7cf2dbb7 Mon Sep 17 00:00:00 2001 From: Fascinated Date: Thu, 13 Jul 2023 05:19:56 +0100 Subject: [PATCH 1/4] move config to example config so locally using it isn't a pain --- config.json | 73 ----------------------------------------------------- 1 file changed, 73 deletions(-) delete mode 100644 config.json diff --git a/config.json b/config.json deleted file mode 100644 index 23c2d5d..0000000 --- a/config.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "configVersion": "0.1.4", - "name": "Your Name", - "description": "A description about yourself", - "avatar": "/avatar.webp", - "background": { - "showBackground": true, - "blur": true, - "darken": { - "enabled": true, - "amount": 0.7 - }, - "backgroundImage": "/background.jpg" - }, - "theme": "dark", - "infoCard": { - "transparency": 0.85 - }, - "discord": { - "id": "set me" - }, - "options": { - "showSourceLink": true - }, - "metadata": { - "title": "Your Name", - "description": "website description", - "themeColor": "#6441a5", - "authors": [ - { - "name": "Fascinated", - "url": "https://fascinated.cc" - } - ] - }, - "links": [ - { - "title": "Git", - "url": "https://git.fascinated.cc", - "icon": "fab fa-git-alt", - "color": { - "normal": "bg-green-700" - } - }, - { - "title": "Twitch", - "url": "https://twitch.tv/fascinated_", - "icon": "fab fa-twitch", - "color": "bg-[#6441a5]" - }, - { - "title": "Documentation", - "url": "https://docs.fascinated.cc", - "color": "bg-neutral-700" - } - ], - "socialLinks": [ - { - "icon": "fab fa-twitter", - "color": "#1DA1F2", - "url": "https://twitter.com" - }, - { - "icon": "fab fa-reddit", - "color": "#FF4300", - "url": "https://www.reddit.com/user/ImFascinatedMC" - }, - { - "icon": "fab fa-git-alt", - "url": "https://git.fascinated.cc" - } - ] -} From ac3bb77438cfdfbe854de4f4edc12de72920e949 Mon Sep 17 00:00:00 2001 From: Fascinated Date: Thu, 13 Jul 2023 05:20:06 +0100 Subject: [PATCH 2/4] below vv --- .gitignore | 3 ++ config-example.json | 73 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 76 insertions(+) create mode 100644 config-example.json diff --git a/.gitignore b/.gitignore index 311622e..c3c1c7a 100644 --- a/.gitignore +++ b/.gitignore @@ -143,3 +143,6 @@ dist .yarn/build-state.yml .yarn/install-state.gz .pnp.* + +# Config +config.json \ No newline at end of file diff --git a/config-example.json b/config-example.json new file mode 100644 index 0000000..23c2d5d --- /dev/null +++ b/config-example.json @@ -0,0 +1,73 @@ +{ + "configVersion": "0.1.4", + "name": "Your Name", + "description": "A description about yourself", + "avatar": "/avatar.webp", + "background": { + "showBackground": true, + "blur": true, + "darken": { + "enabled": true, + "amount": 0.7 + }, + "backgroundImage": "/background.jpg" + }, + "theme": "dark", + "infoCard": { + "transparency": 0.85 + }, + "discord": { + "id": "set me" + }, + "options": { + "showSourceLink": true + }, + "metadata": { + "title": "Your Name", + "description": "website description", + "themeColor": "#6441a5", + "authors": [ + { + "name": "Fascinated", + "url": "https://fascinated.cc" + } + ] + }, + "links": [ + { + "title": "Git", + "url": "https://git.fascinated.cc", + "icon": "fab fa-git-alt", + "color": { + "normal": "bg-green-700" + } + }, + { + "title": "Twitch", + "url": "https://twitch.tv/fascinated_", + "icon": "fab fa-twitch", + "color": "bg-[#6441a5]" + }, + { + "title": "Documentation", + "url": "https://docs.fascinated.cc", + "color": "bg-neutral-700" + } + ], + "socialLinks": [ + { + "icon": "fab fa-twitter", + "color": "#1DA1F2", + "url": "https://twitter.com" + }, + { + "icon": "fab fa-reddit", + "color": "#FF4300", + "url": "https://www.reddit.com/user/ImFascinatedMC" + }, + { + "icon": "fab fa-git-alt", + "url": "https://git.fascinated.cc" + } + ] +} From 69a7c0026713d7f61129eef1624fd79f2e319ca0 Mon Sep 17 00:00:00 2001 From: Fascinated Date: Thu, 13 Jul 2023 05:31:23 +0100 Subject: [PATCH 3/4] make the status indiator bigger --- src/app/components/Avatar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/Avatar.tsx b/src/app/components/Avatar.tsx index aa9644b..8865551 100644 --- a/src/app/components/Avatar.tsx +++ b/src/app/components/Avatar.tsx @@ -53,7 +53,7 @@ function LanyardComponent(props: { discord: any }) {
{hasLanyard && (
)}
From 4b28645ab3b14a559a81f64efd46cac0e92e8a86 Mon Sep 17 00:00:00 2001 From: Fascinated Date: Thu, 13 Jul 2023 05:32:03 +0100 Subject: [PATCH 4/4] bump version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 584c2b9..36640e7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simple-links", - "version": "0.1.8", + "version": "0.1.9", "private": false, "scripts": { "dev": "next dev",