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:
Rosario Moscato
2025-09-25 10:55:08 +02:00
parent f71cccf745
commit 788a00d136
3 changed files with 16 additions and 53 deletions

View File

@@ -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:
[![Agentic Coding Boilerplate Tutorial](https://img.youtube.com/vi/T0zFZsr_d0Q/maxresdefault.jpg)](https://youtu.be/T0zFZsr_d0Q)
<a href="https://youtu.be/T0zFZsr_d0Q" target="_blank" rel="noopener noreferrer">🔗 Watch on YouTube</a>
## ☕ Support This Project
If this boilerplate helped you build something awesome, consider buying me a coffee!
[![Buy me a coffee](https://img.shields.io/badge/Buy_Me_A_Coffee-FFDD00?style=for-the-badge&logo=buy-me-a-coffee&logoColor=black)](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:
<a href="https://youtu.be/T0zFZsr_d0Q" target="_blank" rel="noopener noreferrer">📺 YouTube Tutorial - Building with Agentic Coding Boilerplate</a>
## 🤝 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

View File

@@ -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">

View File

@@ -1,21 +1,22 @@
import { GitHubStars } from "./ui/github-stars";
export function SiteFooter() {
return (
<footer className="border-t py-6 text-center text-sm text-muted-foreground">
<div className="container mx-auto px-4">
<div className="flex flex-col items-center space-y-3">
<GitHubStars repo="leonvanzyl/agentic-coding-starter-kit" />
<a
href="https://gitea.rosmoscato.xyz/ros/agentic-coding-starter-kit"
target="_blank"
rel="noopener noreferrer"
className="text-primary hover:underline"
>
View on Gitea
</a>
<p>
Built using Agentic Coding Boilerplate by{" "}
<a
href="https://youtube.com/@leonvanzyl"
target="_blank"
rel="noopener noreferrer"
className="text-primary hover:underline"
>
Leon van Zyl
</a>
Agentic Coding Boilerplate powered by{" "}
<span className="text-primary">
RoMoS
</span>
</p>
</div>
</div>