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'
2021-05-03 19:01:36 +00:00
import { productSlug } from 'data/metadata'
2021-08-20 16:20:01 +00:00
import s from './style.module.css'
2020-04-09 22:56:05 +00:00
export default function CommunityPage ( ) {
return (
2021-08-20 16:20:01 +00:00
< div className = { s . root } >
2020-04-09 22:56:05 +00:00
< 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
2021-05-03 19:01:36 +00:00
product = { productSlug }
2020-04-09 22:56:05 +00:00
data = { [
{
header : 'Community Forum' ,
body :
2021-02-17 15:22:12 +00:00
'<a href="https://discuss.hashicorp.com/c/consul">Consul Community Forum</a>' ,
2020-04-09 22:56:05 +00:00
} ,
{
header : 'Bug Tracker' ,
body :
2021-02-17 15:22:12 +00:00
'<a href="https://github.com/hashicorp/consul/issues">Issue tracker on GitHub</a>. Please only use this for reporting bugs. Do not ask for general help here; use Gitter or the mailing list for that.' ,
2020-04-09 22:56:05 +00:00
} ,
{
header : 'Community Tools' ,
body :
2021-02-17 15:22:12 +00:00
'<a href="/docs/download-tools">Download Community Tools</a>. 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 :
2021-02-17 15:22:12 +00:00
'Paid <a href="https://www.hashicorp.com/training">HashiCorp training courses</a> are also available in a city near you. Private training courses are also available.' ,
2020-04-09 22:56:05 +00:00
} ,
2020-08-24 19:21:54 +00:00
{
header : 'Certification' ,
body :
2021-02-17 15:22:12 +00:00
'Learn more about our <a href="https://www.hashicorp.com/certification/">Cloud Engineer Certification program</a> and <a href="https://www.hashicorp.com/certification/consul-associate/">HashiCorp's Networking Automation Certification </a> exams.' ,
2020-08-24 19:21:54 +00:00
} ,
2020-04-09 22:56:05 +00:00
] }
/ >
< / div >
)
}