-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.svelte
199 lines (177 loc) · 5.16 KB
/
index.svelte
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<script>
import logo from 'images/logo.png';
import { fade } from 'svelte/transition';
import { _ } from 'svelte-i18n';
import { i } from '../stores/i18n';
</script>
<style type="text/postcss">
img.logo {
@apply self-center;
}
section {
/* @apply flex bg-gray-50 p-12 m-12; */
min-height: 30vh;
@apply p-6 overflow-hidden;
}
p {
@apply mb-3;
}
.content {
@apply max-w-5xl mx-auto flex flex-col;
}
h1 {
@apply font-sans text-4xl;
}
a:hover {
@apply text-gray-200;
}
a.email {
text-decoration: underline;
}
</style>
<svelte:head>
<title>{$_('companyName')}</title>
</svelte:head>
<section transition:fade="{{ duration: 300 }}">
<div class="content">
<img class="logo" height={384} width={384} src="{logo}" alt="Monoid Logo" />
<div class="font-thin text-center text-gray-600 italic font-mono">
{$_('slogan')}
</div>
</div>
</section>
<section
class="bg-gray-50 relative"
transition:fade="{{ duration: 300 }}"
>
<div class="content p-6">
<h1>
{$i({
en: 'Your next partner',
'zh-cn': '您值得合作的伙伴',
'ja': 'あなたのパートナー',
})}
</h1>
<div
class="m-6 text-gray-700"
>
<p>
🌍
{$i({
en: 'Located in Tokyo, Monoid empowers the Internet with creativity and technology.',
'zh-cn': 'Monoid 位于东京,是一家充满创意和科技的互联网创业公司。',
'ja': 'Monoidは、創造性のあるスタートアップ企業です。',
})}
</p>
<p>
📱
{$i({
en: 'Monoid is a group of creative young people eager to make your world-changing apps for the next era.',
'zh-cn': '我们时刻为了编写下一个改变世界的 App 准备着。',
'ja': 'Monoidは、次の時代に向けて世界を変えるアプリを作りたいと熱望しているクリエイティブな若者のグループです。',
})}
</p>
<p>
👌
{$i({
en: 'Monoid listens to customer\'s voice, designs and creates with advanced skills, only to satisfy your complex and changing needs for your business.',
'zh-cn': '我们聆听客户的声音,用卓越的技能设计和实现复杂而多变的商业软件。',
'ja': 'お客様の声に耳を傾け、卓越したスキルを駆使してソフトウェアを設計・開発します。',
})}
</p>
</div>
</div>
</section>
<section
class="relative"
transition:fade="{{ duration: 300 }}"
>
<div class="content p-6">
<h1>
{$i({
en: 'Our works',
'zh-cn': '我们的作品',
})}
</h1>
<div
class="m-6 text-gray-700"
>
<p>
<a href="https://wopal.dev">
💪 WOPAL -
{$i({
en: 'Team-based training app',
'zh-cn': '面向东京大学等日本高校运动队的训练 App',
ja: '高校生・大学生を中心とした、学生スポーツのためのトレーニングサービス-Web&Appの設計・デザイン・開発・運営・保守',
})}
</a>
</p>
<p>
<a href="https://www.polijob.jp/">
💼 Polijob -
{$i({
en: 'Online recruitment platform',
'zh-cn': '在线招聘平台',
ja: 'オンライン採用プラットフォーム-Webの設計・デザイン・開発',
})}
</a>
</p>
<p>
<a href="https://starcharge.com">
🌟 Starcharge -
{$i({
en: 'Homepage with content management system',
'zh-cn': '中国的新能源独角兽官网',
ja: '中国エネルギー業界におけるユニコーン企業のHomepageプロジェクト-Web&Admin Panelの設計・デザイン・開発',
})}
</a>
</p>
<p>
<a href="https://member.d2dasia.com/">
🚢 D2D Shipping -
{$i({
en: 'International shipping platform',
'zh-cn': '中日国际物流平台',
ja: '国際物流関係企業のシステム -Web & Admin Panelの設計・デザイン・開発・保守',
})}
</a>
</p>
<p>
<a href="https://www.iheal.jp">
🧘♀️ iHeal -
{$i({
en: 'Smart aromatherapy IoT device',
'zh-cn': '智能香氛APP',
ja: 'スマートアロマディフューザーIoTプロジェクト-Web&APP&Raspberry Piの設計・デザイン・開発',
})}
</a>
</p>
</div>
</div>
</section>
<section
class="bg-gray-50"
transition:fade="{{ duration: 300 }}"
>
<div class="content p-6">
<h1>
{$i({
en: 'Contact',
'zh-cn': '联系我们',
})}
</h1>
<div
class="m-6 text-gray-700"
>
<p>
📧 Email: <a class="email" href="mailto:[email protected]">[email protected]</a>
</p>
<p>
📱 Phone: 03-3242-3072
</p>
<p>
🏢 Address: 東京都大手町1-7-2 東京サンケイビル 27F
</p>
</div>
</div>
</section>