-
Notifications
You must be signed in to change notification settings - Fork 511
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5090 from cpinitiative/nontrivial-sponsor-placement
Non-Trivial Sponsor Placement
- Loading branch information
Showing
5 changed files
with
40 additions
and
6 deletions.
There are no files selected for viewing
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.
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,25 @@ | ||
import { StaticImage } from 'gatsby-plugin-image'; | ||
import * as React from 'react'; | ||
const NonTrivial = () => { | ||
return ( | ||
<> | ||
<div className="hidden dark:block "> | ||
<StaticImage | ||
src="../../../assets/nontrivialdark.png" | ||
alt="Non-Trivial logo" | ||
placeholder="blurred" | ||
height={48} | ||
/> | ||
</div> | ||
<div className="dark:hidden"> | ||
<StaticImage | ||
src="../../../assets/nontrivial.png" | ||
alt="Non-Trivial logo" | ||
placeholder="blurred" | ||
height={48} | ||
/> | ||
</div> | ||
</> | ||
); | ||
}; | ||
export default NonTrivial; |
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,3 +1,4 @@ | ||
export { default as EasyFunCoding } from './EasyFunCoding'; | ||
export { default as NonTrivial } from './NonTrivial'; | ||
export { default as Vercel } from './Vercel'; | ||
export { default as XCamp } from './XCamp'; |
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