From 788a00d1363f45ab283f86e3c8bcec4d81778bd9 Mon Sep 17 00:00:00 2001
From: Rosario Moscato
Date: Thu, 25 Sep 2025 10:55:08 +0200
Subject: [PATCH] ui: remove video tutorial content and rebrand footer
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
- 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
---
README.md | 21 ++-------------------
src/app/page.tsx | 25 ++-----------------------
src/components/site-footer.tsx | 23 ++++++++++++-----------
3 files changed, 16 insertions(+), 53 deletions(-)
diff --git a/README.md b/README.md
index c30dc18..ccbc012 100644
--- a/README.md
+++ b/README.md
@@ -11,19 +11,7 @@ A complete agentic coding boilerplate with authentication, PostgreSQL database,
- **⚡ Modern Stack**: Next.js 15, React 19, TypeScript
- **📱 Responsive**: Mobile-first design approach
-## 🎥 Video Tutorial
-Watch the complete walkthrough of this agentic coding template:
-
-[](https://youtu.be/T0zFZsr_d0Q)
-
-🔗 Watch on YouTube
-
-## ☕ Support This Project
-
-If this boilerplate helped you build something awesome, consider buying me a coffee!
-
-[](https://www.buymeacoffee.com/leonvanzyl)
## 📋 Prerequisites
@@ -40,7 +28,7 @@ Before you begin, ensure you have the following installed on your machine:
**Option A: Clone with Git**
```bash
-git clone https://github.com/leonvanzyl/agentic-coding-starter-kit.git
+git clone https://gitea.rosmoscato.xyz/ros/agentic-coding-starter-kit.git
cd agentic-coding-starter-kit
```
@@ -203,11 +191,6 @@ Ensure these are set in your production environment:
- `OPENAI_MODEL` - OpenAI model name (optional, defaults to gpt-5-mini)
- `NEXT_PUBLIC_APP_URL` - Your production domain
-## 🎥 Tutorial Video
-
-Watch my comprehensive tutorial on how to use this agentic coding boilerplate to build AI-powered applications:
-
-📺 YouTube Tutorial - Building with Agentic Coding Boilerplate
## 🤝 Contributing
@@ -225,7 +208,7 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
If you encounter any issues:
-1. Check the [Issues](https://github.com/leonvanzyl/agentic-coding-starter-kit/issues) section
+1. Check the [Issues](https://gitea.rosmoscato.xyz/ros/agentic-coding-starter-kit/issues) section
2. Review the documentation above
3. Create a new issue with detailed information about your problem
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 1b5b6ef..f5fb7f0 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -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() {
- {/* YouTube Tutorial Video */}
-
-
-
- Video Tutorial
-
-
- Watch the complete walkthrough of this agentic coding boilerplate:
-
-
-
-
+
diff --git a/src/components/site-footer.tsx b/src/components/site-footer.tsx
index d4375f6..b2e7f47 100644
--- a/src/components/site-footer.tsx
+++ b/src/components/site-footer.tsx
@@ -1,21 +1,22 @@
-import { GitHubStars } from "./ui/github-stars";
export function SiteFooter() {
return (