Skip to content

Commit

Permalink
feat: Add roadmap page
Browse files Browse the repository at this point in the history
  • Loading branch information
m1sk9 committed Aug 16, 2024
1 parent 55cd422 commit c84b882
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/organisms/Navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const NavigationItems: NavigationProps[] = [
{ key: 'GitHub ↗', href: 'https://github.com/pulsate-dev/pulsate' },
{
key: 'Roadmap ↗',
href: 'https://github.com/orgs/pulsate-dev/projects/5',
href: '/roadmap',
},
];

Expand Down
5 changes: 5 additions & 0 deletions pages/_meta.en.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,10 @@
"release-note": {
"title": "Release Note",
"type": "page"
},
"roadmap": {
"title": "Roadmap",
"type": "page",
"display": "hidden"
}
}
5 changes: 5 additions & 0 deletions pages/_meta.ja.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,10 @@
"release-note": {
"title": "リリースノート",
"type": "page"
},
"roadmap": {
"title": "ロードマップ",
"type": "page",
"display": "hidden"
}
}
2 changes: 1 addition & 1 deletion pages/docs/introduction.en.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {Callout, Card, Cards} from "nextra/components";
<Cards>
<Card arrow title="About Project" href="/docs/about"></Card>
<Card arrow title="Join Pulsate Dev" href="/docs/developer/join-pulsate"></Card>
<Card arrow title="Roadmap" href="/docs/roadmap"></Card>
<Card arrow title="Roadmap" href="/roadmap"></Card>
<Card arrow title="Project Team" href="/docs/team"></Card>
<Card arrow title="FAQ" href="/docs/faq"></Card>
</Cards>
Expand Down
2 changes: 1 addition & 1 deletion pages/docs/introduction.ja.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {Callout, Card, Cards} from "nextra/components";
<Cards>
<Card arrow title="プロジェクトについて" href="/docs/about"></Card>
<Card arrow title="開発に参加する" href="/docs/developer/join-pulsate"></Card>
<Card arrow title="ロードマップ" href="/docs/roadmap"></Card>
<Card arrow title="ロードマップ" href="/roadmap"></Card>
<Card arrow title="プロジェクトチーム" href="/docs/team"></Card>
<Card arrow title="FAQ (質問集)" href="/docs/faq"></Card>
</Cards>
Expand Down
5 changes: 5 additions & 0 deletions pages/roadmap.en.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import NoTransCallout from "../components/molecules/NoTransCallout";

# ロードマップ

<NoTransCallout lang="en" />
16 changes: 16 additions & 0 deletions pages/roadmap.ja.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { Cards, Card } from 'nextra/components'

# ロードマップ

Pulsate v0 (開発途上版) は以下の流れで提供されます。

1. Pulsate v0.1: 最小限に留めた SNS 機能の提供
2. Pulsate v0.2: 根幹にあたるSNSプロトコル 「ActivityPub」の実装
3. Pulsate v0.3: v1 リリースに向けた UX の改善・向上
4. Pulsate v0.4: インスタンスのモデレーション機能強化

ロードマップは [GitHub Projects](https://github.com/orgs/pulsate-dev/projects/5) で管理されています.

<Cards>
<Card title="Pulsate v0.1 Roadmap ↗" href="https://github.com/orgs/pulsate-dev/projects/5"/>
</Cards>

0 comments on commit c84b882

Please sign in to comment.