{"version":3,"sources":["webpack:///./src/components/hero.js","webpack:///./src/components/article/success-alert.js","webpack:///./src/pages/guides/tripods/index.js"],"names":["Wrapper","Container","Left","Title","Description","Right","Hero","title","description","image","fluid","Alert","StyledFontAwesomeIcon","FontAwesomeIcon","Message","SuccessAlert","children","icon","faCheckCircle","CardContainerWrapper","CardWrapper","CardContainer","TripodsStyledFontAwesomeIcon","StyledLink","Link","TripodsStyledLink","Separator","TripodGuidePage","data","location","topPortableTripods","top_portable_tripods","edges","pathname","to","faTools","products"],"mappings":"2JAIA,IAAMA,EAAO,0OAIPC,EAAS,2aAITC,EAAI,yGAIJC,EAAK,kIAILC,EAAW,iIAIXC,EAAK,qIAoBIC,IAhBF,SAAC,GAAmC,IAAjCC,EAAgC,EAAhCA,MAAOC,EAAyB,EAAzBA,YAAaC,EAAY,EAAZA,MAChC,OACI,YAACT,EAAD,KACI,YAACC,EAAD,KACI,YAACC,EAAD,KACI,YAACC,EAAD,KAAQI,GACR,YAACH,EAAD,KAAcI,IAElB,YAACH,EAAD,KACA,YAAC,IAAD,CAAKK,MAAOD,S,kGChC5B,IAAME,EAAK,6TAILC,EAAwB,YAAOC,IAAP,qBAAH,gLAIrBV,EAAK,4HAILW,EAAO,8IAgBEC,IAZM,SAAC,GAAyB,IAAvBR,EAAsB,EAAtBA,MAAOS,EAAe,EAAfA,SAC9B,OACC,YAACL,EAAD,KACC,YAACC,EAAD,CAAuBK,KAAMC,MACpB,uBACL,YAACf,EAAD,KAAQI,GACR,YAACO,EAAD,KAAUE,O,qNCXjB,IAAMhB,EAAO,mTAIPC,EAAS,mFAITkB,EAAoB,8VAIpBhB,EAAK,kSAILiB,EAAW,+KAIXC,EAAa,8cAIbC,EAA+B,YAAOT,IAAP,qBAAH,kLAI5BU,EAAa,YAAOC,OAAP,qBAAH,0OAIVC,EAAoB,YAAOD,OAAP,qBAAH,uRAQjBE,GAJiB,6JAIR,wOA8DAC,UA1DS,SAAC,GAAwB,IAAtBC,EAAqB,EAArBA,KAAMC,EAAe,EAAfA,SACvBC,EAAqBF,EAAKG,qBAAqBC,MAEtD,OACE,YAAC,IAAD,KACI,YAAC,IAAD,CACIzB,MAAM,iCACN0B,SAAUJ,EAASI,WAE7B,YAAC,IAAD,CAAM1B,MAAM,eAAeC,YAAY,KACjC,YAAC,IAAD,KACO,YAACR,EAAD,KACI,YAACC,EAAD,KACI,qBAAG,YAAC,OAAD,CAAMiC,GAAG,YAAT,UAAH,MAAuC,sCACvC,YAACR,EAAD,MACA,uEACA,8HACA,YAACP,EAAD,KACI,YAACC,EAAD,KACI,YAACC,EAAD,KACI,YAACC,EAAD,CAA8BL,KAAMkB,MACpC,YAAChC,EAAD,yBACA,sBACA,YAACsB,EAAD,CAAmBS,GAAG,qCAAtB,aAGR,YAACd,EAAD,KACI,YAACC,EAAD,KACI,YAACC,EAAD,CAA8BL,KAAMkB,MACpC,YAAChC,EAAD,uBACA,sBACA,YAACsB,EAAD,CAAmBS,GAAG,oBAAtB,qBAIZ,YAAC,IAAD,MACA,YAACX,EAAD,CAAYW,GAAG,qCAAf,uCACA,2LACA,YAAC,IAAD,CAAaE,SAAUN,IACvB,wDACA,4IACA,kCACA,kOACA,uCACA,+JACA,mCACA,uRACA,qCACA,uLACA,+BACA","file":"component---src-pages-guides-tripods-index-js-6593db1d968f2e799bb3.js","sourcesContent":["import React from \"react\"\nimport tw, { styled } from \"twin.macro\"\nimport Img from \"gatsby-image\"\n\nconst Wrapper = styled.section`\n ${tw`w-full m-0 p-0 bg-psb-dark-gray-400 text-white`}\n`\n\nconst Container = styled.div`\n ${tw`container flex flex-row items-center w-11/12 mx-auto px-5 py-8`}\n`\n\nconst Left = styled.div`\n ${tw`lg:w-4/5`}\n`\n\nconst Title = styled.h1`\n ${tw`text-white`}\n`\n\nconst Description = styled.p`\n ${tw`text-white`}\n`\n\nconst Right = styled.div`\n ${tw`lg:w-1/5 hidden lg:block`}\n`\n\nconst Hero = ({ title, description, image }) => {\n return(\n \n \n \n {title}\n {description}\n \n \n \n \n \n \n )\n}\n\nexport default Hero","import React from \"react\"\nimport tw, { styled } from \"twin.macro\"\nimport { FontAwesomeIcon } from \"@fortawesome/react-fontawesome\"\nimport { faCheckCircle } from \"@fortawesome/free-solid-svg-icons\"\n\nconst Alert = styled.div`\n\t${tw`flex bg-green-200 border-l-8 rounded-md border-green-600 my-8 p-4`}\n`\n\nconst StyledFontAwesomeIcon = styled(FontAwesomeIcon)`\n ${tw`m-4 text-green-600 text-2xl md:text-4xl float-left`}\n`\n\nconst Title = styled.h3`\n\t${tw`text-black`}\n`\n\nconst Message = styled.p`\n\t${tw`text-black text-lg`}\n`\n\nconst SuccessAlert = ({ title, children }) => {\n\treturn (\n\t\t\n\t\t\t\n
\n\t\t\t {title}\n\t\t\t {children}\n
\n\t\t
\n\t)\n}\n\nexport default SuccessAlert","import React from \"react\"\nimport { graphql } from \"gatsby\"\nimport { Link } from \"gatsby\"\nimport tw, { styled } from \"twin.macro\"\nimport Img from \"gatsby-image\"\nimport { FontAwesomeIcon } from \"@fortawesome/react-fontawesome\"\nimport { faTools } from \"@fortawesome/free-solid-svg-icons\"\n\nimport Layout from \"../../../components/layout\"\nimport SEO from \"../../../components/seo\"\nimport Hero from \"../../../components/hero\"\nimport Section from \"../../../components/section/section\"\nimport ProductList from \"../../../components/guide/product-list\"\nimport AffiliateAlert from \"../../../components/article/affiliate-alert\"\nimport SuccessAlert from \"../../../components/article/success-alert\"\n\nconst Wrapper = styled.div`\n ${tw`container flex flex-col items-center`}\n`\n\nconst Container = styled.div`\n ${tw`max-w-4xl`}\n`\n\nconst CardContainerWrapper = styled.div`\n${tw`container flex flex-wrap mx-auto text-center max-w-4xl`}\n`\n\nconst Title = styled.p`\n${tw`text-lg md:text-lg lg:text-xl font-semibold pt-3 leading-snug text-gray-900`}\n`\n\nconst CardWrapper = styled.div`\n ${tw`w-full md:w-1/2 lg:w-1/3 p-2`}\n`\n\nconst CardContainer = styled.div`\n ${tw`container flex flex-col mx-auto text-center bg-gray-600 p-2 md:p-4 rounded-lg`}\n`\n\nconst TripodsStyledFontAwesomeIcon = styled(FontAwesomeIcon)`\n ${tw`m-4 text-psb-green-600 text-4xl md:text-5xl self-center`}\n`\n\nconst StyledLink = styled(Link)`\n ${tw`text-xl md:text-xl lg:text-2xl xl:text-3xl font-semibold leading-snug pt-4`}\n`\n\nconst TripodsStyledLink = styled(Link)`\n ${tw`block mx-4 p-2 rounded-lg text-white text-lg font-bold bg-psb-green-600`}\n`\n\nconst SectionImageRight = styled.div`\n ${tw`hidden md:block md:w-1/4 float-right m-2`}\n`\n\nconst Separator = styled.hr`\n ${tw`w-48 my-6 rounded-md border-2 border-psb-orange-400`}\n`\n\nconst TripodGuidePage = ({ data, location }) => {\n const topPortableTripods = data.top_portable_tripods.edges\n\n \treturn (\n \t\n \t\n\t\t\t\n \t
\n \n \n

