Add Intelligems Provider

The IntelligemsNextProvider Higher-Order Component will save all relevant data into React Context, which will be available throughout the app as needed.

Example Configuration

export default function MyApp({ Component, pageProps }: AppProps) {
  return (
    <>
      <IntelligemsNextProvider
        ig={pageProps.ig}
        storefrontApiToken={
          process.env.NEXT_PUBLIC_SHOPIFY_STOREFRONT_ACCESS_TOKEN!
        }
        priceFormat={'dollars'}
        priceFormatter={(value: string) => `${value} USD`}
        organizationId={process.env.NEXT_PUBLIC_INTELLIGEMS_ORG_ID!}
      >
        ...
      </IntelligemsNextProvider>
    </>
  )
}