Contributors really help keep Kismet Hub alive! Here are some ways you can help:
Report bugs or issues
Submit feature requests
Improve documentation
Contribute code via pull requests
To get started, please fork our repository on GitHub and clone it to your own device. Here's a guide on adding more guides to the Kismet Hub!
Preferrably called the guide name, for example, the HTML guide is called "html.astro".
Make sure to import the Layout, Navigation, Footer, and custom.css like so:
---
import Layout from '../../layouts/Layout.astro';
import '../../css/custom.css';
import Navigation from '../../pages/navigation.astro';
import Footer from '../../pages/footer.astro';
---
Make sure to add the HTML structure like this:
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content=Astro v5.16.3 />
<Layout title="GUIDE NAME"></Layout>
</head>
<style is:global>
</style>
<Navigation />
<body>
...YOUR CONTENT HERE...
</body>
<Footer />
</html>
Looking at the repository of this is highly recommended so that you can know others have made their guides.
made with <3 by Sarvesh!