open-consul/website/pages/community/index.jsx

48 lines
1.9 KiB
React
Raw Normal View History

2020-04-09 22:56:05 +00:00
import VerticalTextBlockList from '@hashicorp/react-vertical-text-block-list'
import SectionHeader from '@hashicorp/react-section-header'
import Head from 'next/head'
export default function CommunityPage() {
return (
<div id="p-community">
<Head>
<title key="title">Community | Consul by HashiCorp</title>
</Head>
<SectionHeader
headline="Community"
description="Consul is a large project with a growing community. There are active, dedicated users willing to help you through various mediums."
use_h1={true}
/>
<VerticalTextBlockList
data={[
{
header: 'Community Forum',
body:
'[Consul Community Forum](https://discuss.hashicorp.com/c/consul)',
},
{
header: 'Bug Tracker',
body:
'[Issue tracker on GitHub](https://github.com/hashicorp/consul/issues). Please only use this for reporting bugs. Do not ask for general help here; use Gitter or the mailing list for that.',
},
{
header: 'Community Tools',
body:
2020-09-15 16:01:47 +00:00
'[Download Community Tools](/docs/download-tools). Please check out some of the awesome Consul tooling our amazing community has helped build.',
2020-04-09 22:56:05 +00:00
},
{
header: 'Training',
body:
'Paid [HashiCorp training courses](https://www.hashicorp.com/training) are also available in a city near you. Private training courses are also available.',
},
{
header: 'Certification',
body:
"Learn more about our [Cloud Engineer Certification program](https://www.hashicorp.com/certification/) and [HashiCorp's Networking Automation Certification ](https://www.hashicorp.com/certification/consul-associate/) exams.",
},
2020-04-09 22:56:05 +00:00
]}
/>
</div>
)
}