File tree Expand file tree Collapse file tree 7 files changed +22
-84
lines changed
service/vspo-schedule/web Expand file tree Collapse file tree 7 files changed +22
-84
lines changed Original file line number Diff line number Diff line change 4343 "react-dom" : " ^18.3.1" ,
4444 "react-i18next" : " ^14.1.2" ,
4545 "react-tweet" : " ^3.2.1" ,
46- "sass" : " ^1.77.6" ,
4746 "sharp" : " ^0.33.4" ,
4847 "swr" : " ^2.2.5" ,
4948 "typescript" : " ^5.5.2"
Original file line number Diff line number Diff line change 1- .container {
1+ import { styled } from "@mui/material/styles" ;
2+
3+ export const AgreementDocument = styled ( "div" ) ( `
24 h1 {
35 font-size: 2.5rem;
46 margin-top: 0;
3537 text-decoration: underline;
3638 }
3739 }
38- }
40+ ` ) ;
Original file line number Diff line number Diff line change 1+ export * from "./AgreementDocument" ;
12export * from "./ClipList" ;
23export * from "./ClipTabs" ;
34export * from "./Livestreams" ;
Original file line number Diff line number Diff line change 11import React from "react" ;
2- import styles from "@/styles/Terms.module.scss" ;
32import { NextPageWithLayout } from "./_app" ;
43import { ContentLayout } from "@/components/Layout/ContentLayout" ;
4+ import { AgreementDocument } from "@/components/Templates" ;
55import { DEFAULT_LOCALE , QA_LINK } from "@/lib/Const" ;
66import { GetStaticProps } from "next" ;
77import { serverSideTranslations } from "next-i18next/serverSideTranslations" ;
@@ -36,7 +36,7 @@ export const getStaticProps: GetStaticProps<Props> = async ({
3636
3737const PrivacyPolicy : NextPageWithLayout < Props > = ( ) => {
3838 return (
39- < div className = { styles . container } >
39+ < AgreementDocument >
4040 < h1 > プライバシーポリシー</ h1 >
4141 < p >
4242 このプライバシーポリシーは,サービス提供者がこのウェブサイト上で提供するサービス(以下,「本サービス」といいます。)のプライバシーポリシー(以下,「本ポリシー」といいます。)を定めます。
@@ -123,7 +123,7 @@ const PrivacyPolicy: NextPageWithLayout<Props> = () => {
123123 </ a >
124124 までお願いいたします。
125125 </ p >
126- </ div >
126+ </ AgreementDocument >
127127 ) ;
128128} ;
129129
Original file line number Diff line number Diff line change 11import React from "react" ;
2- import styles from "@/styles/Terms.module.scss" ;
32import { NextPageWithLayout } from "./_app" ;
43import { ContentLayout } from "@/components/Layout/ContentLayout" ;
4+ import { AgreementDocument } from "@/components/Templates" ;
55import { GetStaticProps } from "next" ;
66import { DEFAULT_LOCALE } from "@/lib/Const" ;
77import { serverSideTranslations } from "next-i18next/serverSideTranslations" ;
@@ -36,7 +36,7 @@ export const getStaticProps: GetStaticProps<Props> = async ({
3636
3737const Terms : NextPageWithLayout < Props > = ( ) => {
3838 return (
39- < div className = { styles . container } >
39+ < AgreementDocument >
4040 < h1 > 利用規約</ h1 >
4141 < p >
4242 この利用規約(以下,「本規約」といいます。)は,サービス提供者がこのウェブサイト上で提供するサービス(以下,「本サービス」といいます。)の利用条件を定めます。
@@ -202,7 +202,7 @@ const Terms: NextPageWithLayout<Props> = () => {
202202 < p >
203203 本サービスに関して紛争が生じた場合には,サービス提供者の本店所在地を管轄する裁判所を専属的合意管轄とします。
204204 </ p >
205- </ div >
205+ </ AgreementDocument >
206206 ) ;
207207} ;
208208
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments