packer-cn/website/pages/community/index.jsx

48 lines
1.7 KiB
React
Raw Normal View History

2020-03-18 18:46:47 -04: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 (
2020-03-31 16:11:11 -04:00
<div id="p-community">
2020-03-18 18:46:47 -04:00
<Head>
<title key="title">Community | Packer by HashiCorp</title>
</Head>
<SectionHeader
headline="Community"
description="Packer 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: 'Community Forum',
2020-03-18 18:46:47 -04:00
body:
'<a href="https://discuss.hashicorp.com/c/packer">Packer Community Forum</a>',
2020-03-18 18:46:47 -04:00
},
{
header: 'Discussion List',
body:
'<a href="https://groups.google.com/group/packer-tool">Packer Google Group</a>',
2020-03-18 18:46:47 -04:00
},
{
header: 'Announcement List',
2020-03-18 18:46:47 -04:00
body:
'<a href="https://groups.google.com/group/hashicorp-announce">HashiCorp Announcement Google Group</a>',
2020-03-18 18:46:47 -04:00
},
{
header: 'Bug Tracker',
body:
'<a href="https://github.com/hashicorp/packer/issues">Issue tracker on GitHub</a>. Please only use this for reporting bugs. For general help, please use the Community Forum.',
2020-03-18 18:46:47 -04:00
},
{
header: 'Training',
body:
'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-03-31 16:11:11 -04:00
},
2020-03-18 18:46:47 -04:00
]}
/>
</div>
)
}