kaneo (minimalist kanban) fork to experiment adding a tangled integration github.com/usekaneo/kaneo
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: add sponsorship information to README and issue template, and include sponsor link in layout

+26 -2
+4 -1
.github/ISSUE_TEMPLATE/config.yml
··· 8 8 about: Join our Discord server to chat with the community and get help 9 9 - name: GitHub Discussions 10 10 url: https://github.com/orgs/usekaneo/discussions 11 - about: For general questions and discussions about Kaneo 11 + about: For general questions and discussions about Kaneo 12 + - name: Support Kaneo 13 + url: https://github.com/sponsors/andrejsshell 14 + about: Help keep Kaneo maintained and evolving
+4
README.md
··· 44 44 45 45 Learn more about Kaneo's features and capabilities in our [documentation](https://kaneo.app/docs). 46 46 47 + ## Sponsors 48 + 49 + Kaneo is open source and free forever. If you find it useful, consider [sponsoring the project](https://github.com/sponsors/andrejsshell) to help support ongoing development. 50 + 47 51 ## Getting Started 48 52 49 53 ### Quick Start with Docker Compose
+17
apps/docs/app/(home)/layout.tsx
··· 81 81 ), 82 82 }, 83 83 { 84 + type: "custom", 85 + on: "nav", 86 + children: ( 87 + <Link 88 + href="https://github.com/sponsors/andrejsshell" 89 + className="inline-flex items-center gap-1 p-2 text-fd-muted-foreground transition-colors hover:text-fd-accent-foreground data-[active=true]:text-fd-primary [&_svg]:size-4 text-base" 90 + > 91 + Sponsor 92 + </Link> 93 + ), 94 + }, 95 + { 84 96 type: "menu", 85 97 on: "menu", 86 98 text: "Links", ··· 93 105 { 94 106 text: "Documentation", 95 107 url: "/docs", 108 + }, 109 + { 110 + text: "Sponsor", 111 + url: "https://github.com/sponsors/andrejsshell", 112 + external: true, 96 113 }, 97 114 ], 98 115 },
+1 -1
apps/docs/next-env.d.ts
··· 1 1 /// <reference types="next" /> 2 2 /// <reference types="next/image-types/global" /> 3 - import "./.next/dev/types/routes.d.ts"; 3 + import "./.next/types/routes.d.ts"; 4 4 5 5 // NOTE: This file should not be edited 6 6 // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.