{"version":3,"sources":["webpack:///./src/components/PageWrapper/PageWrapper.js","webpack:///./src/components/PageWrapper/index.js","webpack:///./src/pages/blog/Australia-to-taiwan.js","webpack:///./src/assets/image/png/quote-icon.png","webpack:///./src/assets/image/jpeg/taiwan.jpg"],"names":["PageWrapper","children","headerDark","footerDark","gContext","useContext","GlobalContext","useEffect","goHeaderDark","goHeaderLight","goFooterDark","goFooterLight","Post","styled","Box","theme","colors","heading","text","iconQuote","BadgePost","mr","mb","bg","color","fontSize","px","py","BlogDetails","className","lg","variant","src","titleImage","alt","styles","href","mt","module","exports"],"mappings":"iIAwBeA,EApBK,SAAC,GAA0D,IAAxDC,EAAuD,EAAvDA,SAAuD,IAA7CC,kBAA6C,aAAzBC,kBAAyB,SACtEC,EAAWC,qBAAWC,KAgB5B,OAdAC,qBAAU,WACJL,EACFE,EAASI,eAETJ,EAASK,gBAGPN,EACFC,EAASM,eAETN,EAASO,kBAEV,CAACP,EAAUF,EAAYC,IAEnB,oCAAGF,ICrBZ,mC,kCCAA,mLAcMW,EAAOC,YAAOC,KAAV,4EAAGD,CAAH,mkBA2BG,qBAAGE,MAAkBC,OAAOC,WAc5B,qBAAGF,MAAkBC,OAAOE,OAGpBC,KAoBfC,EAAY,SAAC,GAAD,IAAGnB,EAAH,EAAGA,SAAH,OACd,kBAAC,IAAD,CACIoB,GAAI,EACJC,GAAI,EACJC,GAAG,UACHC,MAAM,UACNC,SAAS,OACTC,GAAI,EACJC,GAAI,GAEH1B,IA4DM2B,UAvDK,WAChB,OACI,oCACI,kBAAC,IAAD,CAAazB,YAAU,GACnB,kBAAC,IAAD,CAAS0B,UAAU,QACf,yBAAKA,UAAU,SACf,kBAAC,IAAD,KACI,kBAAC,IAAD,CAAKA,UAAU,sCACX,kBAAC,IAAD,CAAKC,GAAG,MACJ,kBAAC,IAAD,CAAOC,QAAQ,QAAf,iDAEd,wBAAIF,UAAU,uBAEA,kBAAC,IAAD,CAAKA,UAAU,iCACX,kBAAC,IAAD,CAAMR,GAAI,GAAV,gBAEA,kBAAC,IAAD,6BAOpB,kBAAC,IAAD,CAASQ,UAAU,aACf,kBAAC,IAAD,KACI,kBAAC,IAAD,KACI,kBAAC,IAAD,CAAKC,GAAG,KAAKD,UAAU,QAEnB,kBAACjB,EAAD,KACI,6BACI,yBAAKoB,IAAKC,IAAYC,IAAI,uBAAuBL,UAAWM,IAAOF,cAEvE,6BAEI,uGACA,wUACA,sSACA,mSACA,uBAAGG,KAAK,0CAAR,6BAGR,kBAAC,IAAD,CAAKP,UAAU,SAASQ,GAAI,GACxB,kBAACjB,EAAD,eACA,kBAACA,EAAD,iBACA,kBAACA,EAAD,iC,mBCzIpCkB,EAAOC,QAAU,0N,qBCAjBD,EAAOC,QAAU,IAA0B","file":"component---src-pages-blog-australia-to-taiwan-js-0c6e5ab543c8cabae040.js","sourcesContent":["import React, { useEffect, useContext } from \"react\";\r\n\r\nimport GlobalContext from \"../../context/GlobalContext\";\r\n\r\nconst PageWrapper = ({ children, headerDark = false, footerDark = false }) => {\r\n const gContext = useContext(GlobalContext);\r\n\r\n useEffect(() => {\r\n if (headerDark) {\r\n gContext.goHeaderDark();\r\n } else {\r\n gContext.goHeaderLight();\r\n }\r\n\r\n if (footerDark) {\r\n gContext.goFooterDark();\r\n } else {\r\n gContext.goFooterLight();\r\n }\r\n }, [gContext, headerDark, footerDark]);\r\n\r\n return <>{children};\r\n};\r\n\r\nexport default PageWrapper;\r\n","export { default } from \"./PageWrapper\";\r\n","import React from \"react\";\r\nimport { Link } from \"gatsby\";\r\nimport { Container, Row, Col } from \"react-bootstrap\";\r\n\r\nimport PageWrapper from \"../../components/PageWrapper\";\r\nimport { Section, Title, Text, Box, Badge } from \"../../components/Core\";\r\n\r\nimport styled from \"styled-components\";\r\n\r\nimport titleImage from \"../../assets/image/jpeg/taiwan.jpg\";\r\nimport iconQuote from \"../../assets/image/png/quote-icon.png\";\r\nimport styles from '../../assets/styles/blog.module.css';\r\n\r\n\r\nconst Post = styled(Box)`\r\n overflow: hidden;\r\n font-size: 1rem;\r\n\r\n h2,\r\n h3,\r\n h4,\r\n h5,\r\n h6,\r\n p,\r\n blockquote,\r\n pre,\r\n ul,\r\n ol {\r\n margin-bottom: 1.25rem;\r\n &:last-child {\r\n margin-bottom: 0;\r\n }\r\n }\r\n\r\n h2,\r\n h3,\r\n h4,\r\n h5,\r\n h6 {\r\n margin-top: 2.25rem;\r\n margin-bottom: 1.25rem;\r\n color: ${({ theme }) => theme.colors.heading} !important;\r\n }\r\n ol li {\r\n list-style-type: decimal;\r\n }\r\n\r\n ul li {\r\n list-style-type: disc;\r\n }\r\n\r\n blockquote {\r\n margin-bottom: 1.25rem;\r\n padding-left: 50px;\r\n position: relative;\r\n color: ${({ theme }) => theme.colors.text} !important;\r\n font-size: 20px;\r\n &::after {\r\n content: url(${iconQuote});\r\n display: inline-block;\r\n min-width: 28px;\r\n max-width: 28px;\r\n margin-top: 8px;\r\n margin-right: 23px;\r\n position: absolute;\r\n top: 0;\r\n left: 0;\r\n }\r\n }\r\n img,\r\n iframe,\r\n video {\r\n max-width: 100%;\r\n margin-bottom: 2rem;\r\n display: block;\r\n }\r\n`;\r\n\r\nconst BadgePost = ({ children }) => (\r\n \r\n {children}\r\n \r\n);\r\n\r\n\r\nconst BlogDetails = () => {\r\n return (\r\n <>\r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n Shopping in Australia and forwarding to Taiwan\r\n <br className=\"d-none d-lg-block\" />\r\n \r\n \r\n Feb 10, 2020\r\n \r\n Michael Tippett\r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n \r\n \r\n {/* */}\r\n \r\n
\r\n \"Shopping\r\n
\r\n
\r\n\r\n The best solution to get your orders delivered from Australia to Taiwan!\r\n

Ever wondered how you can reduce your costs while ordering from Australia to Taiwan? Indeed there is a way, our amazing parcel forwarding service enables its users to majorly reduce their costs, especially when ordering in bulk! You have the ability to get your products parcelled to you for less!

\r\n

The process is simple, you get the product to our warehouse in Australia and we get the product to your doorstep in Taiwan. All this while ensuring that you get your package safe and steady. We have the highest standards of consolidation, packaging, and delivery.

\r\n

All this is done through Direct Mail, which ensures that there are major savings with your orders. Doesn’t matter if you are a professional international trader or just someone wanting to order a single product, we provide service to everyone around the globe!

\r\n Sign up to HotSnail now\r\n
\r\n
\r\n \r\n Taiwan\r\n Shopping\r\n Mail forwarding\r\n\r\n \r\n \r\n
\r\n
\r\n
\r\n
\r\n \r\n );\r\n};\r\nexport default BlogDetails;\r\n","module.exports = \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAUAgMAAADjMLVqAAAADFBMVEUAAADOzdnLy9fNzNnFSrqAAAAAA3RSTlMAwEBHUFIAAAAAMElEQVQI12P4//8/TXH9DwYw3v8FguX/QbD+Xwhm/98Axtz/HcCY8f8DMGb6fwGEATzAX6F1fY8jAAAAAElFTkSuQmCC\"","module.exports = __webpack_public_path__ + \"static/taiwan-e0da9b4efcd2a2da612cdbd1d2486e31.jpg\";"],"sourceRoot":""}