Files
openclaw-taskboard/app/gitea/page.tsx

22 lines
909 B
TypeScript

import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
export const dynamic = "force-dynamic";
export default function GiteaPage() {
return (
<Card>
<CardHeader>
<CardTitle>Gitea Integration</CardTitle>
<CardDescription>
The Next.js migration keeps the fleet UI focused on operations. Existing Gitea automation can be reattached through dedicated API routes or direct repo links.
</CardDescription>
</CardHeader>
<CardContent className="space-y-3 text-sm text-slate-300">
<p>Primary repo: `TopherMayor/openclaw-taskboard`</p>
<p>Infra wrapper: `TopherMayor/homelabagentroot` under `homelab/ubuntu/taskboard/`</p>
<p>Use the architecture and agents pages to verify deployed fleet state before issuing repo automation from the host agents.</p>
</CardContent>
</Card>
);
}