Skip to content

Commit eeabd55

Browse files
committed
Added watermark to the site
1 parent 533f720 commit eeabd55

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

public/willdapod_logo.png

539 KB
Loading

src/App.tsx

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,24 @@ function App() {
7777
</div>
7878
</div>
7979
</div>
80+
81+
{/* Watermark */}
82+
<a
83+
href="https://willdapod.com"
84+
target="_blank"
85+
rel="noopener noreferrer"
86+
className="absolute bottom-4 right-4 z-50 flex items-center gap-3 px-4 py-2 bg-black/30 backdrop-blur-sm rounded-full border border-white/10 hover:bg-black/50 transition-all group no-underline"
87+
title="Created by Willdapod"
88+
>
89+
<img
90+
src={`${import.meta.env.BASE_URL}willdapod_logo.png`}
91+
alt="Willdapod"
92+
className="h-8 w-auto drop-shadow-sm opacity-90 group-hover:opacity-100 transition-opacity"
93+
/>
94+
<span className="text-white/80 font-bold font-sans tracking-wide text-sm group-hover:text-white transition-colors">
95+
willdapod
96+
</span>
97+
</a>
8098
</div>
8199
);
82100
}

0 commit comments

Comments
 (0)