-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style(demos/narcissus-astro): 🛁 linting
- Loading branch information
Showing
19 changed files
with
125 additions
and
138 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
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
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
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
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
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
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
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
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
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
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
65 changes: 33 additions & 32 deletions
65
demos/narcissus-astro/src/components/Layout/RodneyLabCredit.tsx
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,35 +1,36 @@ | ||
import React from 'react'; | ||
import type { FC } from 'react'; | ||
import type { JSX } from 'react'; | ||
import { container, link, logo, rodneyLabText } from '$components/Layout/RodneyLabCredit.css'; | ||
|
||
const RodneyLabCredit: FC<{}> = () => ( | ||
<div className={container}> | ||
A project by{' '} | ||
<a | ||
aria-label="Open the Rodney Lab site" | ||
href="https://rodneylab.com/" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<img | ||
alt="Rodney Lab Logo" | ||
className={logo} | ||
src="/assets/rodneylab-logo.png" | ||
height="16" | ||
width="16" | ||
/> | ||
</a> | ||
<a | ||
aria-label="Open the Rodney Lab site" | ||
className={link} | ||
href="https://rodneylab.com/" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<span className={rodneyLabText}>RODNEY LAB</span> | ||
</a> | ||
. | ||
</div> | ||
); | ||
const RodneyLabCredit: JSX.Element = function RodneyLabCredit() { | ||
return ( | ||
<div className={container}> | ||
A project by{' '} | ||
<a | ||
aria-label="Open the Rodney Lab site" | ||
href="https://rodneylab.com/" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<img | ||
alt="Rodney Lab Logo" | ||
className={logo} | ||
src="/assets/rodneylab-logo.png" | ||
height="16" | ||
width="16" | ||
/> | ||
</a> | ||
<a | ||
aria-label="Open the Rodney Lab site" | ||
className={link} | ||
href="https://rodneylab.com/" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<span className={rodneyLabText}>RODNEY LAB</span> | ||
</a> | ||
. | ||
</div> | ||
); | ||
}; | ||
|
||
export { RodneyLabCredit as default }; | ||
export default RodneyLabCredit; |
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
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
Oops, something went wrong.