Skip to content

Commit 67958ff

Browse files
committedSep 24, 2024
chore: Replace docs to website
1 parent f783bbb commit 67958ff

File tree

3 files changed

+14
-16
lines changed

3 files changed

+14
-16
lines changed
 

‎CONTRIBUTING.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
# Contribute Guide: Pulsate Docs
1+
# Contribute Guide: Pulsate Website
22

3-
Pulsate Docs (`docs.pulsate.dev`) への貢献方法についてのガイドです。
3+
Pulsate Website (`pulsate.dev`) への貢献方法についてのガイドです。
44

55
> [!NOTE]
66
>
7-
> - このドキュメントは, Pulsate Docs の貢献方法についてのガイドです. Pulsate 本体への貢献については, [Pulsateのリポジトリ](https://github.com/pulsate-dev/pulsate)を参照してください。
7+
> - このドキュメントは, Pulsate Website の貢献方法についてのガイドです. Pulsate 本体への貢献については, [Pulsateのリポジトリ](https://github.com/pulsate-dev/pulsate)を参照してください。
88
> - 全てのコントリビューターとメンテナは [行動規範](https://github.com/pulsate-dev/.github?tab=coc-ov-file) に従う必要があります.
99
1010
## Pull Request の提出
1111

12-
Pulsate Docs に対する Pull Request を提出する際は, 以下の注意点に従ってください.
12+
Pulsate Website に対する Pull Request を提出する際は, 以下の注意点に従ってください.
1313

1414
- 全ての Pull Request は, `main` ブランチに対して提出してください.
1515
- Pull Request には, その変更に関する説明を含めてください.
@@ -21,7 +21,7 @@ Pulsate のメンテナのレビューと承認を得られれば, マージす
2121

2222
> [!WARNING]
2323
>
24-
> Pulsate Docs で使用しているフォーマッタである Biome は現時点で `.mdx` ファイルのフォーマットをサポートしていません.
24+
> Pulsate Website で使用しているフォーマッタである Biome は現時点で `.mdx` ファイルのフォーマットをサポートしていません.
2525
> 大きく形式が崩れていなければ, マージしてもよいと判断しているため, そのまま提出してください.
2626
2727
### コミットメッセージの提出

‎astro.config.mjs

+8-7
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import starlightOpenAPIPlugin, {openAPISidebarGroups} from "starlight-openapi";
77
// https://astro.build/config
88
export default defineConfig({
99
integrations: [starlight({
10-
title: 'Pulsate Docs',
11-
description: 'Documentation for Pulsate',
10+
title: 'Pulsate',
11+
description: 'Website and Documentation for Pulsate',
1212
lastUpdated: true,
1313
pagination: false,
1414
favicon: './src/assets/logo.png',
@@ -31,25 +31,26 @@ export default defineConfig({
3131
social: {
3232
discord: 'https://link.pulsate.dev/discord',
3333
github: 'https://github.com/pulsate-dev/pulsate',
34-
twitter: 'https://link.pulsate.dev/x',
35-
youtube: 'https://link.pulsate.dev/youtube'
3634
},
3735
plugins: [
3836
starlightOpenAPIPlugin([
3937
{
4038
base: 'api-reference',
4139
label: 'API Reference',
40+
// TODO: `main` からタグに切り替える
4241
schema: 'https://raw.githubusercontent.com/pulsate-dev/pulsate/main/resources/schema.json'
4342
},
4443
]),
4544
],
4645
sidebar: [
4746
{
48-
label: 'リリースノート',
47+
label: 'コミュニティ',
4948
translations: {
50-
en: 'Release Note'
49+
en: 'Community'
5150
},
52-
link: '/release-note'
51+
items: [
52+
'community/sponsor',
53+
]
5354
},
5455
...openAPISidebarGroups
5556
]

‎src/content/docs/index.mdx

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
---
22
title: Pulsate
3-
head:
4-
- tag: title
5-
content: Easy-to-change, faster, developer friendly next generation decentralized social media.
63
description: Easy-to-change, faster, developer friendly next generation decentralized social media.
74
template: splash
85
editUrl: false
@@ -29,7 +26,7 @@ import { Aside, Card, CardGrid } from '@astrojs/starlight/components';
2926
<br />
3027

3128
<CardGrid stagger>
32-
<Card icon="rocket" title="高いパファーマンス" >
29+
<Card icon="rocket" title="高いパフォーマンス" >
3330
Misskey や Mastodon のような他の ActivityPub 実装よりも高速に動作します。
3431
</Card>
3532
<Card icon="heart" title="ユーザー中心の設計" >

0 commit comments

Comments
 (0)
Please sign in to comment.