Skip to content

Commit c2989b2

Browse files
committed
fix: update tool names and descriptions in page and TopNavbar components
1 parent 651dbab commit c2989b2

2 files changed

Lines changed: 48 additions & 48 deletions

File tree

src/app/page.tsx

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@ const tools = [
1717
color: "from-blue-600 to-blue-500",
1818
},
1919
{
20-
name: "Video Remover",
21-
description: "Clean invisible watermarks from Sora AI-generated videos.",
22-
icon: Video,
23-
href: "/video-remover",
24-
color: "from-fuchsia-600 to-fuchsia-500",
20+
name: "IconLogo",
21+
description: "Create icon-based logos with a full studio workflow and quick exports.",
22+
icon: Shapes,
23+
href: "/iconlogo",
24+
color: "from-orange-600 to-amber-500",
2525
},
2626
{
27-
name: "Background Remover",
28-
description: "Instantly strip backgrounds from any image with high precision.",
29-
icon: Eraser,
30-
href: "/background-remover",
31-
color: "from-emerald-600 to-teal-500",
27+
name: "QR Generator",
28+
description: "Create fully styled QR codes for links, Wi-Fi, contacts, events, SMS, and more.",
29+
icon: QrCode,
30+
href: "/qr-code-generator",
31+
color: "from-cyan-600 to-blue-500",
3232
},
3333
{
3434
name: "AI Image Detector",
@@ -38,18 +38,18 @@ const tools = [
3838
color: "from-purple-600 to-pink-500",
3939
},
4040
{
41-
name: "QR Generator",
42-
description: "Create fully styled QR codes for links, Wi-Fi, contacts, events, SMS, and more.",
43-
icon: QrCode,
44-
href: "/qr-code-generator",
45-
color: "from-cyan-600 to-blue-500",
41+
name: "Video Remover",
42+
description: "Clean invisible watermarks from Sora AI-generated videos.",
43+
icon: Video,
44+
href: "/video-remover",
45+
color: "from-fuchsia-600 to-fuchsia-500",
4646
},
4747
{
48-
name: "IconLogo",
49-
description: "Create icon-based logos with a full studio workflow and quick exports.",
50-
icon: Shapes,
51-
href: "/iconlogo",
52-
color: "from-orange-600 to-amber-500",
48+
name: "Background Remover",
49+
description: "Instantly strip backgrounds from any image with high precision.",
50+
icon: Eraser,
51+
href: "/background-remover",
52+
color: "from-emerald-600 to-teal-500",
5353
},
5454
];
5555

src/components/TopNavbar.tsx

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -84,29 +84,29 @@ export default function TopNavbar() {
8484
</Link>
8585

8686
<Link
87-
href="/video-remover"
88-
aria-label="Video Remover"
89-
aria-current={isVideoPage ? "page" : undefined}
90-
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
91-
? "text-white shadow-lg bg-gradient-to-r from-fuchsia-600 to-fuchsia-500"
87+
href="/iconlogo"
88+
aria-label="IconLogo"
89+
aria-current={isIconLogoPage ? "page" : undefined}
90+
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 ${isIconLogoPage
91+
? "text-white shadow-lg bg-gradient-to-r from-orange-600 to-amber-500"
9292
: "text-gray-400 hover:text-gray-200 hover:bg-white/5"
9393
}`}
9494
>
95-
<Video className="w-5 h-5" />
96-
<span className="hidden lg:inline">Video Remover</span>
95+
<Shapes className="w-5 h-5" />
96+
<span className="hidden lg:inline">IconLogo</span>
9797
</Link>
9898

9999
<Link
100-
href="/background-remover"
101-
aria-label="Background Remover"
102-
aria-current={isBackgroundPage ? "page" : undefined}
103-
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 ${isBackgroundPage
104-
? "text-white shadow-lg bg-gradient-to-r from-emerald-600 to-teal-500"
100+
href="/qr-code-generator"
101+
aria-label="QR Code Generator"
102+
aria-current={isQrCodePage ? "page" : undefined}
103+
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 ${isQrCodePage
104+
? "text-white shadow-lg bg-gradient-to-r from-cyan-600 to-blue-500"
105105
: "text-gray-400 hover:text-gray-200 hover:bg-white/5"
106106
}`}
107107
>
108-
<Eraser className="w-5 h-5" />
109-
<span className="hidden lg:inline">BG Remover</span>
108+
<QrCode className="w-5 h-5" />
109+
<span className="hidden lg:inline">QR Generator</span>
110110
</Link>
111111

112112
<Link
@@ -123,29 +123,29 @@ export default function TopNavbar() {
123123
</Link>
124124

125125
<Link
126-
href="/qr-code-generator"
127-
aria-label="QR Code Generator"
128-
aria-current={isQrCodePage ? "page" : undefined}
129-
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 ${isQrCodePage
130-
? "text-white shadow-lg bg-gradient-to-r from-cyan-600 to-blue-500"
126+
href="/video-remover"
127+
aria-label="Video Remover"
128+
aria-current={isVideoPage ? "page" : undefined}
129+
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
130+
? "text-white shadow-lg bg-gradient-to-r from-fuchsia-600 to-fuchsia-500"
131131
: "text-gray-400 hover:text-gray-200 hover:bg-white/5"
132132
}`}
133133
>
134-
<QrCode className="w-5 h-5" />
135-
<span className="hidden lg:inline">QR Generator</span>
134+
<Video className="w-5 h-5" />
135+
<span className="hidden lg:inline">Video Remover</span>
136136
</Link>
137137

138138
<Link
139-
href="/iconlogo"
140-
aria-label="IconLogo"
141-
aria-current={isIconLogoPage ? "page" : undefined}
142-
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 ${isIconLogoPage
143-
? "text-white shadow-lg bg-gradient-to-r from-orange-600 to-amber-500"
139+
href="/background-remover"
140+
aria-label="Background Remover"
141+
aria-current={isBackgroundPage ? "page" : undefined}
142+
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 ${isBackgroundPage
143+
? "text-white shadow-lg bg-gradient-to-r from-emerald-600 to-teal-500"
144144
: "text-gray-400 hover:text-gray-200 hover:bg-white/5"
145145
}`}
146146
>
147-
<Shapes className="w-5 h-5" />
148-
<span className="hidden lg:inline">IconLogo</span>
147+
<Eraser className="w-5 h-5" />
148+
<span className="hidden lg:inline">BG Remover</span>
149149
</Link>
150150
</div>
151151
)}

0 commit comments

Comments
 (0)