feat: 添加 opencode 模块和相关服务

This commit is contained in:
2026-03-13 18:39:58 +08:00
parent 96390df254
commit cd70b50180
6 changed files with 232 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import React from 'react'
export const OpenCodePage: React.FC = () => {
return (
<div className="max-w-4xl mx-auto w-full px-14 py-12 pb-40">
<h1 className="text-2xl font-bold text-gray-800 dark:text-gray-200 mb-8 flex items-center gap-2">
OpenCode
</h1>
</div>
)
}