2021-05-03 22:01:29 +00:00
import VerticalTextBlockList from '@hashicorp/react-vertical-text-block-list/index.tsx'
2020-01-18 00:18:09 +00:00
import SectionHeader from '@hashicorp/react-section-header'
import Head from 'next/head'
2020-03-30 17:30:56 +00:00
import HashiHead from '@hashicorp/react-head'
2020-01-18 00:18:09 +00:00
function CommunityPage ( ) {
return (
< div id = "community" >
2020-03-30 17:30:56 +00:00
< HashiHead is = { Head } title = "Community | Vault by HashiCorp" / >
2020-01-18 00:18:09 +00:00
< 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
2021-05-03 22:01:29 +00:00
product = "vault"
2020-01-18 00:18:09 +00:00
data = { [
{
header : 'Discussion List' ,
body :
2021-02-11 21:29:38 +00:00
'<a href="https://discuss.hashicorp.com/c/vault">Vault Community Forum</a>' ,
2020-01-18 00:18:09 +00:00
} ,
{
header : 'Bug Tracker' ,
body :
2021-02-11 21:29:38 +00:00
'<a href="https://github.com/hashicorp/vault/issues">Issue tracker on GitHub</a> for reporting bugs. Use IRC or the mailing list for general help.' ,
2020-01-18 00:18:09 +00:00
} ,
{
header : 'Training' ,
body :
2021-02-11 21:29:38 +00:00
'<a href="https://www.hashicorp.com/training">Paid HashiCorp</a> training courses are available in a city near you. Private training courses are also available.' ,
2020-05-07 16:44:06 +00:00
} ,
{
header : 'Certification' ,
body :
2021-02-11 21:29:38 +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/vault-associate/">HashiCorp's Security Automation Certification</a> exams.' ,
2020-05-07 16:44:06 +00:00
} ,
2020-01-18 00:18:09 +00:00
] }
/ >
< / div >
)
}
export default CommunityPage