-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #235 from iodigital-com/feature/drupal-jam
feat: add drupal jam form
- Loading branch information
Showing
2 changed files
with
35 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import siteMetadata from '@/data/siteMetadata' | ||
import { PageSEO } from '@/components/SEO' | ||
import HubSpotForm from '@/components/HubspotForm' | ||
|
||
import { useBrandingTheme } from '@/lib/hooks/useBrandingTheme' | ||
|
||
export async function getStaticProps() { | ||
return { props: { theme: 'default' } } | ||
} | ||
|
||
export default function DrupalJam() { | ||
return ( | ||
<> | ||
<PageSEO title="The iO Pool Request" description={siteMetadata.description} /> | ||
|
||
<div className="container mx-auto pt-20"> | ||
<div className="grid grid-cols-12"> | ||
<div className="col-span-12 xl:col-span-8 xl:col-start-3"> | ||
<h1 className="mb-8 text-4xl md:text-5xl xl:text-5xl"> | ||
The iO <span className="font-serif font-light">Pool Request</span> | ||
</h1> | ||
<HubSpotForm | ||
className="quiz" | ||
portalId={'513128'} | ||
formId={'e3de18a4-ae3b-4f2c-b76c-b29898f06ff8'} | ||
style={{ paddingTop: '40px', paddingBottom: '20px', background: '#f4be80' }} | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
</> | ||
) | ||
} |