chore(app): fix some links

This commit is contained in:
rektdeckard
2024-01-04 22:26:36 -07:00
parent aff7abbae6
commit 97af564c15
7 changed files with 16 additions and 22 deletions

View File

@@ -112,7 +112,7 @@ ReactDOM.render(<App />, document.getElementById("root"));
- [eleventy-plugin-phosphoricons](https://github.com/reatlat/eleventy-plugin-phosphoricons) ▲ An Eleventy plugin for add shortcode, allows Phosphor icons to be embedded as inline svg into templates - [eleventy-plugin-phosphoricons](https://github.com/reatlat/eleventy-plugin-phosphoricons) ▲ An Eleventy plugin for add shortcode, allows Phosphor icons to be embedded as inline svg into templates
- [phosphor-leptos](https://github.com/SorenHolstHansen/phosphor-leptos) ▲ Phosphor icon component library for Leptos apps (rust) - [phosphor-leptos](https://github.com/SorenHolstHansen/phosphor-leptos) ▲ Phosphor icon component library for Leptos apps (rust)
If you've made a port of Phosphor and you want to see it here, just open a PR [here](https://github.com/phosphor-icons/phosphor-home)! If you've made a port of Phosphor and you want to see it here, just open a PR [here](https://github.com/phosphor-icons/homepage)!
## License ## License

View File

@@ -1,6 +1,6 @@
{ {
"name": "phosphor-home", "name": "@phosphor-icons/homepage",
"version": "2.0.3", "version": "2.0.4",
"license": "MIT", "license": "MIT",
"homepage": "https://phosphoricons.com", "homepage": "https://phosphoricons.com",
"author": { "author": {

View File

@@ -8,7 +8,7 @@ import IconGrid from "@/components/IconGrid";
import Footer from "@/components/Footer"; import Footer from "@/components/Footer";
import ErrorBoundary from "@/components/ErrorBoundary"; import ErrorBoundary from "@/components/ErrorBoundary";
import Notice from "@/components/Notice"; import Notice from "@/components/Notice";
// import Recipes from "@/components/Recipes"; import Recipes from "@/components/Recipes";
import { useCSSVariables } from "@/hooks"; import { useCSSVariables } from "@/hooks";
import { isDarkThemeSelector } from "@/state"; import { isDarkThemeSelector } from "@/state";

View File

@@ -112,7 +112,7 @@ const Footer = (_: FooterProps) => {
Phosphor is free and open-source, licensed under{" "} Phosphor is free and open-source, licensed under{" "}
<a <a
className="main-link" className="main-link"
href="https://raw.githubusercontent.com/phosphor-icons/phosphor-home/master/LICENSE" href="https://raw.githubusercontent.com/phosphor-icons/homepage/master/LICENSE"
> >
MIT MIT
</a> </a>
@@ -149,7 +149,7 @@ const Footer = (_: FooterProps) => {
<div className="fine-print"> <div className="fine-print">
<p> <p>
Type set in{" "} Type set in{" "}
<a className="main-link" href="https://manropefont.com/"> <a className="main-link" href="https://www.gent.media/manrope">
Manrope Manrope
</a>{" "} </a>{" "}
by Mikhail Sharanda and{" "} by Mikhail Sharanda and{" "}

View File

@@ -86,7 +86,10 @@ const Links = (_: LinksProps) => {
<div> <div>
<ArrowElbowDownRight size={24} /> <ArrowElbowDownRight size={24} />
<span> <span>
<OutboundLink href="https://paypal.me/minoraxis" eventLabel="Donate"> <OutboundLink
href="https://www.buymeacoffee.com/phosphoricons"
eventLabel="Donate"
>
Donate on BuyMeACoffee Donate on BuyMeACoffee
</OutboundLink> </OutboundLink>
{" / "} {" / "}

View File

@@ -8,7 +8,7 @@ export type RecipeProps = {
const Recipe = ({ url, Example }: RecipeProps) => { const Recipe = ({ url, Example }: RecipeProps) => {
return ( return (
<a className="recipe card" href={url}> <a className="recipe card" href={url} target="_blank">
{/* <h1>{title}</h1> */} {/* <h1>{title}</h1> */}
<div className="recipe-linkout"> <div className="recipe-linkout">
<span>Open on StackBlitz</span> <span>Open on StackBlitz</span>

View File

@@ -4,14 +4,14 @@ import { RecipeProps } from "../Recipe";
const animation: RecipeProps = { const animation: RecipeProps = {
title: "Hand Drawn", title: "Hand Drawn",
url: "https://stackblitz.com/edit/react-ts-f7q7gs?file=App.tsx,style.css", url: "https://stackblitz.com/edit/stackblitz-starters-4vqgkm?file=src%2FApp.tsx",
Example() { Example() {
return ( return (
<div className="example"> <div className="example">
<CassetteTape <CassetteTape
color="teal" color="teal"
style={{ filter: "url(#displacementFilter)" }} style={{ filter: "url(#displacementFilter)" }}
> >
<defs> <defs>
<filter id="displacementFilter"> <filter id="displacementFilter">
<feTurbulence <feTurbulence
@@ -30,18 +30,9 @@ const animation: RecipeProps = {
</filter> </filter>
</defs> </defs>
</CassetteTape> </CassetteTape>
<Cube <Cube color="teal" style={{ filter: "url(#displacementFilter)" }} />
color="teal" <ThumbsUp color="teal" style={{ filter: "url(#displacementFilter)" }} />
style={{ filter: "url(#displacementFilter)" }} <Virus color="teal" style={{ filter: "url(#displacementFilter)" }} />
/>
<ThumbsUp
color="teal"
style={{ filter: "url(#displacementFilter)" }}
/>
<Virus
color="teal"
style={{ filter: "url(#displacementFilter)" }}
/>
</div> </div>
); );
}, },