ui: remove video tutorial content and rebrand footer
- Removed video tutorial section from homepage (src/app/page.tsx) - Removed video tutorial sections from README.md - Updated footer text to "Agentic Coding Boilerplate powered by RoMoS" - Replaced GitHub links with Gitea repository links in footer and README - Removed unused Video icon import from homepage - Removed "Support This Project" section from README.md 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -5,7 +5,7 @@ import { Button } from "@/components/ui/button";
|
||||
import { SetupChecklist } from "@/components/setup-checklist";
|
||||
import { useDiagnostics } from "@/hooks/use-diagnostics";
|
||||
import { StarterPromptModal } from "@/components/starter-prompt-modal";
|
||||
import { Video, Shield, Database, Palette, Bot } from "lucide-react";
|
||||
import { Shield, Database, Palette, Bot } from "lucide-react";
|
||||
|
||||
export default function Home() {
|
||||
const { isAuthReady, isAiReady, loading } = useDiagnostics();
|
||||
@@ -30,28 +30,7 @@ export default function Home() {
|
||||
</p>
|
||||
</div>
|
||||
|
||||
{/* YouTube Tutorial Video */}
|
||||
<div className="space-y-4">
|
||||
<h3 className="text-2xl font-semibold flex items-center justify-center gap-2">
|
||||
<Video className="h-6 w-6" />
|
||||
Video Tutorial
|
||||
</h3>
|
||||
<p className="text-muted-foreground">
|
||||
Watch the complete walkthrough of this agentic coding boilerplate:
|
||||
</p>
|
||||
<div className="relative w-full max-w-3xl mx-auto">
|
||||
<div className="relative pb-[56.25%] h-0 overflow-hidden rounded-lg border">
|
||||
<iframe
|
||||
className="absolute top-0 left-0 w-full h-full"
|
||||
src="https://www.youtube.com/embed/T0zFZsr_d0Q"
|
||||
title="Agentic Coding Boilerplate Tutorial"
|
||||
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
|
||||
allowFullScreen
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mt-12">
|
||||
<div className="p-6 border rounded-lg">
|
||||
<h3 className="font-semibold mb-2 flex items-center gap-2">
|
||||
|
||||
Reference in New Issue
Block a user