diff --git a/CHANGELOG.md b/CHANGELOG.md index feba10d5c..8a3873756 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log -All changes to Chicio coding will be documented in this file. +All changes to Chicio Coding will be documented in this file. + +## [6.3.3](https://github.com/chicio/chicio.github.io/releases/tag/v6.3.3) +Release date: 2023-09-24 + +#### Fixed + +- Eager flag for images above the fold ## [6.3.2](https://github.com/chicio/chicio.github.io/releases/tag/v6.3.2) Release date: 2023-09-18 diff --git a/src/components/design-system/molecules/post-authors.tsx b/src/components/design-system/molecules/post-authors.tsx index ebbb09802..9be1f66b1 100644 --- a/src/components/design-system/molecules/post-authors.tsx +++ b/src/components/design-system/molecules/post-authors.tsx @@ -87,6 +87,7 @@ export const PostAuthors: FC = ({ > ` } `; -const PostCardImageContainer = styled(GatsbyImage)` +const PostCardImage = styled(GatsbyImage)` width: 100%; object-fit: cover; height: 200px; @@ -117,9 +117,10 @@ export const PostCard: FC = ({ label: tracking.label.body, }} > - ( = ({ import(`../components/bottom-index`)); const HomePage: FC = ({ location }) => { - const data = useStaticQuery( - graphql` - query HomePage { - site { - siteMetadata { - author - featuredImage - } + const data = useStaticQuery(graphql` + query HomePage { + site { + siteMetadata { + author + featuredImage } } - ` - ); - const siteMetada = data.site!.siteMetadata!; - const author = siteMetada.author!; - const featuredImage = siteMetada.featuredImage!; + } + `); + const siteMetadata = data.site!.siteMetadata!; + const author = siteMetadata.author!; + const featuredImage = siteMetadata.featuredImage!; return (