This repository has been archived by the owner on Nov 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added HacktoberFest Card * Updated Hacktober Logo to Latest 2020 * Updated Hacktober link + Updated text Signed-off-by: Sayan Mondal <[email protected]>
- Loading branch information
Sayan Mondal
authored
Oct 1, 2020
1 parent
317eb05
commit 76c8f6a
Showing
22 changed files
with
66 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"componentChunkName":"component---src-pages-community-tsx","path":"/community/","result":{"pageContext":{}},"staticQueryHashes":["1505837148","243816524","281358774","3205528609","3408949196","74630084","822897411"]} | ||
{"componentChunkName":"component---src-pages-community-tsx","path":"/community/","result":{"pageContext":{}},"staticQueryHashes":["1505837148","1578129905","243816524","281358774","3408949196","74630084","822897411"]} |
Binary file added
BIN
+300 KB
public/static/6583d1f76a969dbab85872c032e9de7e/4e530/hacktoberfest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+109 KB
public/static/6583d1f76a969dbab85872c032e9de7e/6050d/hacktoberfest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+155 KB
public/static/6583d1f76a969dbab85872c032e9de7e/9000d/hacktoberfest.webp
Binary file not shown.
Binary file added
BIN
+9.69 KB
public/static/6583d1f76a969dbab85872c032e9de7e/b42dd/hacktoberfest.webp
Binary file not shown.
Binary file added
BIN
+25.8 KB
public/static/6583d1f76a969dbab85872c032e9de7e/b95f4/hacktoberfest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+118 KB
public/static/6583d1f76a969dbab85872c032e9de7e/e0f73/hacktoberfest.webp
Binary file not shown.
Binary file added
BIN
+32.8 KB
public/static/6583d1f76a969dbab85872c032e9de7e/e4e36/hacktoberfest.webp
Binary file not shown.
Binary file added
BIN
+42.5 KB
public/static/cda7c0c2e66d4cb965c2f8205bec5896/002c1/hacktoberfest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+25.2 KB
public/static/cda7c0c2e66d4cb965c2f8205bec5896/1d872/hacktoberfest.webp
Binary file not shown.
Binary file added
BIN
+53.8 KB
public/static/cda7c0c2e66d4cb965c2f8205bec5896/4e6d4/hacktoberfest.webp
Binary file not shown.
Binary file added
BIN
+101 KB
public/static/cda7c0c2e66d4cb965c2f8205bec5896/53f65/hacktoberfest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+104 KB
public/static/cda7c0c2e66d4cb965c2f8205bec5896/6ba37/hacktoberfest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+56.1 KB
public/static/cda7c0c2e66d4cb965c2f8205bec5896/9fe56/hacktoberfest.webp
Binary file not shown.
Binary file added
BIN
+26.1 KB
public/static/cda7c0c2e66d4cb965c2f8205bec5896/b42dd/hacktoberfest.webp
Binary file not shown.
Binary file added
BIN
+44.4 KB
public/static/cda7c0c2e66d4cb965c2f8205bec5896/b95f4/hacktoberfest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+48.7 KB
public/static/cda7c0c2e66d4cb965c2f8205bec5896/c62c0/hacktoberfest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+57.6 KB
public/static/cda7c0c2e66d4cb965c2f8205bec5896/e4e36/hacktoberfest.webp
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
import { graphql, useStaticQuery } from "gatsby"; | ||
import Img from "gatsby-image"; | ||
import React from "react"; | ||
import styled from "styled-components"; | ||
|
||
const Wrapper = styled.div` | ||
width: 100%; | ||
height: 100%; | ||
`; | ||
|
||
const StyledImage = styled(Img)` | ||
margin: auto; | ||
width: 100%; | ||
height: ${(props) => | ||
props.theme.screens.sm | ||
? "8rem" | ||
: props.theme.screens.xl | ||
? "10rem" | ||
: "10rem"}; | ||
object-fit: contain; | ||
`; | ||
|
||
const HacktoberFestImage: React.FC = () => { | ||
const data = useStaticQuery(graphql` | ||
query { | ||
image: file(relativePath: { eq: "hacktoberfest.png" }) { | ||
childImageSharp { | ||
fluid(maxWidth: 1024, quality: 100) { | ||
...GatsbyImageSharpFluid_withWebp | ||
...GatsbyImageSharpFluidLimitPresentationSize | ||
} | ||
} | ||
} | ||
} | ||
`); | ||
|
||
return ( | ||
<Wrapper> | ||
<StyledImage | ||
fluid={data.image.childImageSharp.fluid} | ||
alt="Image of Litmus Features" | ||
/> | ||
</Wrapper> | ||
); | ||
}; | ||
|
||
export { HacktoberFestImage }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.