diff --git a/components/HubspotForm.js b/components/HubspotForm.js index 2a1e712d..1b2adad8 100644 --- a/components/HubspotForm.js +++ b/components/HubspotForm.js @@ -1,6 +1,6 @@ import { useEffect } from 'react' -const HubspotForm = ({ portalId, formId, className }) => { +const HubspotForm = ({ portalId, formId, className, style }) => { useEffect(() => { const script = document.createElement('script') script.src = 'https://js.hsforms.net/forms/v2.js' @@ -19,7 +19,7 @@ const HubspotForm = ({ portalId, formId, className }) => { }) }, []) - return
+ return
} export default HubspotForm diff --git a/pages/drupal-jam.js b/pages/drupal-jam.js new file mode 100644 index 00000000..e403505c --- /dev/null +++ b/pages/drupal-jam.js @@ -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 ( + <> + + +
+
+
+

+ The iO Pool Request +

+ +
+
+
+ + ) +}