-
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.
* update favicons Signed-off-by: Zander Martineau <[email protected]> * rename static to public Signed-off-by: Zander Martineau <[email protected]> * move all source code into the src dir Signed-off-by: Zander Martineau <[email protected]> * cache bust * try experimental flag https://nextjs.org/blog/next-9-1#module--nomodule vercel/next.js#7704 * fix paths Signed-off-by: Zander Martineau <[email protected]> * fix paths again Signed-off-by: Zander Martineau <[email protected]>
- Loading branch information
1 parent
d5ffc63
commit 6ad18e3
Showing
79 changed files
with
1,254 additions
and
276 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
10.13.0 |
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,6 +1,17 @@ | ||
{ | ||
"workbench.colorCustomizations": { | ||
"statusBar.background": "#DB4E87", | ||
"statusBar.foreground": "#fff" | ||
} | ||
"activityBar.background": "#e478a4", | ||
"activityBar.foreground": "#15202b", | ||
"activityBar.inactiveForeground": "#15202b99", | ||
"activityBarBadge.background": "#b7ea95", | ||
"activityBarBadge.foreground": "#15202b", | ||
"titleBar.activeBackground": "#db4e87", | ||
"titleBar.inactiveBackground": "#db4e8799", | ||
"titleBar.activeForeground": "#e7e7e7", | ||
"titleBar.inactiveForeground": "#e7e7e799", | ||
"statusBar.background": "#db4e87", | ||
"statusBarItem.hoverBackground": "#e478a4", | ||
"statusBar.foreground": "#e7e7e7" | ||
}, | ||
"peacock.color": "#DB4E87" | ||
} |
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 @@ | ||
module.exports = { target: 'serverless' } | ||
module.exports = { target: 'serverless', experimental: { modern: true } } |
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
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.
File renamed without changes
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
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 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,32 @@ | ||
<link | ||
rel="apple-touch-icon" | ||
sizes="180x180" | ||
href="/favicon/apple-touch-icon.png?v=4769nKP32b" | ||
/> | ||
<link | ||
rel="icon" | ||
type="image/png" | ||
sizes="32x32" | ||
href="/favicon/favicon-32x32.png?v=4769nKP32b" | ||
/> | ||
<link | ||
rel="icon" | ||
type="image/png" | ||
sizes="16x16" | ||
href="/favicon/favicon-16x16.png?v=4769nKP32b" | ||
/> | ||
<link rel="manifest" href="/favicon/site.webmanifest?v=4769nKP32b" /> | ||
<link | ||
rel="mask-icon" | ||
href="/favicon/safari-pinned-tab.svg?v=4769nKP32b" | ||
color="#15181c" | ||
/> | ||
<link rel="shortcut icon" href="/favicon/favicon.ico?v=4769nKP32b" /> | ||
<meta name="apple-mobile-web-app-title" content="zander.wtf" /> | ||
<meta name="application-name" content="zander.wtf" /> | ||
<meta name="msapplication-TileColor" content="#15181c" /> | ||
<meta | ||
name="msapplication-config" | ||
content="/favicon/browserconfig.xml?v=4769nKP32b" | ||
/> | ||
<meta name="theme-color" content="#15181c" /> |
File renamed without changes
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,19 @@ | ||
{ | ||
"name": "zander.wtf", | ||
"short_name": "zander.wtf", | ||
"icons": [ | ||
{ | ||
"src": "/favicon/android-chrome-192x192.png?v=4769nKP32b", | ||
"sizes": "192x192", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "/favicon/android-chrome-512x512.png?v=4769nKP32b", | ||
"sizes": "512x512", | ||
"type": "image/png" | ||
} | ||
], | ||
"theme_color": "#15181c", | ||
"background_color": "#15181c", | ||
"display": "standalone" | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,51 @@ | ||
import React, { useEffect, useState } from 'react' | ||
import jsonp from 'jsonp' | ||
|
||
const WEBMENTIONS_BASE_PATH = | ||
'https://webmention.io/api/mentions?perPage=50&jsonp=parseWebmentions&target=' | ||
|
||
export const Webmentions = () => { | ||
const [mentions, setMentions] = useState([]) | ||
|
||
useEffect(() => { | ||
jsonp( | ||
`${WEBMENTIONS_BASE_PATH}${window.location.href}`, | ||
null, | ||
(err, data) => { | ||
if (err) { | ||
console.error(err.message) | ||
} else { | ||
setMentions(data) | ||
} | ||
} | ||
) | ||
}) | ||
|
||
return mentions.map((item, index) => { | ||
return ( | ||
<div className="note note--list h-entry" key={index}> | ||
<div className="note__date"> | ||
<a | ||
className="u-url dt-published" | ||
href="https://keithjgrant.com/replies/2019/01/yes-do-it/" | ||
> | ||
{item.verified_date} | ||
</a> | ||
</div> | ||
<div className="metadata text-left"> | ||
in reply to | ||
<a | ||
className="u-in-reply-to" | ||
rel="in-reply-to" | ||
href="https://twitter.com/SaraSoueidan/status/1084833046140981248" | ||
> | ||
a post on twitter.com | ||
</a> | ||
</div> | ||
<div className="note__body e-content show-embeds"> | ||
<p>Yes! DO IT ✨</p> | ||
</div> | ||
</div> | ||
) | ||
}) | ||
} |
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
6ad18e3
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to following URLs: