Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/components/documents/Documents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import Build from './build/Build';
import SupportCodeEditing from './support-code-editing/SupportCodeEditing';
import Statistics from './statistics/Statistics';
import Internationalization from './i18n/Internationalization';
import ElectricalBusinessRule from './ebizrule/ElectricalBusinessRule';

type RouteParams = {
docId: string;
Expand Down Expand Up @@ -69,7 +70,10 @@ export default function Documents(props: DocumentsPropsType) {
sendEventToGoogleAnalytics('docs/statistics');
} else if (docId === 'i18n') {
page = <Internationalization />;
sendEventToGoogleAnalytics('docs/statistics');
sendEventToGoogleAnalytics('docs/internationalization');
} else if (docId === 'ebizrule') {
page = <ElectricalBusinessRule />;
sendEventToGoogleAnalytics('docs/ebizrule');
} else {
page = <Index />;
}
Expand Down
77 changes: 77 additions & 0 deletions src/components/documents/ebizrule/ElectricalBusinessRule.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
import React from 'react';
import { Link, Typography } from '@mui/material';

export default function ElectricalBusinessRule() {
return (
<React.Fragment>
<Typography variant="h3">特定商取引法に基づく表記</Typography>
<section>
<Typography variant="body1" gutterBottom={true}>
「特定商取引に関する法律」第 11
条に基づき、以下のとおり表示いたします。
</Typography>

<Typography variant="h5">販売事業者</Typography>
<Typography variant="body1" gutterBottom={true}>
代表者名: 田中 洋一郎
<br />
所在地: 請求があった際に延滞なく開示します
</Typography>

<Typography variant="h5">連絡先</Typography>
<Typography variant="body1" gutterBottom={true}>
電話番号: 請求があった際に延滞なく開示します
<br />
メールアドレス:{' '}
<Link href="mailto:[email protected]">
[email protected]
</Link>
<br />
問い合わせ対応時間: 可能な限り 3 営業日以内に対応します
</Typography>

<Typography variant="h5">販売価格</Typography>
<Typography variant="body1" gutterBottom={true}>
購入手続きの際に画面に表示されます。
</Typography>

<Typography variant="h5">販売価格以外でお客様に発生する金銭</Typography>
<Typography variant="body1" gutterBottom={true}>
当サイトのページの閲覧、コンテンツ購入、ソフトウェアのダウンロード等に必要となるインターネット接続料金、通信料金等はお客様の負担となります。それぞれの料金は、お客様がご利用のインターネットプロバイダーまたは携帯電話会社にお問い合わせください。消費税は、内税として表示しております。
</Typography>

<Typography variant="h5">
デジタルアイテム等の利用が可能になる時期
</Typography>
<Typography variant="body1" gutterBottom={true}>
購入に関するページに特別な定めが書かれている場合を除き、購入取引後、直ちにご利用いただけます。
</Typography>

<Typography variant="h5">お支払い方法</Typography>
<Typography variant="body1" gutterBottom={true}>
クレジットカード決済、その他購入に掛かる決済を代行する会社が提供するお支払い方法
</Typography>

<Typography variant="h5">支払時期</Typography>
<Typography variant="body1" gutterBottom={true}>
購入時にお支払いいただきます。
</Typography>

<Typography variant="h5">返品について</Typography>
<Typography variant="body1" gutterBottom={true}>
デジタルアイテム等購入後のお客様のご都合によるキャンセルは、お受けできません。
</Typography>

<Typography variant="h5">適用範囲</Typography>
<Typography variant="body1" gutterBottom={true}>
本表示は、日本の特定商取引に関する法律に基づいて表示するものであり、日本国内からご利用のお客様に対してのみ適用されます。日本国外からご利用のお客様については、お客様の居住国の法令が適用される場合があります。
<br />
This notation is based on the Specified Commercial Transactions Act of
Japan and applies only to Remap users located in Japan. For users
outside of Japan, the laws and regulations of your country of
residence may apply.
</Typography>
</section>
</React.Fragment>
);
}
6 changes: 6 additions & 0 deletions src/components/documents/index/Index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@ export default function Index() {
User Community
</Link>
</Typography>
<Typography variant="body1" gutterBottom={true}>
<Link href="/docs/ebizrule">
特定商取引法に基づく表記 (Notations are based on the Specified
Commercial Transaction Act)
</Link>
</Typography>
</section>
</Paper>
</Container>
Expand Down
4 changes: 3 additions & 1 deletion src/utils/GoogleAnalytics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ type IActionName =
| 'docs/statistics'
| 'docs/support-code-editing'
| 'docs/support-qmk-022'
| 'docs/terms_of_use';
| 'docs/terms_of_use'
| 'docs/internationalization'
| 'docs/ebizrule';

interface IActionOptions {
vendor_id?: string | number;
Expand Down
Loading