From 3c25eedace82118d7a34578324c170fbe14a70b2 Mon Sep 17 00:00:00 2001 From: Muawiya Amir Date: Sun, 13 Sep 2026 14:12:46 +0500 Subject: [PATCH 1/8] chore: add funding link for sponsor button --- .github/FUNDING.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..f73183e --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,4 @@ +# GitHub Sponsors is pending for Coding Moves. Until it is approved, +# the Sponsor button points to the project's professional support page. +custom: + - "https://coding-moves.github.io/diskern/support" From e351b6c48e9741b42117d60c3c572208669f2e66 Mon Sep 17 00:00:00 2001 From: Muawiya Amir Date: Sun, 13 Sep 2026 14:12:46 +0500 Subject: [PATCH 2/8] docs(site): add professional support page --- site/src/App.jsx | 2 + site/src/components/Footer.jsx | 5 +- site/src/components/NavBar.jsx | 4 + site/src/pages/Support.jsx | 78 ++++++++++++++++ site/src/styles/index.css | 162 +++++++++++++++++++++++++++++++++ 5 files changed, 250 insertions(+), 1 deletion(-) create mode 100644 site/src/pages/Support.jsx diff --git a/site/src/App.jsx b/site/src/App.jsx index f23ffdc..a3f4ae0 100644 --- a/site/src/App.jsx +++ b/site/src/App.jsx @@ -2,6 +2,7 @@ import { Routes, Route } from 'react-router-dom' import Layout from './components/Layout.jsx' import Home from './pages/Home.jsx' import NotFound from './pages/NotFound.jsx' +import Support from './pages/Support.jsx' // All routes share (nav + footer). To add a new page later — // e.g. /docs or /changelog — create src/pages/Docs.jsx and add @@ -11,6 +12,7 @@ export default function App() { }> } /> + } /> } /> diff --git a/site/src/components/Footer.jsx b/site/src/components/Footer.jsx index d87866c..6eb6239 100644 --- a/site/src/components/Footer.jsx +++ b/site/src/components/Footer.jsx @@ -1,3 +1,5 @@ +import { Link } from 'react-router-dom' + export default function Footer() { return (
@@ -10,7 +12,8 @@ export default function Footer() { > View the code on GitHub - . + .{' '} + Support the project.

) diff --git a/site/src/components/NavBar.jsx b/site/src/components/NavBar.jsx index 269707c..61fc303 100644 --- a/site/src/components/NavBar.jsx +++ b/site/src/components/NavBar.jsx @@ -19,6 +19,10 @@ export default function NavBar() { Diskern + +