add API tab to display backend documentation

This commit is contained in:
ArnoChen
2025-02-17 01:04:14 +08:00
parent ca85b82a47
commit be4cdedfa1
3 changed files with 53 additions and 38 deletions

View File

@@ -0,0 +1,5 @@
import { backendBaseUrl } from '@/lib/constants'
export default function ApiSite() {
return <iframe src={backendBaseUrl + '/docs'} className="size-full" />
}