diff --git a/src/pages/partners/affiliate-ib/_hero.js b/src/pages/partners/affiliate-ib/_hero.js
index 209b42a86db..44dbebe56ad 100644
--- a/src/pages/partners/affiliate-ib/_hero.js
+++ b/src/pages/partners/affiliate-ib/_hero.js
@@ -2,7 +2,7 @@ import React from 'react'
import PropTypes from 'prop-types'
import styled from 'styled-components'
import { graphql, useStaticQuery } from 'gatsby'
-import { Container, Show } from 'components/containers'
+import { Container } from 'components/containers'
import { BackgroundImage } from 'components/elements'
const StyeldContainer = styled(Container)`
@@ -14,7 +14,6 @@ const query = graphql`
image: file(relativePath: { eq: "partners-banner.png" }) {
...backGroundBlur
}
-
image_mobile: file(relativePath: { eq: "partners-banner-mobile.png" }) {
...backGroundBlur
}
@@ -25,32 +24,17 @@ const Hero = ({ children }) => {
const hero_img = useStaticQuery(query)
return (
<>
-
-
-
- {children}
-
-
-
-
-
-
- {children}
-
-
-
+
+
+ {children}
+
+
>
)
}
@@ -58,4 +42,5 @@ const Hero = ({ children }) => {
Hero.propTypes = {
children: PropTypes.node,
}
+
export default Hero