added donation callout and non responsive warning

This commit is contained in:
2024-02-11 02:00:58 +01:00
parent 4203d75241
commit af2aab301c
10 changed files with 94 additions and 12 deletions

View File

@@ -2,6 +2,7 @@
const { frontmatter } = Astro.props;
import Layout from "../layouts/Layout.astro";
import { Icon } from "astro-icon/components";
import DonationCallout from "../components/DonationCallout.astro";
import "../styles/sidebar.scss";
const title = frontmatter.title + " | Docs";
const unsortedDocs = await Astro.glob("../pages/docs/*/*.{md,mdx}");
@@ -42,6 +43,9 @@ const docs = unsortedDocs.sort((a) =>
);
})
}
<DonationCallout
text="These projects require a lot of time and effort. If you would like to support this project, consider making a donation of whatever it is worth to you!"
/>
</div>
</div>
</Layout>