docs: add rust and ruby

This commit is contained in:
Carl-Gerhard Lindesvärd
2025-12-03 10:26:36 +01:00
parent 0a1564c798
commit 662975dc08
7 changed files with 514 additions and 1 deletions

View File

@@ -11,6 +11,8 @@ import { RemixIcon } from './icons/remix-icon';
import { RestIcon } from './icons/rest-icon';
import { SwiftIcon } from './icons/swift-icon';
import { VueIcon } from './icons/vue-icon';
import { RustIcon } from './icons/rust-icon';
import { RubyIcon } from './icons/ruby-icon';
export type Framework = {
key: string;
@@ -98,6 +100,20 @@ export const frameworks: Framework[] = [
href: 'https://github.com/tbleckert/openpanel-laravel/tree/main',
type: ['backend'],
},
{
key: 'rust',
IconComponent: RustIcon,
name: 'Rust',
href: 'https://openpanel.dev/docs/sdks/rust',
type: ['backend'],
},
{
key: 'ruby',
IconComponent: RubyIcon,
name: 'Ruby',
href: 'https://openpanel.dev/docs/sdks/ruby',
type: ['backend'],
},
{
key: 'ios',
IconComponent: SwiftIcon,