admin-projects/src/pages/GiteaEmbed.tsx
WangDL 1a55fce7e4
Some checks failed
Deploy Admin Frontend / build-and-deploy (push) Failing after 5s
feat: embed Gitea via iframe in admin panel
2026-05-22 14:35:26 +08:00

12 lines
310 B
TypeScript

export default function GiteaEmbed() {
return (
<div style={{ width: '100%', height: 'calc(100vh - 112px)', overflow: 'hidden' }}>
<iframe
src="https://git.admin.longde.cloud"
style={{ width: '100%', height: '100%', border: 'none' }}
title="Gitea"
/>
</div>
)
}