67 lines
2.6 KiB
JavaScript
67 lines
2.6 KiB
JavaScript
/**
|
|
* nudoragon / LCY94 Linktree Configuration
|
|
*
|
|
* 只需要修改這裡的內容,頁面就會自動更新。
|
|
*/
|
|
const CONFIG = {
|
|
profile: {
|
|
name: "nudoragon",
|
|
bio: "設計與開發的探索者 | 建立數位世界的連結",
|
|
avatar: "avatar.png", // 已從部落格擷取
|
|
copyrightYear: 2026
|
|
},
|
|
links: [
|
|
{
|
|
title: "個人部落格",
|
|
desc: "分享技術開發與生活紀錄",
|
|
url: "https://blog.nudoragon.com",
|
|
icon: "fas fa-blog",
|
|
delay: "0.1s",
|
|
category: "content",
|
|
visible: true,
|
|
order: 2
|
|
},
|
|
{
|
|
title: "Gitea",
|
|
desc: "查看我的開源專案與代碼",
|
|
url: "https://code.nudoragon.com",
|
|
icon: "fas fa-code-branch",
|
|
delay: "0.2s",
|
|
category: "development",
|
|
visible: true,
|
|
order: 3
|
|
},
|
|
{
|
|
title: "Stickers 模組",
|
|
desc: "我開發的貼圖服務系統",
|
|
url: "https://stickers.example.com",
|
|
icon: "fas fa-code",
|
|
delay: "0.3s",
|
|
category: "development",
|
|
visible: false,
|
|
order: 4
|
|
},
|
|
{
|
|
title: "聯絡我",
|
|
desc: "透過電子郵件與我聯繫",
|
|
url: "mailto:a@z.nudoragon.com",
|
|
icon: "fas fa-envelope",
|
|
delay: "0.4s",
|
|
category: "contact",
|
|
visible: true,
|
|
order: 1
|
|
}
|
|
],
|
|
socials: [
|
|
{ name: "Instagram", url: "https://www.instagram.com/nudoragon/", icon: "fab fa-instagram", visible: true, order: 1 },
|
|
{ name: "Threads", url: "https://www.threads.net/@nudoragon", icon: "fas fa-at", visible: true, order: 2, note: "使用 @ 符號替代" },
|
|
{ name: "Facebook", url: "https://www.facebook.com/nudoragon/", icon: "fab fa-facebook", visible: true, order: 3 },
|
|
{ name: "Twitter", url: "https://twitter.com/nudoragon", icon: "fab fa-twitter", visible: true, order: 4 },
|
|
{ name: "Bluesky", url: "https://bsky.app/profile/nudoragon.bsky.social", icon: "fas fa-cloud", visible: true, order: 5, note: "使用雲朵圖標替代" },
|
|
{ name: "Discord", url: "https://discord.gg/nHjUJJXGVG", icon: "fab fa-discord", visible: true, order: 6 },
|
|
{ name: "Line", url: "#", icon: "fab fa-line", visible: false, order: 7 },
|
|
{ name: "Telegram", url: "#", icon: "fab fa-telegram", visible: false, order: 8 },
|
|
{ name: "Mail", url: "mailto:a@z.nudoragon.com", icon: "fas fa-envelope", visible: true, order: 9 }
|
|
]
|
|
};
|