diff --git a/public/.well-known/host-meta b/public/.well-known/host-meta new file mode 100644 index 0000000..c4cd566 --- /dev/null +++ b/public/.well-known/host-meta @@ -0,0 +1,4 @@ + + + + diff --git a/public/.well-known/host-meta.json b/public/.well-known/host-meta.json new file mode 100644 index 0000000..c46ce4c --- /dev/null +++ b/public/.well-known/host-meta.json @@ -0,0 +1,9 @@ +{ + "links": [ + { + "rel": "lrdd", + "type": "application/json", + "template": "https://ap.sprints.fedidev.kr/.well-known/webfinger?resource={uri}" + } + ] +} diff --git a/public/.well-known/nodeinfo b/public/.well-known/nodeinfo new file mode 100644 index 0000000..240daa1 --- /dev/null +++ b/public/.well-known/nodeinfo @@ -0,0 +1,12 @@ +{ + "links": [ + { + "rel": "http://nodeinfo.diaspora.software/ns/schema/2.1", + "href": "https://ap.sprints.fedidev.kr/nodeinfo/2.1.json" + }, + { + "rel": "http://nodeinfo.diaspora.software/ns/schema/2.0", + "href": "https://ap.sprints.fedidev.kr/nodeinfo/2.0.json" + } + ] +} diff --git a/public/.well-known/webfinger b/public/.well-known/webfinger new file mode 100644 index 0000000..0f7ed81 --- /dev/null +++ b/public/.well-known/webfinger @@ -0,0 +1,17 @@ +{ + "subject": "acct:sprints.fedidev.kr@sprints.fedidev.kr", + "links": [ + { + "rel": "http://webfinger.net/rel/profile-page", + "type": "text/html", + "href": "https://ap.sprints.fedidev.kr/users/sprints.fedidev.kr", + "template": null + }, + { + "rel": "self", + "type": "application/activity+json", + "href": "https://ap.sprints.fedidev.kr/users/sprints.fedidev.kr", + "template": null + } + ] +} diff --git a/public/assets/logo.png b/public/assets/logo.png index 53d6ba8..2ddfbf9 100644 Binary files a/public/assets/logo.png and b/public/assets/logo.png differ diff --git a/public/assets/logo.svg b/public/assets/logo.svg deleted file mode 100644 index 6999eab..0000000 --- a/public/assets/logo.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/public/favicon.svg b/public/favicon.svg index 0f39062..452e5cd 100644 --- a/public/favicon.svg +++ b/public/favicon.svg @@ -1,13 +1,39 @@ - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/config.ts b/src/config.ts index d7d2c8f..e7fec86 100644 --- a/src/config.ts +++ b/src/config.ts @@ -1,8 +1,8 @@ import type { Site, SocialObjects } from "./types"; export const SITE: Site = { - website: "https://fedidev.kr", // replace this with your deployed domain - author: "Fedi Dev KR", + website: "https://sprints.fedidev.kr", + author: "FediDev KR", profile: "https://fedidev.kr", desc: "한국에 거주하거나 한국어를 사용하는 연합우주(fediverse) 개발자들의 모임입니다.", title: "한국 페디버스 개발자 모임", diff --git a/src/pages/rss.xml.ts b/src/pages/rss.xml.ts index 0fc75c3..5101664 100644 --- a/src/pages/rss.xml.ts +++ b/src/pages/rss.xml.ts @@ -16,5 +16,10 @@ export async function GET() { description: data.description, pubDate: new Date(data.modDatetime ?? data.pubDatetime), })), + customData: ` + ${SITE.website}/assets/logo.png + ${SITE.website}/assets/logo.png + ${SITE.website}/assets/logo.png + ` }); }