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

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

View File

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

View File

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

View File

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

View File

@@ -4,14 +4,14 @@ import { RecipeProps } from "../Recipe";
const animation: RecipeProps = {
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() {
return (
<div className="example">
<CassetteTape
color="teal"
style={{ filter: "url(#displacementFilter)" }}
>
>
<defs>
<filter id="displacementFilter">
<feTurbulence
@@ -30,18 +30,9 @@ const animation: RecipeProps = {
</filter>
</defs>
</CassetteTape>
<Cube
color="teal"
style={{ filter: "url(#displacementFilter)" }}
/>
<ThumbsUp
color="teal"
style={{ filter: "url(#displacementFilter)" }}
/>
<Virus
color="teal"
style={{ filter: "url(#displacementFilter)" }}
/>
<Cube color="teal" style={{ filter: "url(#displacementFilter)" }} />
<ThumbsUp color="teal" style={{ filter: "url(#displacementFilter)" }} />
<Virus color="teal" style={{ filter: "url(#displacementFilter)" }} />
</div>
);
},