diff --git a/src/info/package-lock.json b/src/info/package-lock.json index 976be80..ef2e9c5 100644 --- a/src/info/package-lock.json +++ b/src/info/package-lock.json @@ -4770,6 +4770,14 @@ "scheduler": "^0.20.2" } }, + "react-iframe": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/react-iframe/-/react-iframe-1.8.0.tgz", + "integrity": "sha512-NYi89+rEqREwQxW9sDf+akh6/dtwWd3bOjByoVEIQ7SicOxVawRMer3pLdWjFaHXpuxTB9NqobPf/Ohj2iAKkg==", + "requires": { + "object-assign": "^4.1.1" + } + }, "react-is": { "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", diff --git a/src/info/package.json b/src/info/package.json index f667cad..ab7f6ab 100644 --- a/src/info/package.json +++ b/src/info/package.json @@ -15,6 +15,7 @@ "postcss": "^8.2.13", "react": "17.0.2", "react-dom": "17.0.2", + "react-iframe": "^1.8.0", "tailwindcss": "^2.1.2" } } diff --git a/src/info/pages/identities/fursona/index.js b/src/info/pages/identities/fursona/index.js index 1c8d3de..e741a80 100644 --- a/src/info/pages/identities/fursona/index.js +++ b/src/info/pages/identities/fursona/index.js @@ -2,7 +2,7 @@ import BasicPage from "../../../components/basic-page-template"; import WCard from "../../../components/werefox-card"; import IDCard from "../../../components/identity-card"; -export default function Gender() { +export default function Fursona() { return ( diff --git a/src/info/pages/identities/neuro/index.js b/src/info/pages/identities/neuro/index.js index 81db140..f25451a 100644 --- a/src/info/pages/identities/neuro/index.js +++ b/src/info/pages/identities/neuro/index.js @@ -2,7 +2,7 @@ import BasicPage from "../../../components/basic-page-template"; import WCard from "../../../components/werefox-card"; import IDCard from "../../../components/identity-card"; -export default function Gender() { +export default function Neurodiversity() { return ( + diff --git a/src/info/pages/support/index.js b/src/info/pages/support/index.js new file mode 100644 index 0000000..914fccf --- /dev/null +++ b/src/info/pages/support/index.js @@ -0,0 +1,61 @@ +import BasicPage from "../../components/basic-page-template"; +import WCard from "../../components/werefox-card"; +import Link from "next/link"; +import Iframe from "react-iframe"; + +export default function Support() { + return ( + + +
+

+ I would sincerely appreciate if you would throw some financial + support my way!! 💙 +

+

+ You could support me through Patreon, Liberapay, or Ko-fi +

+ +
+ + + Donate using Liberapay + + +
+
+
+ +
+
+
+
+
+ ); +} diff --git a/src/info/public/emoji/green_money.svg b/src/info/public/emoji/green_money.svg new file mode 100644 index 0000000..3d5003c --- /dev/null +++ b/src/info/public/emoji/green_money.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/info/public/images/liberapay_donate.svg b/src/info/public/images/liberapay_donate.svg new file mode 100644 index 0000000..1ca05be --- /dev/null +++ b/src/info/public/images/liberapay_donate.svg @@ -0,0 +1 @@ +Donate \ No newline at end of file diff --git a/src/info/public/images/patreon_logo.png b/src/info/public/images/patreon_logo.png new file mode 100644 index 0000000..83c3f8c Binary files /dev/null and b/src/info/public/images/patreon_logo.png differ diff --git a/src/info/tailwind.config.js b/src/info/tailwind.config.js index 82ccf06..0d72243 100644 --- a/src/info/tailwind.config.js +++ b/src/info/tailwind.config.js @@ -8,10 +8,11 @@ module.exports = { }, colors: { "werefox-blue": { + light: "#94C2FF", DEFAULT: "#75B1FF", dark: "#0052B8", - darker: "#0052B8", - darkest: "#0052B8", + darker: "#00377A", + darkest: "#00326B", }, "werefox-pink": { DEFAULT: "#FF84CA", @@ -43,7 +44,9 @@ module.exports = { }, }, variants: { - extend: {}, + extend: { + brightness: ["hover", "dark"], + }, }, plugins: [], };