Kendall Strautman a9c2283ee5
chore(website): adds ts config, upgrades deps (#10905)
* chore(website): adds ts config, upgrades deps

* chore: adjust ts config option

* chore: upgrade deps

* fix: subnav active path routing

* style(home): update integrations bg color

* chore: upgrade deps

* style: fix body copy color

* style: fix product downloads page height

* feat: updates favicon

* chore(downloads): upgrade to prerelease

* chore: upgrades product download page to stable

* chore: update favicon.ico
2021-05-03 10:58:09 -07:00

49 lines
1.7 KiB
JavaScript

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 | 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
product="packer"
data={[
{
header: 'Community Forum',
body:
'<a href="https://discuss.hashicorp.com/c/packer">Packer Community Forum</a>',
},
{
header: 'Discussion List',
body:
'<a href="https://groups.google.com/group/packer-tool">Packer Google Group</a>',
},
{
header: 'Announcement List',
body:
'<a href="https://groups.google.com/group/hashicorp-announce">HashiCorp Announcement Google Group</a>',
},
{
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.',
},
{
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.',
},
]}
/>
</div>
)
}