open-vault/website/pages/community/index.jsx
Jeff Escalante df34412570 New Website! (#8154)
* new documentation website

* ci job adjustment

* update to latest version on downloads page

* remove transition-period scripts

* add netlify toml file

* fix docs patch

* fix ci config?

* revert go.mod changes

* a couple last markdown formatting fixes
2020-01-17 16:18:09 -08:00

40 lines
1.3 KiB
JavaScript

import VerticalTextBlockList from '@hashicorp/react-vertical-text-block-list'
import SectionHeader from '@hashicorp/react-section-header'
import Head from 'next/head'
function CommunityPage() {
return (
<div id="community">
<Head>
<title key="title">Community | Vault by HashiCorp</title>
</Head>
<SectionHeader
headline="Community"
description="Vault is an open source project with a growing community. There are active, dedicated users willing to help you through various mediums."
use_h1={true}
/>
<VerticalTextBlockList
data={[
{
header: 'Discussion List',
body:
'[Vault Community Forum](https://discuss.hashicorp.com/c/vault)'
},
{
header: 'Bug Tracker',
body:
'[Issue tracker on GitHub](https://github.com/hashicorp/vault/issues) for reporting bugs. Use IRC or the mailing list for general help.'
},
{
header: 'Training',
body:
'[Paid HashiCorp](https://www.hashicorp.com/training) training courses are available in a city near you. Private training courses are also available.'
}
]}
/>
</div>
)
}
export default CommunityPage