diff --git a/README.md b/README.md index 0b83c605..d75e42ac 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,8 @@ When issues are reported, they are triaged by the Pillar-ui team to ensure that Pull requests are welcome and should follow the guidelines outlined in the CONTRIBUTING.md file. Once a pull request is submitted, it is reviewed by the Pillar-ui team, who will provide feedback and suggest any necessary changes. Once the pull request is approved, it will be merged into the main branch and included in the next release. -Releases +## Releases + Pillar-ui releases are managed using Semantic Versioning. When a new release is ready, the team will create a release branch and begin the process of testing and preparing the release. Once the release has been thoroughly tested and is ready for deployment, it will be merged into the main branch and published to NPM. ## Roadmap @@ -134,6 +135,8 @@ You can sponsor the project on GitHub Sponsors. GitHub Sponsors is a platform th Alternatively, you can also support the project by contributing code, reporting issues, and spreading the word about it. Every little bit helps and we appreciate all contributions, big and small. +[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/Y8Y210RGNC) + Thank you for considering sponsoring Pillar-ui! ## License diff --git a/apps/docs/src/api/docs.ts b/apps/docs/src/api/docs.ts index 3de845db..3fdcdaaf 100644 --- a/apps/docs/src/api/docs.ts +++ b/apps/docs/src/api/docs.ts @@ -105,9 +105,7 @@ export function getTutorials() { } export function getTutorialBySlug(s: string) { - const a = getTutorials().find(({ slug }) => slug === s) - console.log('this is the value of tutorial', a, 'and this is the value of slug', s) - return a + return getTutorials().find(({ slug }) => slug === s) } export function getFeatures() { diff --git a/apps/docs/src/app/_components/docHeader/index.tsx b/apps/docs/src/app/_components/docHeader/index.tsx index 1aaae259..b47470e6 100644 --- a/apps/docs/src/app/_components/docHeader/index.tsx +++ b/apps/docs/src/app/_components/docHeader/index.tsx @@ -45,7 +45,7 @@ export const DocHeader = ({ title, type, items, root, excerpt, slug, directory }