Guides - Tripods

\n \n

Welcome to the Pocket Shutterbug Tripod guide.

\n

Read on below for our top tripod recommendations or jump straight to one of the following categories.

\n \n \n \n \n Portable Tripods\n

\n Explore\n \n \n \n \n \n Travel Tripods\n

\n Coming soon...\n \n \n \n \n Our Portable Tripod Recommendations\n

Portable tripods are great to carry in your pocket or backpack when you are out and about, and help you get that smooth video shot, a group photo or for vlogging.

\n \n

How we review and rate tripods

\n

We try to maintain consistency across our tripod review. Therefore we use the same set of criteria for each review.

\n

Features

\n

Not all tripods are created equal. Whilst most offer the basic ability to steady your camera to help you take more stable photos or videos, some include extra features that can enhance this experience.

\n

Build Quality

\n

Tripods can be made from a number of different materials, from cheap and light plastics, lightweight aluminium to strong carbon fiber.

\n

Stability

\n

The sole purpose of a tripod is to provide stability for your camera, whether you are shooting a landscape long exposure or taking video. Many cheaper tripods are simply not made well enough, especially the leg joints, to be able to hold steady a camera.

\n

Portability

\n

Whilst more important when looking at portable and travel tripods, it is still important to consider how easy the tripod can be carried and packed in luggage.

\n

Value

\n

Is an expensive carbon fibre tripod really worth the investment or are you better with a cheaper alumnium tripod.

\n
\n
\n \t
\n\t
\n\t)\n}\n\nexport default TripodGuidePage\n\nexport const query = graphql`\n fragment Products on ProductsJson {\n productType\n name\n slug\n merchantURL\n merchant\n summary\n score\n categories\n }\n query {\n top_portable_tripods: allProductsJson(\n sort: { fields: [score], order: DESC }\n filter: { productType: { in: [\"tripods\"] }, categories: { in: [\"Portable Tripods\"] }, published: { eq: true } }\n limit: 3\n ) {\n edges {\n node {\n ...Products\n }\n }\n }\n }\n`"],"sourceRoot":""}