add watermarks, link verified to proof, update about

This commit is contained in:
pluja 2024-10-11 17:42:47 +02:00
parent 7484f04e16
commit 2e0d5d7824
No known key found for this signature in database
12 changed files with 9 additions and 9 deletions

View File

@ -2,10 +2,6 @@
This is the official repository of the KYCNOT.ME project.
## Comments
Comments are based on [Cactus](https://cactus.chat).
## ToS Checker
The ToS checker is an automated ai-driven tool that checks the ToS of a website.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 114 KiB

After

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 122 KiB

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 309 KiB

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 71 KiB

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 59 KiB

View File

@ -78,9 +78,9 @@
}
</style>
<div id="main" class="flex flex-col justify-center items-center">
<div class="p-4 w-full max-w-4xl">
<div class="space-x-1 text-xs font-bold text-center text-lime-500 lowercase md:text-sm font-samo">
<div id="main" class="flex flex-col items-center justify-center">
<div class="w-full max-w-4xl p-4">
<div class="space-x-1 text-xs font-bold text-center lowercase text-lime-500 md:text-sm font-samo">
<a href="#why">Why</a>
·
<a href="#what">What</a>
@ -548,11 +548,12 @@
</span>
<span>* All changes are recorded on the <a href="/changelog">changelog</a></span>
<span>* See any service's score breakdown: <a href="/api/v1/service/bisq/summary">bisq example</a></span>
<span>* Endpoint to download the full database</span>
<span>* Open API to get all the listings data</span>
<span>
* Open scoring algorithm. All services go under the same algorithm,
meaning that the score is not subjective.
</span>
<span>* Test proofs: I am slowly adding proofs for each verified service, providing a PGP signed proof that I have personally tested the service. To see a proof, click the "verified" badge next to a serivce's name, inside the service page.</span>
</div>
</div>

View File

@ -55,7 +55,7 @@
<span class="flex items-center justify-center capitalize">
<span class="text-xl font-bold md:text-2xl">{{.Service.Name}}</span>
{{if .Service.Verified}}
<a aria-label="Verified" data-balloon-pos="up" href="/about#verification">
<a aria-label="Verified" data-balloon-pos="up" href="/static/proofs/{{lower .Service.Name}}/proof.txt.asc">
<svg xmlns="http://www.w3.org/2000/svg" class="w-6 h-6 ml-1 {{if .Service.Verified}}text-blue-400/80{{else}} text-white/20 {{end}} discount-check-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
<path

View File

@ -140,6 +140,9 @@ func (s *Server) RegisterViews() {
"safe": func(s string) template.HTML {
return template.HTML(s)
},
"lower": func(s string) string {
return strings.ToLower(s)
},
"toId": func(s string) string {
reg, err := regexp.Compile("[^a-zA-Z0-9]+")
if err != nil {