@@ -169,24 +197,58 @@ const Availability = () => {
-
+
+
+
+
+
+
- ,
- ]}
- />
+
+
+
+ ,
+ ]}
+ />
+
+
+
+
+
+
+
+ ,
+ ]}
+ />
+
diff --git a/src/pages/p2p/components/_dp2p.js b/src/pages/p2p/components/_dp2p.js
index a037cb03b29..de0e6193fac 100644
--- a/src/pages/p2p/components/_dp2p.js
+++ b/src/pages/p2p/components/_dp2p.js
@@ -89,13 +89,13 @@ const Row = styled.div`
`
const query = graphql`
query {
- buy_sell: file(relativePath: { eq: "p2p_buy_sell.png" }) {
+ buy_sell: file(relativePath: { eq: "p2p/p2p_buy_sell.png" }) {
...fadeIn
}
- local_currency: file(relativePath: { eq: "p2p_local_currency.png" }) {
+ local_currency: file(relativePath: { eq: "p2p/p2p_local_currency.png" }) {
...fadeIn
}
- web_and_mobile: file(relativePath: { eq: "p2p_web_and_mobile.png" }) {
+ web_and_mobile: file(relativePath: { eq: "p2p/p2p_web_and_mobile.png" }) {
...fadeIn
}
}
diff --git a/src/pages/p2p/components/_hero.js b/src/pages/p2p/components/_hero.js
index 525355f9bb6..8801346b2f3 100644
--- a/src/pages/p2p/components/_hero.js
+++ b/src/pages/p2p/components/_hero.js
@@ -192,13 +192,15 @@ const HeroComponent = ({ title, content, background_data, img_data }) => {
const query = graphql`
query {
- p2p_hero_background: file(relativePath: { eq: "p2p_hero_background.png" }) {
+ p2p_hero_background: file(relativePath: { eq: "p2p/p2p_hero_background.png" }) {
...fadeIn
}
- p2p_hero_background_mobile: file(relativePath: { eq: "p2p_hero_background_mobile.png" }) {
+ p2p_hero_background_mobile: file(
+ relativePath: { eq: "p2p/p2p_hero_background_mobile.png" }
+ ) {
...fadeIn
}
- p2p_hero_img: file(relativePath: { eq: "p2p_hero_img.png" }) {
+ p2p_hero_img: file(relativePath: { eq: "p2p/p2p_hero_img.png" }) {
...fadeIn
}
}
diff --git a/src/pages/p2p/components/_p2pbanner.js b/src/pages/p2p/components/_p2pbanner.js
index d787a1891d6..c28fe0c4854 100644
--- a/src/pages/p2p/components/_p2pbanner.js
+++ b/src/pages/p2p/components/_p2pbanner.js
@@ -94,10 +94,10 @@ const StyledHeader = styled(Header)`
const query = graphql`
query {
- p2p_banner: file(relativePath: { eq: "p2p_banner.png" }) {
+ p2p_banner: file(relativePath: { eq: "p2p/p2p_banner.png" }) {
...fadeIn
}
- p2p_banner_mobile: file(relativePath: { eq: "p2p_banner_mobile.png" }) {
+ p2p_banner_mobile: file(relativePath: { eq: "p2p/p2p_banner_mobile.png" }) {
...fadeIn
}
}