File tree Expand file tree Collapse file tree 1 file changed +45
-0
lines changed Expand file tree Collapse file tree 1 file changed +45
-0
lines changed Original file line number Diff line number Diff line change
1
+ <template >
2
+ <div class =" MainPage" >
3
+ <div class =" Logo-outer" >
4
+ <prj-logo class =" Logo" />
5
+ </div >
6
+ <div class =" PolicyText-outer" >
7
+ <p >
8
+ 一般社団法人コード・フォー・ジャパン(以下、「弊団体」といいます)は、個人情報に関する法令を遵守し、個人情報の適切な取り扱いを実現致します。
9
+ </p >
10
+ <p >
11
+ なお、弊団体が、参加者等(弊団体が運営するイベントやWebページ等への参加者や訪問者をいいます。以下同じ。)から取得した個人情報は、本プライバシーポリシーに従って管理され、参加者等は、弊団体が提供する各種イベントやWebページ(以下、総称して「弊社イベント等」という)を利用する際には、本プライバシーポリシーに定める内容を理解し、これに同意した上で利用するものとします。
12
+ </p >
13
+ </div >
14
+ </div >
15
+ </template >
16
+
17
+ <script lang="ts">
18
+ import Vue from ' vue'
19
+ import PrjLogo from ' @/assets/svgs/prj_logo.svg'
20
+
21
+ export default Vue .extend ({
22
+ components: { PrjLogo },
23
+ layout: ' simple'
24
+ })
25
+ </script >
26
+
27
+ <style lang="scss" scoped>
28
+ .MainPage {
29
+ background-color : $color-white ;
30
+ border-radius : 14px ;
31
+ padding : 16px ;
32
+ }
33
+ .Logo-outer {
34
+ display : flex ;
35
+ justify-content : center ;
36
+ }
37
+ .Logo {
38
+ width : 115px ;
39
+ }
40
+ .PolicyText-outer {
41
+ background-color : $color-back-gray ;
42
+ border-radius : 14px ;
43
+ padding : 16px ;
44
+ }
45
+ </style >
You can’t perform that action at this time.
0 commit comments