link to territory FAQ
This commit is contained in:
parent
e9a5d22a6e
commit
1e03f3b63f
|
@ -1,3 +1,4 @@
|
|||
import Link from 'next/link'
|
||||
import { getGetServerSideProps } from '../api/ssrApollo'
|
||||
import { CenterLayout } from '../components/layout'
|
||||
import TerritoryForm from '../components/territory-form'
|
||||
|
@ -7,7 +8,10 @@ export const getServerSideProps = getGetServerSideProps({ authRequired: true })
|
|||
export default function TerritoryPage () {
|
||||
return (
|
||||
<CenterLayout>
|
||||
<div className='text-center'>
|
||||
<h1 className='mt-5'>break new ground</h1>
|
||||
<Link className='text-muted' href='/faq#stacker-news-territories'>learn about territories</Link>
|
||||
</div>
|
||||
<TerritoryForm />
|
||||
</CenterLayout>
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue