packer-cn/website/components/subnav/index.jsx

24 lines
574 B
React
Raw Normal View History

2020-03-18 18:46:47 -04:00
import Subnav from '@hashicorp/react-subnav'
import subnavItems from '../../data/subnav'
import { useRouter } from 'next/router'
export default function PackerSubnav() {
const router = useRouter()
return (
<Subnav
titleLink={{
text: 'packer',
url: '/',
2020-03-18 18:46:47 -04:00
}}
ctaLinks={[
{ text: 'GitHub', url: 'https://www.github.com/hashicorp/packer' },
{ text: 'Download', url: '/downloads' },
2020-03-18 18:46:47 -04:00
]}
currentPath={router.pathname}
menuItemsAlign="right"
menuItems={subnavItems}
constrainWidth
2020-03-18 18:46:47 -04:00
/>
)
}