-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: responsive styles, biggo clean up (#76)
- Loading branch information
1 parent
9a3a368
commit 9d208f5
Showing
20 changed files
with
495 additions
and
446 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,7 +45,7 @@ const Bio: FC = () => { | |
<Text> | ||
Wanna chat about <span className="dynamic">{talkingPoint}</span>? Lets | ||
talk. You can reach me at{' '} | ||
<Link href="mailto:[email protected]">[email protected]</Link>. | ||
<Link href="mailto:[email protected]">[email protected]</Link>. | ||
</Text> | ||
</p> | ||
</Container> | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { useState, FC } from 'react'; | ||
import Head from 'next/head'; | ||
|
||
import { useVisibilityChange } from 'services/utils'; | ||
|
||
const DynamicFavicon: FC = () => { | ||
const [isAway, setAway] = useState(false); | ||
useVisibilityChange(setAway); | ||
|
||
return ( | ||
<Head> | ||
<link | ||
rel="shortcut icon" | ||
type="image/png" | ||
href={isAway ? '/favicon-away.png' : '/favicon.png'} | ||
/> | ||
</Head> | ||
); | ||
}; | ||
|
||
export default DynamicFavicon; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { StorageClient } from 'services/_server_'; | ||
|
||
export default function handler(_, res) { | ||
const client = new StorageClient(); | ||
client.getSpotifyCredentials(); | ||
res.statusCode = 200; | ||
res.setHeader('Content-Type', 'application/json'); | ||
res.end(JSON.stringify({ success: true })); | ||
} |
Oops, something went wrong.