webapp/src/components/Discours/Hero.tsx

45 lines
1.5 KiB
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import './Hero.scss'
import { t } from '../../utils/intl'
import { showModal } from '../../stores/ui'
export default () => {
return (
<div class="about-discours">
2022-11-20 21:23:12 +00:00
<div class="wide-container">
<div class="row">
<div class="col-lg-10 offset-lg-1 col-xl-8 offset-xl-2">
<h4>{t('Horizontal collaborative journalistic platform')}</h4>
<p>
{t(
'Discours is an intellectual environment, a web space and tools that allows authors to collaborate with readers and come together to co-create publications and media projects'
)}
2022-09-09 11:53:35 +00:00
.
2022-11-20 21:23:12 +00:00
<br />
<em>
{t('We are convinced that one voice is good, but many is better') +
'. ' +
t('We create the most amazing stories together')}
.
</em>
</p>
<div class="about-discours__actions">
<a class="button" onClick={() => showModal('auth')}>
{t('Join the community')}
</a>
<a class="button" href="/create">
{t('Become an author')}
</a>
<a class="button" href="/about/manifest">
{t('About the project')}
</a>
<a class="button" href="/about/help">
{t('Support us')}
</a>
</div>
2022-09-09 11:53:35 +00:00
</div>
</div>
</div>
</div>
)
}