*/}
      
 1 || !isClient ? 'portrait:items-center' : 'landscape:justify-center')}
        style={{gridArea: '1/1'}}
      >
        
        {/* 
            
              
                
              
              
            
            
            Photography Gallery
            
          
  */}
        
          Chuck Dries
           1 && 'landscape:shadow-lg',
              'mb-4 inline-block', isClient &&
              'bg-vibrant-dark blurred-or-opaque-bg-1'
            )}
          >
            
 1 || !isClient ? '' : '')}
            >
              
                
Full Stack Software Engineer & Hobbyist Photographer
              
              {/* {
} */}
              {/* 
                - Software Engineer, Axosoft
- chuck@chuckdries.com/602.618.0414
- 
                  Github/
                  LinkedIn/
                  Devpost/
                  Resume [pdf]/
                  Medium (blog)
                
 */}
            
            
 
        
      
    
  >);
};
export const query = graphql`
{
  allFile(
    filter: { sourceInstanceName: {eq: "gallery"} }
    sort: {order: DESC, fields: fields___imageMeta___dateTaken}
  ) {
    edges {
      node {
        relativePath
        base
        childImageSharp {
          fluid {
            aspectRatio
          }
          gatsbyImageData(
            layout: FULL_WIDTH
            placeholder: NONE
            breakpoints: [750, 1080, 1366, 1920, 2560, 3840]
          )
        }
        fields {
          imageMeta {
            vibrant {
              ...VibrantColors
            }
          }
        }
      }
    }
  }
}
`;
export default IndexPage;