Skip to content

Commit b6c89fa

Browse files
committed
fix: streamline project spotlight links and images for consistency across multiple pages
1 parent 6544d84 commit b6c89fa

File tree

7 files changed

+103
-210
lines changed

7 files changed

+103
-210
lines changed

src/app/ai-image-detector/page.tsx

Lines changed: 14 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -36,41 +36,26 @@ export default function AIImageDetectorPage() {
3636
Advanced Hybrid Intelligence for detecting AI-generated images. Uses 3 independent detection engines for maximum accuracy and reliability.
3737
</motion.p>
3838

39-
<div className="flex flex-col items-center mb-12">
4039
<div className="flex flex-col items-center">
41-
<a
42-
href="https://peerlist.io/aashuu/project/enough-aashuu"
43-
target="_blank"
44-
rel="noreferrer"
45-
className="inline-block hover:scale-[1.02] transition-transform shadow-[0_0_30px_rgba(0,0,0,0.5)] rounded-xl"
46-
aria-label="Enough Aashuu Project Spotlight Badge"
47-
>
48-
<img
49-
src="https://dqy38fnwh4fqs.cloudfront.net/website/project-spotlight/project-week-rank-one-dark.svg"
50-
alt="enough aashuu"
51-
style={{ width: "auto", height: "64px" }}
52-
/>
53-
</a>
54-
<a
55-
href="https://peerlist.io/aashuu/project/enough-aashuu"
56-
target="_blank"
57-
rel="noreferrer"
58-
className="inline-block hover:scale-[1.02] transition-transform shadow-[0_0_30px_rgba(0,0,0,0.5)] rounded-xl mt-3"
59-
aria-label="Enough Aashuu on Peerlist"
60-
>
61-
<img
62-
src="https://peerlist.io/api/v1/projects/embed/PRJHNN7JQ6QA9KKLJ1OA9AK8O9AQP8?showUpvote=true&theme=dark"
63-
alt="enough aashuu"
64-
style={{ width: "auto", height: "72px" }}
65-
/>
66-
</a>
67-
</div>
40+
<a
41+
href="https://peerlist.io/aashuu/project/enough-aashuu"
42+
target="_blank"
43+
rel="noreferrer"
44+
className="mb-4"
45+
aria-label="Enough Aashuu on Peerlist"
46+
>
47+
<img
48+
src="https://peerlist.io/api/v1/projects/embed/PRJHNN7JQ6QA9KKLJ1OA9AK8O9AQP8?showUpvote=true&theme=dark"
49+
alt="enough aashuu"
50+
style={{ width: "auto", height: "72px" }}
51+
/>
52+
</a>
6853
</div>
6954
<motion.div
7055
initial={{ opacity: 0, y: 20 }}
7156
animate={{ opacity: 1, y: 0 }}
7257
transition={{ duration: 0.5, delay: 0.3 }}
73-
className="flex flex-wrap justify-center gap-3 text-sm md:text-base mb-12 mt-8"
58+
className="flex flex-wrap justify-center gap-3 text-sm md:text-base mb-12"
7459
>
7560
<span className="px-4 py-2 rounded-full bg-purple-500/20 border border-purple-500/30 text-purple-200">
7661
⚡ Sightengine GenAI

src/app/background-remover/page.tsx

Lines changed: 14 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -37,42 +37,27 @@ export default function BackgroundRemoverPage() {
3737
apply transparent or custom backgrounds, and export single PNG files or ZIP batches.
3838
</motion.p>
3939

40-
<div className="flex flex-col items-center mb-12">
4140
<div className="flex flex-col items-center">
42-
<a
43-
href="https://peerlist.io/aashuu/project/enough-aashuu"
44-
target="_blank"
45-
rel="noreferrer"
46-
className="inline-block hover:scale-[1.02] transition-transform shadow-[0_0_30px_rgba(0,0,0,0.5)] rounded-xl"
47-
aria-label="Enough Aashuu Project Spotlight Badge"
48-
>
49-
<img
50-
src="https://dqy38fnwh4fqs.cloudfront.net/website/project-spotlight/project-week-rank-one-dark.svg"
51-
alt="enough aashuu"
52-
style={{ width: "auto", height: "64px" }}
53-
/>
54-
</a>
55-
<a
56-
href="https://peerlist.io/aashuu/project/enough-aashuu"
57-
target="_blank"
58-
rel="noreferrer"
59-
className="inline-block hover:scale-[1.02] transition-transform shadow-[0_0_30px_rgba(0,0,0,0.5)] rounded-xl mt-3"
60-
aria-label="Enough Aashuu on Peerlist"
61-
>
62-
<img
63-
src="https://peerlist.io/api/v1/projects/embed/PRJHNN7JQ6QA9KKLJ1OA9AK8O9AQP8?showUpvote=true&theme=dark"
64-
alt="enough aashuu"
65-
style={{ width: "auto", height: "72px" }}
66-
/>
67-
</a>
68-
</div>
41+
<a
42+
href="https://peerlist.io/aashuu/project/enough-aashuu"
43+
target="_blank"
44+
rel="noreferrer"
45+
className="mb-4"
46+
aria-label="Enough Aashuu on Peerlist"
47+
>
48+
<img
49+
src="https://peerlist.io/api/v1/projects/embed/PRJHNN7JQ6QA9KKLJ1OA9AK8O9AQP8?showUpvote=true&theme=dark"
50+
alt="enough aashuu"
51+
style={{ width: "auto", height: "72px" }}
52+
/>
53+
</a>
6954
</div>
7055

7156
<motion.div
7257
initial={{ opacity: 0, y: 20 }}
7358
animate={{ opacity: 1, y: 0 }}
7459
transition={{ duration: 0.5, delay: 0.3 }}
75-
className="inline-flex items-center gap-2 px-4 py-2 rounded-full bg-white/5 border border-white/10 text-sm md:text-base text-gray-300 mt-8"
60+
className="inline-flex items-center gap-2 px-4 py-2 rounded-full bg-white/5 border border-white/10 text-sm md:text-base text-gray-300"
7661
>
7762
<span className="relative flex h-2 w-2">
7863
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-emerald-400 opacity-75" />

src/app/image-remover/page.tsx

Lines changed: 15 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -52,40 +52,25 @@ export default function Home() {
5252
A fast, secure, and lossless workflow that runs directly in your browser.
5353
</motion.p>
5454
</div>
55-
<div className="flex flex-col items-center mb-12">
56-
<div className="flex flex-col items-center">
57-
<a
58-
href="https://peerlist.io/aashuu/project/enough-aashuu"
59-
target="_blank"
60-
rel="noreferrer"
61-
className="inline-block hover:scale-[1.02] transition-transform shadow-[0_0_30px_rgba(0,0,0,0.5)] rounded-xl"
62-
aria-label="Enough Aashuu Project Spotlight Badge"
63-
>
64-
<img
65-
src="https://dqy38fnwh4fqs.cloudfront.net/website/project-spotlight/project-week-rank-one-dark.svg"
66-
alt="enough aashuu"
67-
style={{ width: "auto", height: "64px" }}
68-
/>
69-
</a>
70-
<a
71-
href="https://peerlist.io/aashuu/project/enough-aashuu"
72-
target="_blank"
73-
rel="noreferrer"
74-
className="inline-block hover:scale-[1.02] transition-transform shadow-[0_0_30px_rgba(0,0,0,0.5)] rounded-xl mt-3"
75-
aria-label="Enough Aashuu on Peerlist"
76-
>
77-
<img
78-
src="https://peerlist.io/api/v1/projects/embed/PRJHNN7JQ6QA9KKLJ1OA9AK8O9AQP8?showUpvote=true&theme=dark"
79-
alt="enough aashuu"
80-
style={{ width: "auto", height: "72px" }}
81-
/>
82-
</a>
83-
</div>
55+
<div className="flex flex-col items-center">
56+
<a
57+
href="https://peerlist.io/aashuu/project/enough-aashuu"
58+
target="_blank"
59+
rel="noreferrer"
60+
className="mb-4"
61+
aria-label="Enough Aashuu on Peerlist"
62+
>
63+
<img
64+
src="https://peerlist.io/api/v1/projects/embed/PRJHNN7JQ6QA9KKLJ1OA9AK8O9AQP8?showUpvote=true&theme=dark"
65+
alt="enough aashuu"
66+
style={{ width: "auto", height: "72px" }}
67+
/>
68+
</a>
8469
<motion.div
8570
initial={{ opacity: 0, y: 20 }}
8671
animate={{ opacity: 1, y: 0 }}
8772
transition={{ duration: 0.5 }}
88-
className="inline-flex items-center gap-2 px-4 py-2 rounded-full bg-white/5 border border-white/10 text-sm md:text-base text-gray-300 mb-8 mt-8"
73+
className="inline-flex items-center gap-2 px-4 py-2 rounded-full bg-white/5 border border-white/10 text-sm md:text-base text-gray-300 mb-8"
8974
>
9075
<span className="relative flex h-2 w-2">
9176
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-fuchsia-400 opacity-75"></span>

src/app/page.tsx

Lines changed: 13 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -200,34 +200,19 @@ export default function LandingPage() {
200200
transition={{ duration: 0.5, delay: 0.2 }}
201201
className="flex flex-col items-center"
202202
>
203-
<div className="flex flex-col items-center">
204-
<a
205-
href="https://peerlist.io/aashuu/project/enough-aashuu"
206-
target="_blank"
207-
rel="noreferrer"
208-
className="inline-block hover:scale-[1.02] transition-transform shadow-[0_0_30px_rgba(0,0,0,0.5)] rounded-xl"
209-
aria-label="Enough Aashuu Project Spotlight Badge"
210-
>
211-
<img
212-
src="https://dqy38fnwh4fqs.cloudfront.net/website/project-spotlight/project-week-rank-one-dark.svg"
213-
alt="enough aashuu"
214-
style={{ width: "auto", height: "64px" }}
215-
/>
216-
</a>
217-
<a
218-
href="https://peerlist.io/aashuu/project/enough-aashuu"
219-
target="_blank"
220-
rel="noreferrer"
221-
className="inline-block hover:scale-[1.02] transition-transform shadow-[0_0_30px_rgba(0,0,0,0.5)] rounded-xl mt-3"
222-
aria-label="Enough Aashuu on Peerlist"
223-
>
224-
<img
225-
src="https://peerlist.io/api/v1/projects/embed/PRJHNN7JQ6QA9KKLJ1OA9AK8O9AQP8?showUpvote=true&theme=dark"
226-
alt="enough aashuu"
227-
style={{ width: "auto", height: "72px" }}
228-
/>
229-
</a>
230-
</div>
203+
<a
204+
href="https://peerlist.io/aashuu/project/enough-aashuu"
205+
target="_blank"
206+
rel="noreferrer"
207+
className="inline-block hover:scale-[1.02] transition-transform shadow-[0_0_30px_rgba(0,0,0,0.5)] rounded-xl"
208+
aria-label="Enough Aashuu on Peerlist"
209+
>
210+
<img
211+
src="https://peerlist.io/api/v1/projects/embed/PRJHNN7JQ6QA9KKLJ1OA9AK8O9AQP8?showUpvote=true&theme=dark"
212+
alt="enough aashuu"
213+
style={{ width: "auto", height: "72px" }}
214+
/>
215+
</a>
231216
</motion.div>
232217
</div>
233218

src/app/qr-code-generator/page.tsx

Lines changed: 15 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -37,37 +37,22 @@ export default function QrCodeGeneratorPage() {
3737
Customize styles, add logos, then export as PNG, JPEG, or SVG.
3838
</p>
3939

40-
<div className="flex flex-col items-center mb-12">
41-
<div className="flex flex-col items-center">
42-
<a
43-
href="https://peerlist.io/aashuu/project/enough-aashuu"
44-
target="_blank"
45-
rel="noreferrer"
46-
className="inline-block hover:scale-[1.02] transition-transform shadow-[0_0_30px_rgba(0,0,0,0.5)] rounded-xl"
47-
aria-label="Enough Aashuu Project Spotlight Badge"
48-
>
49-
<img
50-
src="https://dqy38fnwh4fqs.cloudfront.net/website/project-spotlight/project-week-rank-one-dark.svg"
51-
alt="enough aashuu"
52-
style={{ width: "auto", height: "64px" }}
53-
/>
54-
</a>
55-
<a
56-
href="https://peerlist.io/aashuu/project/enough-aashuu"
57-
target="_blank"
58-
rel="noreferrer"
59-
className="inline-block hover:scale-[1.02] transition-transform shadow-[0_0_30px_rgba(0,0,0,0.5)] rounded-xl mt-3"
60-
aria-label="Enough Aashuu on Peerlist"
61-
>
62-
<img
63-
src="https://peerlist.io/api/v1/projects/embed/PRJHNN7JQ6QA9KKLJ1OA9AK8O9AQP8?showUpvote=true&theme=dark"
64-
alt="enough aashuu"
65-
style={{ width: "auto", height: "72px" }}
66-
/>
67-
</a>
68-
</div>
40+
<div className="flex flex-col items-center">
41+
<a
42+
href="https://peerlist.io/aashuu/project/enough-aashuu"
43+
target="_blank"
44+
rel="noreferrer"
45+
className="mb-4"
46+
aria-label="Enough Aashuu on Peerlist"
47+
>
48+
<img
49+
src="https://peerlist.io/api/v1/projects/embed/PRJHNN7JQ6QA9KKLJ1OA9AK8O9AQP8?showUpvote=true&theme=dark"
50+
alt="enough aashuu"
51+
style={{ width: "auto", height: "72px" }}
52+
/>
53+
</a>
6954

70-
<div className="inline-flex items-center gap-2 px-4 py-2 rounded-full bg-white/5 border border-white/10 text-sm md:text-base text-gray-300 mb-8 mt-8">
55+
<div className="inline-flex items-center gap-2 px-4 py-2 rounded-full bg-white/5 border border-white/10 text-sm md:text-base text-gray-300 mb-8">
7156
<span className="relative flex h-2 w-2">
7257
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-cyan-400 opacity-75" />
7358
<span className="relative inline-flex rounded-full h-2 w-2 bg-cyan-500" />

src/app/video-remover/page.tsx

Lines changed: 15 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -55,40 +55,25 @@ export default function VideoRemoverPage() {
5555
</motion.p>
5656
</div>
5757

58-
<div className="flex flex-col items-center mb-12">
59-
<div className="flex flex-col items-center">
60-
<a
61-
href="https://peerlist.io/aashuu/project/enough-aashuu"
62-
target="_blank"
63-
rel="noreferrer"
64-
className="inline-block hover:scale-[1.02] transition-transform shadow-[0_0_30px_rgba(0,0,0,0.5)] rounded-xl"
65-
aria-label="Enough Aashuu Project Spotlight Badge"
66-
>
67-
<img
68-
src="https://dqy38fnwh4fqs.cloudfront.net/website/project-spotlight/project-week-rank-one-dark.svg"
69-
alt="enough aashuu"
70-
style={{ width: "auto", height: "64px" }}
71-
/>
72-
</a>
73-
<a
74-
href="https://peerlist.io/aashuu/project/enough-aashuu"
75-
target="_blank"
76-
rel="noreferrer"
77-
className="inline-block hover:scale-[1.02] transition-transform shadow-[0_0_30px_rgba(0,0,0,0.5)] rounded-xl mt-3"
78-
aria-label="Enough Aashuu on Peerlist"
79-
>
80-
<img
81-
src="https://peerlist.io/api/v1/projects/embed/PRJHNN7JQ6QA9KKLJ1OA9AK8O9AQP8?showUpvote=true&theme=dark"
82-
alt="enough aashuu"
83-
style={{ width: "auto", height: "72px" }}
84-
/>
85-
</a>
86-
</div>
58+
<div className="flex flex-col items-center">
59+
<a
60+
href="https://peerlist.io/aashuu/project/enough-aashuu"
61+
target="_blank"
62+
rel="noreferrer"
63+
className="mb-4"
64+
aria-label="Enough Aashuu on Peerlist"
65+
>
66+
<img
67+
src="https://peerlist.io/api/v1/projects/embed/PRJHNN7JQ6QA9KKLJ1OA9AK8O9AQP8?showUpvote=true&theme=dark"
68+
alt="enough aashuu"
69+
style={{ width: "auto", height: "72px" }}
70+
/>
71+
</a>
8772
<motion.div
8873
initial={{ opacity: 0, y: 20 }}
8974
animate={{ opacity: 1, y: 0 }}
9075
transition={{ duration: 0.5 }}
91-
className="inline-flex items-center gap-2 px-4 py-2 rounded-full bg-white/5 border border-white/10 text-sm md:text-base text-gray-300 mb-8 mt-8"
76+
className="inline-flex items-center gap-2 px-4 py-2 rounded-full bg-white/5 border border-white/10 text-sm md:text-base text-gray-300 mb-8"
9277
>
9378
<span className="relative flex h-2 w-2">
9479
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-fuchsia-400 opacity-75"></span>

src/iconlogo/features/landing/HeroSection.tsx

Lines changed: 17 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -37,42 +37,25 @@ export function HeroSection() {
3737
initial={false}
3838
animate={{ opacity: 1, y: 0 }}
3939
transition={{ duration: 0.5, delay: 0.25 }}
40-
className="flex flex-col items-center mb-12"
40+
className="flex flex-col items-center"
4141
>
42-
<div className="flex flex-col items-center">
43-
<a
44-
href="https://peerlist.io/aashuu/project/enough-aashuu"
45-
target="_blank"
46-
rel="noreferrer"
47-
className="inline-block hover:scale-[1.02] transition-transform shadow-[0_0_30px_rgba(0,0,0,0.5)] rounded-xl"
48-
aria-label="Enough Aashuu Project Spotlight Badge"
49-
data-umami-event="click peerlist"
50-
data-umami-event-source="iconlogo"
51-
>
52-
<img
53-
src="https://dqy38fnwh4fqs.cloudfront.net/website/project-spotlight/project-week-rank-one-dark.svg"
54-
alt="enough aashuu"
55-
style={{ width: "auto", height: "64px" }}
56-
/>
57-
</a>
58-
<a
59-
href="https://peerlist.io/aashuu/project/enough-aashuu"
60-
target="_blank"
61-
rel="noreferrer"
62-
className="inline-block hover:scale-[1.02] transition-transform shadow-[0_0_30px_rgba(0,0,0,0.5)] rounded-xl mt-3"
63-
aria-label="Enough Aashuu on Peerlist"
64-
data-umami-event="click peerlist"
65-
data-umami-event-source="iconlogo"
66-
>
67-
<img
68-
src="https://peerlist.io/api/v1/projects/embed/PRJHNN7JQ6QA9KKLJ1OA9AK8O9AQP8?showUpvote=true&theme=dark"
69-
alt="enough aashuu"
70-
style={{ width: "auto", height: "72px" }}
71-
/>
72-
</a>
73-
</div>
42+
<a
43+
href="https://peerlist.io/aashuu/project/enough-aashuu"
44+
target="_blank"
45+
rel="noreferrer"
46+
className="mb-4"
47+
aria-label="Enough Aashuu on Peerlist"
48+
data-umami-event="click peerlist"
49+
data-umami-event-source="iconlogo"
50+
>
51+
<img
52+
src="https://peerlist.io/api/v1/projects/embed/PRJHNN7JQ6QA9KKLJ1OA9AK8O9AQP8?showUpvote=true&theme=dark"
53+
alt="enough aashuu"
54+
style={{ width: "auto", height: "72px" }}
55+
/>
56+
</a>
7457

75-
<div className="inline-flex items-center gap-2 px-4 py-2 rounded-full bg-white/5 border border-white/10 text-sm md:text-base text-gray-300 mb-10 mt-8">
58+
<div className="inline-flex items-center gap-2 px-4 py-2 rounded-full bg-white/5 border border-white/10 text-sm md:text-base text-gray-300 mb-10">
7659
<span className="relative flex h-2 w-2">
7760
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-orange-400 opacity-75" />
7861
<span className="relative inline-flex rounded-full h-2 w-2 bg-orange-500" />

0 commit comments

Comments
 (0)