Improve compression settings, Inferno credits
This commit is contained in:
parent
93f0b1d836
commit
8ade0ee633
6 changed files with 38 additions and 9 deletions
|
|
@ -3,6 +3,7 @@
|
|||
"company_name": "AYO inc.",
|
||||
"address_one_line": "Tokyo Itabashi Akatsukashinmachi 3-chōme-33-3",
|
||||
"email_contact": "contact@ayo.tokyo",
|
||||
"inferno_credit": "Website built with ",
|
||||
"flow1": "From repetitive tasks done by human",
|
||||
"flow2": "With the help of data gathered",
|
||||
"flow3": "To automated systems"
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
"company_name": "AYO\u200b合同会社",
|
||||
"address_one_line": "東京\u200b都板橋区\u200b赤塚新町\u200b三丁目33番3ー102号",
|
||||
"email_contact": "contact@ayo.tokyo",
|
||||
"inferno_credit": "Website built with ",
|
||||
"flow1": "人によって\u200b繰り返される\u200b作業",
|
||||
"flow2": "収集された\u200bデータ\u200b(の助け)\u200bによって",
|
||||
"flow3": "システム\u200bを自動化するため"
|
||||
|
|
|
|||
20
src/main.css
20
src/main.css
|
|
@ -3,6 +3,11 @@
|
|||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
a, a:visited
|
||||
{
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
body
|
||||
{
|
||||
background-color: var(--main-bg-color);
|
||||
|
|
@ -62,17 +67,26 @@ body
|
|||
}
|
||||
}
|
||||
|
||||
footer
|
||||
footer > section
|
||||
{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin: 0 10px;
|
||||
}
|
||||
|
||||
footer .legal div
|
||||
{
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
footer > div
|
||||
footer .credit
|
||||
{
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
footer > section > div
|
||||
{
|
||||
margin: 0 10px;
|
||||
word-break: keep-all;
|
||||
}
|
||||
|
||||
|
|
|
|||
18
src/main.jsx
18
src/main.jsx
|
|
@ -1,5 +1,5 @@
|
|||
`use strict`
|
||||
import { Component } from 'inferno'
|
||||
import { Component, version } from 'inferno'
|
||||
import { connect } from 'inferno-redux'
|
||||
|
||||
import { changeTheme, fetchLang } from './actions'
|
||||
|
|
@ -78,9 +78,19 @@ class MainComponent extends Component
|
|||
</div>
|
||||
</div>
|
||||
<footer>
|
||||
<div>{this.props.strings.company_name}</div>
|
||||
<div>{this.props.strings.address_one_line}</div>
|
||||
<div>{this.props.strings.email_contact}</div>
|
||||
<section className="legal">
|
||||
<div>{this.props.strings.company_name}</div>
|
||||
<div>{this.props.strings.address_one_line}</div>
|
||||
<div>{this.props.strings.email_contact}</div>
|
||||
</section>
|
||||
<section className="credit">
|
||||
<div>
|
||||
{this.props.strings.inferno_credit}
|
||||
<a target="_blank" rel="noopener noreferrer" href="https://infernojs.org/">
|
||||
{`Inferno ` + version}
|
||||
</a>
|
||||
</div>
|
||||
</section>
|
||||
</footer>
|
||||
</main>)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue