open-vault/website/pages/community/index.jsx
Zachary Shilton 88be341d21
Upgrade global styles (#12167)
* website: upgrade global-styles packages

* website: remove deprecated --site-max-width on community page

* website: replace code-block showWindowBar with showChrome

* website: replace old g-container with g-grid-container

* website: backfill missing type styles

* website: revert change to heading semantics

* website: fix mismatched border colour

* website: fix spacing issue

* website: revert accidental replacement

* website: clarify debt intention with comment

* website: fix missing search styles, remove cruft

* website: hide alert-banner on mobile

* website: bump to latest patched dependencies
2021-08-20 12:20:18 -04:00

46 lines
1.7 KiB
JavaScript

import VerticalTextBlockList from '@hashicorp/react-vertical-text-block-list/index.tsx'
import SectionHeader from '@hashicorp/react-section-header'
import Head from 'next/head'
import HashiHead from '@hashicorp/react-head'
import s from './style.module.css'
function CommunityPage() {
return (
<main className={s.root}>
<HashiHead is={Head} title="Community | Vault by HashiCorp" />
<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."
useH1={true}
/>
<VerticalTextBlockList
product="vault"
data={[
{
header: 'Discussion List',
body:
'<a href="https://discuss.hashicorp.com/c/vault">Vault Community Forum</a>',
},
{
header: 'Bug Tracker',
body:
'<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.',
},
{
header: 'Training',
body:
'<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.',
},
{
header: 'Certification',
body:
'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&apos;s Security Automation Certification</a> exams.',
},
]}
/>
</main>
)
}
export default CommunityPage