Skip to content

Commit 4f1f18a

Browse files
committed
fix: remove Video Remover links and references for cleanup
1 parent ee6ccac commit 4f1f18a

3 files changed

Lines changed: 5 additions & 27 deletions

File tree

src/app/page.tsx

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import Link from "next/link";
44
import { motion } from "framer-motion";
5-
import { Image as ImageIcon, Video, Eraser, Brain, QrCode, Shapes, Pin } from "lucide-react";
5+
import { Image as ImageIcon, Eraser, Brain, QrCode, Shapes, Pin } from "lucide-react";
66
import TopNavbar from "@/components/TopNavbar";
77
import Footer from "@/components/Footer";
88
import Loader from "@/components/Loader";
@@ -44,13 +44,6 @@ const tools = [
4444
href: "/ai-image-detector",
4545
color: "from-purple-600 to-pink-500",
4646
},
47-
{
48-
name: "Video Remover",
49-
description: "Clean invisible watermarks from Sora AI-generated videos.",
50-
icon: Video,
51-
href: "/video-remover",
52-
color: "from-fuchsia-600 to-fuchsia-500",
53-
},
5447
{
5548
name: "Background Remover",
5649
description: "Instantly strip backgrounds from any image with high precision.",

src/components/Footer.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,7 @@ export default function Footer() {
1919
Image Remover
2020
</Link>
2121
</li>
22-
<li>
23-
<Link href="/video-remover" className="hover:text-white transition-colors">
24-
Video Remover
25-
</Link>
26-
</li>
22+
2723
<li>
2824
<Link href="/background-remover" className="hover:text-white transition-colors">
2925
Background Remover

src/components/TopNavbar.tsx

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
import Link from "next/link";
44
import Image from "next/image";
55
import { usePathname } from "next/navigation";
6-
import { Image as ImageIcon, Video, Eraser, Github, Twitter, Brain, House, QrCode, Shapes, Pin } from "lucide-react";
6+
import { Image as ImageIcon, Eraser, Github, Twitter, Brain, House, QrCode, Shapes, Pin } from "lucide-react";
77

88
export default function TopNavbar() {
99
const pathname = usePathname();
1010
const isLandingPage = pathname === "/";
1111
const isHomePage = pathname === "/";
1212
const isImagePage = pathname === "/image-remover";
13-
const isVideoPage = pathname === "/video-remover";
13+
1414
const isBackgroundPage = pathname === "/background-remover";
1515
const isAIDetectorPage = pathname === "/ai-image-detector";
1616
const isQrCodePage = pathname === "/qr-code-generator";
@@ -136,18 +136,7 @@ export default function TopNavbar() {
136136
<span className="hidden lg:inline">AI Detector</span>
137137
</Link>
138138

139-
<Link
140-
href="/video-remover"
141-
aria-label="Video Remover"
142-
aria-current={isVideoPage ? "page" : undefined}
143-
className={`relative flex flex-1 min-w-0 items-center justify-center gap-0 md:gap-2 px-2 md:px-5 py-2.5 rounded-xl text-sm transition-all duration-300 whitespace-nowrap ${isVideoPage
144-
? "text-white shadow-lg bg-gradient-to-r from-fuchsia-600 to-fuchsia-500"
145-
: "text-gray-400 hover:text-gray-200 hover:bg-white/5"
146-
}`}
147-
>
148-
<Video className="w-5 h-5" />
149-
<span className="hidden lg:inline">Video Remover</span>
150-
</Link>
139+
151140

152141
<Link
153142
href="/background-remover"

0 commit comments

Comments
 (0)