Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dninomiya committed Mar 18, 2024
1 parent 9821fe0 commit 39cae0c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Stripe クイックスタートガイド 🇯🇵

https://flock-team.github.io/stripe-doc/
https://dninomiya.github.io/stripe-doc/

Stripe クイックスタートガイド は Stripe を素早く導入するためのインタラクティブなチュートリアルです。動画やテキストを参考にしながらステップバイステップで実装の進めることができます。Stripe クイックスタートガイドは非公式のオープンソースプロジェクトです。
## コントリビュート
Expand All @@ -17,9 +17,9 @@ npm run dev
```
### ドキュメントの追加、修正

1. [ドキュメントのIDとタイトルを定義](https://github.com/flock-team/stripe-doc/blob/main/docs/doc-titles.ts)
2. IDをファイル名にしてドキュメント(md)を[docs](https://github.com/flock-team/stripe-doc/tree/main/docs)に作成
3. [ドキュメントを任意のステップに掲載](https://github.com/flock-team/stripe-doc/blob/main/docs/doc-tree.ts)
1. [ドキュメントのIDとタイトルを定義](https://github.com/dninomiya/stripe-doc/blob/main/docs/doc-titles.ts)
2. IDをファイル名にしてドキュメント(md)を[docs](https://github.com/dninomiya/stripe-doc/tree/main/docs)に作成
3. [ドキュメントを任意のステップに掲載](https://github.com/dninomiya/stripe-doc/blob/main/docs/doc-tree.ts)

### 動画の圧縮

Expand Down
4 changes: 2 additions & 2 deletions components/doc-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default function DocModal({ isOpen, onClose, id, onComplete }: Props) {
};

const getGitHubDocPath = (id: DocId, mode: 'blob' | 'edit') => {
return `https://github.com/flock-team/stripe-doc/${mode}/main/docs/${id}.md`;
return `https://github.com/dninomiya/stripe-doc/${mode}/main/docs/${id}.md`;
};

return (
Expand Down Expand Up @@ -134,7 +134,7 @@ export default function DocModal({ isOpen, onClose, id, onComplete }: Props) {
<div className="items-center space-x-4 justify-end flex mt-4 text-gray-400 text-sm">
<a
href={encodeURI(
`https://github.com/flock-team/stripe-doc/issues/new?body=## 該当ドキュメント\n${getGitHubDocPath(
`https://github.com/dninomiya/stripe-doc/issues/new?body=## 該当ドキュメント\n${getGitHubDocPath(
docId,
'blob'
)}\n\n## 報告内容\n&title=ドキュメント報告: ${id}`
Expand Down
2 changes: 1 addition & 1 deletion components/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const Layout: FC = ({ children }) => {
<div className="ml-4 flex space-x-4 items-center md:ml-6">
<ThemeSwitch />
<a
href="https://github.com/flock-team/stripe-doc"
href="https://github.com/dninomiya/stripe-doc"
target="_blank"
rel="noreferrer"
>
Expand Down
2 changes: 1 addition & 1 deletion docs/firebase-create-connect-account.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const createStripeAccount = fns.https.onCall(async (_, context) => {
name: user.displayName,
},
business_profile: {
url: "https://flock-team.github.io/stripe-doc",
url: "https://dninomiya.github.io/stripe-doc",
},
});

Expand Down
2 changes: 1 addition & 1 deletion pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Head from 'next/head';
import { DefaultSeo } from 'next-seo';

const SITE_TITLE = 'Stripeビギナーズガイド';
const SITE_URL = 'https://flock-team.github.io/stripe-doc';
const SITE_URL = 'https://dninomiya.github.io/stripe-doc';

function MyApp({ Component, pageProps }: AppProps) {
return (
Expand Down

0 comments on commit 39cae0c

Please sign in to comment.