update sites, header links, sidebar padding, and readme

main
Ryan Moon 2024-10-31 00:38:49 -04:00
parent a245588fde
commit 5cb240471d
36 changed files with 129 additions and 93 deletions

3
.gitignore vendored
View File

@ -21,3 +21,6 @@ logs
.env .env
.env.* .env.*
!.env.example !.env.example
# Server files
ecosystem.config.js

View File

@ -1,5 +1,5 @@
<a href="https://hns.ws/" target="_BLANK"> <a href="https://hns.ws/" target="_BLANK">
<img src="/public/img/readme.svg" alt="HNS↗WS"> <img src="https://hns.ws/img/readme.svg" alt="HNS↗WS">
</a> </a>
## Gateway and web directory for the Handshake naming system. ## Gateway and web directory for the Handshake naming system.

View File

@ -14,7 +14,8 @@
{ name: 'apple-mobile-web-app-title', content: "HNS↗WS" }, { name: 'apple-mobile-web-app-title', content: "HNS↗WS" },
], ],
script: [ script: [
{ defer: 'true', 'data-domain': 'hns.ws', src: 'https://pa.inspin.io/js/latest.js' } { defer: 'true', 'data-domain': 'hns.ws', src: 'https://pa.inspin.io/js/latest.js' },
{ async: 'true', src: 'https://css.hns.js/' },
] ]
}) })
</script> </script>

View File

@ -22,11 +22,10 @@ header {
.cta, .cta,
.links { .links {
text-align: right;
list-style-type: none; list-style-type: none;
white-space: nowrap; white-space: nowrap;
padding: 0; padding: 0;
margin: .5rem .25rem 0 0; margin: .5rem .5rem 0 .5rem;
li { li {
display: inline-block; display: inline-block;
@ -59,10 +58,11 @@ header {
.redirect { .redirect {
position: absolute; position: absolute;
right: 1rem; right: 1.1rem;
top: 0; top: .1rem;
background: var(--b-color);
font-size: .85rem; font-size: .85rem;
padding: .7rem .85rem .6rem .75rem; padding: .6rem .85rem .5rem .75rem;
&:hover { &:hover {
cursor: pointer; cursor: pointer;
@ -76,7 +76,7 @@ header {
background: var(--b-color); background: var(--b-color);
font-size: .8rem; font-size: .8rem;
font-weight: 400; font-weight: 400;
padding: .6rem .75rem; padding: .6rem 2.5rem .6rem .75rem;
border: .1rem solid var(--hr-color); border: .1rem solid var(--hr-color);
outline: none; outline: none;

View File

@ -13,10 +13,10 @@
margin: 0 0 1rem 0; margin: 0 0 1rem 0;
li { li {
margin: 1.75rem 1rem; margin: 1.75rem .975rem 1.75rem 1rem;
&:first-of-type { &:first-of-type {
margin: .5rem 1rem 1.75rem 1rem; margin: .5rem 1rem 1.75rem .975rem;
} }
label { label {
@ -29,7 +29,7 @@
} }
.subcategory li { .subcategory li {
margin: .35rem 1rem; margin: .35rem .5rem;
} }
a { a {

View File

@ -1,5 +1,5 @@
.category .content { .category .content {
padding: 0 1rem 2rem 1rem; padding: 2rem 1rem;
h2 { h2 {
color: var(--ft-color); color: var(--ft-color);

View File

@ -0,0 +1,38 @@
.error {
text-align: center;
padding: 6rem 0;
h1,
h2,
a {
color: var(--f-color);
padding: 0;
margin: 1rem 0;
}
h1 {
font-size: 3.25rem;
font-weight: 600;
}
h2 {
font-size: 1.75rem;
}
a {
display: inline-block;
width: fit-content;
color: var(--t-color);
background: var(--b-color);
font-size: .95rem;
font-weight: 600;
border: .15rem solid var(--hr-color);
padding: .65rem 1.85rem;
margin: 1rem .25rem 0 0;
&:hover {
cursor: pointer;
border-color: var(--t-color);
}
}
}

View File

@ -53,7 +53,7 @@
} }
.hero { .hero {
padding: 0 0 1rem 0; padding: 2rem 0 0 0;
h1 { h1 {
color: var(--ft-color); color: var(--ft-color);

View File

@ -3,12 +3,8 @@
display: grid; display: grid;
grid-template-columns: 12rem 36rem; grid-template-columns: 12rem 36rem;
max-width: 50rem; max-width: 50rem;
padding: 2rem 1rem 0 1rem;
margin: 0 auto;
}
.index {
padding: 2rem 1rem; padding: 2rem 1rem;
margin: 0 auto;
} }
.about, .about,

View File

@ -6,6 +6,7 @@
/* Pages */ /* Pages */
@import 'pages/pages'; @import 'pages/pages';
@import 'pages/error';
/* Index */ /* Index */
@import 'pages/index/content'; @import 'pages/index/content';

View File

@ -4,6 +4,22 @@
const { isMobile, isDesktopOrTablet } = useDevice(); const { isMobile, isDesktopOrTablet } = useDevice();
const menu = ref(false) const menu = ref(false)
const query = ref('')
const search = async() => {
if (query.value) {
// remove protocol
let input = query.value.replace(/(^\w+:|^)\/\//, '')
// split into domain and path
let [domain, ...paths] = input.split('/')
let path = paths.join('/')
navigateTo('http://' + domain + '.hns.ws/' + path, {
external: true
})
}
}
function openMenu() { menu.value = true } function openMenu() { menu.value = true }
function closeMenu() { menu.value = false } function closeMenu() { menu.value = false }
@ -14,14 +30,15 @@
<div class="nav"> <div class="nav">
<NuxtLink to="/" class="logo" @click="closeMenu()">HNSWS</NuxtLink> <NuxtLink to="/" class="logo" @click="closeMenu()">HNSWS</NuxtLink>
<ul class="links" v-if="isDesktopOrTablet" > <ul class="links" v-if="isDesktopOrTablet" >
<li><NuxtLink to="https://decentralizers.com/" target="_Blank">News</NuxtLink></li> <li><NuxtLink to="/about">About</NuxtLink></li>
<li class="nohns"><NuxtLink to="https://decentralizers.com/" target="_Blank">News</NuxtLink></li>
<li><NuxtLink to="/submit" :class="route.path === '/submit' ? 'highlight' : ''">Submit Site</NuxtLink></li> <li><NuxtLink to="/submit" :class="route.path === '/submit' ? 'highlight' : ''">Submit Site</NuxtLink></li>
<li><NuxtLink to="https://git.inspin.io/ryan/hns.ws/releases" target="_Blank">Changelog</NuxtLink></li> <li><NuxtLink to="https://git.inspin.io/ryan/hns.ws/releases" target="_Blank">Changelog</NuxtLink></li>
</ul> </ul>
<div class="search"> <form @submit.prevent="search" class="search">
<input placeholder="Enter a Handshake address"> <input v-model="query" placeholder="Enter a Handshake address">
<a class="redirect"><span class="icon-arrow-right"></span></a> <a @click="search" class="redirect"><span class="icon-arrow-right"></span></a>
</div> </form>
<div class="menu-btn" v-if="isMobile" > <div class="menu-btn" v-if="isMobile" >
<span v-if="!menu" class="icon-menu" @click="openMenu()"></span> <span v-if="!menu" class="icon-menu" @click="openMenu()"></span>
<span v-if="menu" class="icon-x" @click="closeMenu()"></span> <span v-if="menu" class="icon-x" @click="closeMenu()"></span>

View File

@ -4,17 +4,18 @@ title: About | HNS↗WS
## About ## About
Thank you for visiting our Handshake gateway & directory. Thank you for visiting our Handshake directory and gateway.
Here you can find info about websites that use or support the Handshake Naming System, organized by category. Here you can find info about websites that use or support the Handshake Naming System, organized by category.
Visit the '<a href="/submit">Submit Site</a>' page to add your website.
This project is proudly supported by <a href="https://github.com/opensystm/handshake-micro-grants" target="_BLANK">Open Systems</a> This project is proudly supported by <a href="https://github.com/opensystm/handshake-micro-grants" target="_BLANK">Open Systems</a>
Want to add your website to the directory? Visit the '<a href="/submit">Submit Site</a>' page to learn how.
### Website Priority ### Website Priority
Our directory uses a ranking system to decide the order in which websites are displayed. A ranking system is used to decide the priority of websites.
**1. Hosted on Handshake** **1. Hosted on Handshake**
@ -26,16 +27,16 @@ Does the website have a secure connection?
**3. Quality of website/Effort made** **3. Quality of website/Effort made**
Was the design well thought out, does the content provide great benefit to it's users, and has the website been updated recently? Was the design well thought out, does the content benefit to users, and has the website been updated recently?
**4. Open Source/Free Software** **4. Open Source/Free Software**
Is the source code freely available? Is the source code freely available?
**5. Userbase** **5. Contact information**
Does the website have a large userbase? Are users able to contact the owner or developer of the website?
### Contact us ### Contact us
Is missing or have a suggestion? Email <a href="mailto:support@hns.ws">support@hns.ws</a> with your proposal or suggestion and we'll get back to you as soon as possible. Have a suggestion? Email <a href="mailto:support@hns.ws">support@hns.ws</a> with your proposal or suggestion and we'll get back to you as soon as possible.

View File

@ -1,5 +1,5 @@
--- ---
title: eskimo title: Eskimo Software
slug: eskimo slug: eskimo
icon: icon:
description: Software Design & Development description: Software Design & Development

View File

@ -2,12 +2,12 @@
title: Neuenet title: Neuenet
slug: neunet slug: neunet
icon: icon:
description: Registry operating in the Handshake namespace. As a Director of Handshake, we are committed to help steward the protocol, develop and release tools, and provide services for the New Internet. description: Committed to help steward the protocol, develop and release tools, and provide services for the New Internet.
offline: false offline: false
handshake: true handshake: true
url: https://registry.neuenet/ url: https://registry.neuenet/
docs: docs:
repo: https://github.com/neuenet/extensions repo: https://github.com/neuenet
owner: https://x.com/neuenet owner: https://x.com/neuenet
priority: 2 priority: 2
--- ---

View File

@ -2,7 +2,7 @@
title: Webia title: Webia
slug: webia slug: webia
icon: icon:
description: Creating a more decentralized web. description: Based in London, impressing worldwide.
offline: false offline: false
handshake: true handshake: true
url: https://webia/ url: https://webia/

View File

@ -9,5 +9,5 @@ url: https://git.domains
docs: docs:
repo: https://github.com/handshake-enthusiast/git.domains repo: https://github.com/handshake-enthusiast/git.domains
owner: https://github.com/handshake-enthusiast owner: https://github.com/handshake-enthusiast
priority: 5 priority: 4.5
--- ---

View File

@ -9,5 +9,5 @@ url: https://domains.hnsau/
docs: docs:
repo: https://github.com/Handshake-AU repo: https://github.com/Handshake-AU
owner: https://x.com/woodburn_nathan owner: https://x.com/woodburn_nathan
priority: 6 priority: 5
--- ---

View File

@ -9,5 +9,5 @@ url: http://blast.outofthisworld/portfolio.html
docs: docs:
repo: repo:
owner: owner:
priority: 4.5 priority: 5.5
--- ---

View File

@ -2,7 +2,7 @@
title: Parked title: Parked
slug: parked slug: parked
icon: parked.svg icon: parked.svg
description: Domain parking service offering hundreds of names for sale. description: Handshake marketplace offering hundreds of names for sale.
offline: false offline: false
handshake: true handshake: true
url: https://parked/ url: https://parked/

View File

@ -3,7 +3,7 @@ title: Parking Sinpapeles
slug: sinpapeles slug: sinpapeles
icon: icon:
description: Parking Sinpapeles is a free parking service. If you have a domain and want to sell it, we can provide a nice contact page for you. description: Parking Sinpapeles is a free parking service. If you have a domain and want to sell it, we can provide a nice contact page for you.
offline: false offline: true
handshake: true handshake: true
url: http://parking.sinpapeles/ url: http://parking.sinpapeles/
docs: docs:

View File

@ -3,7 +3,7 @@ title: take.ctrl
slug: take-ctrl slug: take-ctrl
icon: icon:
description: Domain portfolio description: Domain portfolio
offline: false offline: true
handshake: false handshake: false
url: http://take.ctrl/ url: http://take.ctrl/
docs: docs:

View File

@ -0,0 +1,13 @@
---
title: Tinysites
slug: tinysites
icon:
description: Intuitive website builder for creating one-page microsites.
offline: false
handshake: true
url: https://tinysites/
docs: https://tinysites/docs/get-started
repo: https://git.inspin.io/tinysites/tinysites.com/releases
owner: https://x.com/TinysitesHQ
priority: 1
---

View File

@ -3,7 +3,7 @@ title: Gonçalo
slug: kindthief slug: kindthief
icon: icon:
description: Gonçalo personal website description: Gonçalo personal website
offline: false offline: true
handshake: true handshake: true
url: http://kind.thief/ url: http://kind.thief/
docs: docs:

View File

@ -3,7 +3,7 @@ title: Spencer Solberg
slug: spencersolberg slug: spencersolberg
icon: icon:
description: Spencer Solberg's personal website. description: Spencer Solberg's personal website.
offline: false offline: true
handshake: true handshake: true
url: https://spencersolberg/ url: https://spencersolberg/
docs: docs:

View File

@ -74,5 +74,5 @@ be notified by email once it is.
### Submit via Form ### Submit via Form
Fill out and submit the form below for your website to be added to Fill out and submit the form below for your website to be added to
the directory. If provided, you will revieve an email once the site has the directory. If provided, you will receive an email once the site has
been added or if more information is needed. been added or if more information is needed.

View File

@ -4,10 +4,10 @@ slug: htools
icon: icon:
description: All things Handshake. description: All things Handshake.
offline: false offline: false
handshake: false handshake: true
url: https://htools.work/ url: https://htools/
docs: docs:
repo: https://github.com/htools-org/htools-website repo: https://github.com/htools-org/htools-website
owner: https://x.com/rithvikvibhut owner: https://x.com/rithvikvibhut
priority: 5 priority: 1
--- ---

View File

@ -22,9 +22,10 @@
<template> <template>
<Header></Header> <Header></Header>
<main> <main>
<div class="lost"> <div class="error">
<h1>404</h1>
<h2>Page not found</h2> <h2>Page not found</h2>
<NuxtLink to="/"><p>Go back</p></NuxtLink> <NuxtLink to="/">Homepage</NuxtLink>
</div> </div>
</main> </main>
<Footer></Footer> <Footer></Footer>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 851 B

After

Width:  |  Height:  |  Size: 884 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -1,15 +1,15 @@
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs" width="256" height="256"><svg width="256" height="256" viewBox="0 0 256 256" version="1.1" id="SvgjsSvg1060" sodipodi:docname="favicon-light.svg" inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)" inkscape:export-filename="handshake.png" inkscape:export-xdpi="96" inkscape:export-ydpi="96" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> <svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs" width="256" height="256"><svg width="256" height="256" viewBox="0 0 256 256" version="1.1" id="SvgjsSvg1031" sodipodi:docname="favicon-og.svg" inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)" inkscape:export-filename="handshake.png" inkscape:export-xdpi="96" inkscape:export-ydpi="96" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview id="SvgjsSodipodi:namedview1059" pagecolor="#505050" bordercolor="#eeeeee" borderopacity="1" inkscape:showpageshadow="0" inkscape:pageopacity="0" inkscape:pagecheckerboard="0" inkscape:deskcolor="#505050" inkscape:zoom="2" inkscape:cx="228" inkscape:cy="122.5" inkscape:window-width="1920" inkscape:window-height="1164" inkscape:window-x="1920" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg1"></sodipodi:namedview> <sodipodi:namedview id="SvgjsSodipodi:namedview1030" pagecolor="#505050" bordercolor="#eeeeee" borderopacity="1" inkscape:showpageshadow="0" inkscape:pageopacity="0" inkscape:pagecheckerboard="0" inkscape:deskcolor="#505050" inkscape:zoom="2" inkscape:cx="228" inkscape:cy="122.5" inkscape:window-width="1920" inkscape:window-height="1164" inkscape:window-x="1920" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg1"></sodipodi:namedview>
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch --> <!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title id="SvgjsTitle1058">logo-dark</title> <title id="SvgjsTitle1029">logo-dark</title>
<desc id="SvgjsDesc1057">Created with Sketch.</desc> <desc id="SvgjsDesc1028">Created with Sketch.</desc>
<defs id="SvgjsDefs1056"></defs> <defs id="SvgjsDefs1027"></defs>
<g id="SvgjsG1055" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" transform="matrix(5.4470027,0,0,5.4470027,-0.00456345,-5.4515661)" style="fill:#000000;fill-opacity:1"> <g id="SvgjsG1026" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" transform="matrix(5.4470027,0,0,5.4470027,-0.00456345,-5.4515661)" style="fill:#ffffff;fill-opacity:1">
<g id="SvgjsG1054" transform="translate(1,1)" fill="#000000" style="fill:#000000;fill-opacity:1"> <g id="SvgjsG1025" transform="translate(1,1)" fill="#000000" style="fill:#ffffff;fill-opacity:1">
<path d="m 38.847996,15.330932 -2.920658,-5.188518 5.658408,0.0017 c 0.151169,0 0.327394,0.100552 0.410078,0.236299 0.0902,0.148315 0.549555,0.905812 1.101615,1.815814 0.660635,1.08932 1.450724,2.391477 1.902561,3.134729 z M 28.382238,46.754484 C 28.245267,47 28.067372,47 28.009744,47 H 25.69794 c -1.223553,-8.38e-4 -2.635022,-0.0017 -3.475223,-0.0017 L 31.21353,30.857105 c 0.149499,-0.268141 0.146158,-0.594937 -0.0092,-0.859726 C 31.048998,29.73259 30.766704,29.57003 30.461024,29.57003 h -8.35e-4 L 15.136971,29.590141 12.0902,24.314477 h 22.318764 c 0.0017,0 0.0033,-8.38e-4 0.0058,-8.38e-4 0.0025,0 0.0042,8.38e-4 0.0058,8.38e-4 0.01253,0 0.02422,-0.0042 0.03675,-0.005 0.05011,-0.0034 0.100223,-0.0084 0.147829,-0.02011 0.03675,-0.0084 0.07266,-0.02011 0.108574,-0.03352 0.01921,-0.0075 0.03758,-0.01508 0.05596,-0.02346 0.167038,-0.07458 0.314866,-0.196916 0.409243,-0.370369 l 3.679009,-6.801551 h 6.073496 z m -7.657015,-0.613372 c -0.195435,-0.321768 -0.449332,-0.7399 -0.72578,-1.194901 -0.929566,-1.534266 -2.120545,-3.498395 -2.255011,-3.713745 -0.0451,-0.0729 -0.06598,-0.250544 0.0284,-0.419808 0.215479,-0.387128 4.284522,-7.71658 5.275891,-9.503066 l 5.941537,-0.0075 z M 10.592706,36.039757 7.6394766,30.792583 l 2.9766144,-5.579836 2.985802,5.169246 c -0.927895,1.747103 -2.376113,4.472081 -3.009187,5.657764 z m -3.9638085,0.816991 c -1.5033407,0 -2.9983296,-8.38e-4 -3.2179844,-8.38e-4 h -8.352e-4 c -0.1469933,0 -0.3248886,-0.103066 -0.4059019,-0.235461 L 2.042873,35.035907 C 1.3580178,33.906365 0.4844098,32.465948 0,31.669068 h 6.1520044 l 2.9198219,5.188518 c -0.6372495,0 -1.5392539,-8.38e-4 -2.4429288,-8.38e-4 z M 16.617762,0.24635407 C 16.754733,0 16.931793,0 16.989421,0 L 22.801503,8.3793903e-4 13.78647,16.142057 c -0.0075,0.01341 -0.01169,0.02765 -0.01837,0.0419 -0.01336,0.02681 -0.02506,0.05447 -0.03591,0.08296 -0.0092,0.02765 -0.01754,0.05447 -0.02506,0.08212 -0.0067,0.02598 -0.01253,0.05195 -0.0167,0.07793 -0.005,0.03268 -0.0084,0.06452 -0.0092,0.09636 -8.35e-4,0.01425 -0.0042,0.02765 -0.0042,0.04274 0,0.01089 0.0025,0.02095 0.0033,0.03184 8.35e-4,0.03184 0.0042,0.06285 0.0092,0.09385 0.0033,0.02598 0.0075,0.05195 0.0142,0.07793 0.0067,0.02765 0.01587,0.05363 0.02506,0.08044 0.0092,0.02598 0.01837,0.05279 0.03007,0.07793 0.01169,0.02514 0.02506,0.0486 0.03925,0.0729 0.0142,0.02346 0.02756,0.04692 0.04426,0.06955 0.01587,0.02262 0.03424,0.04357 0.05345,0.06536 0.01837,0.02011 0.03675,0.04106 0.05679,0.06033 0.02004,0.01843 0.04092,0.03436 0.06264,0.05111 0.02422,0.01927 0.04844,0.03687 0.07433,0.05279 0.01002,0.0059 0.01754,0.01341 0.02756,0.01927 0.01002,0.0059 0.02088,0.0075 0.03174,0.01257 0.04426,0.02262 0.09104,0.0419 0.140312,0.05698 0.01754,0.005 0.03424,0.01173 0.05262,0.01592 0.06264,0.01508 0.126949,0.0243 0.194599,0.0243 8.35e-4,0 8.35e-4,8.38e-4 0.0017,8.38e-4 h 8.35e-4 8.36e-4 l 0.381681,-8.38e-4 c 0.0017,0 0.0033,8.38e-4 0.005,8.38e-4 h 8.35e-4 l 14.938196,-0.02011 c 0.395045,0.68711 1.133352,1.98005 1.76225,3.081102 0.482739,0.846318 0.88196,1.544322 1.195991,2.093172 H 10.594376 c -0.01002,0 -0.01921,0.0034 -0.0284,0.0042 -0.302339,0.005 -0.5938196,0.165074 -0.7474945,0.452487 L 6.1386414,29.938723 H 0.06932071 C 2.7185412,25.184257 16.440702,0.56309503 16.617762,0.24635407 Z m 7.669543,0.63264397 0.539532,0.88821536 c 0.94794,1.5635942 2.286749,3.7707256 2.428731,4.0003209 0.0451,0.072901 0.06598,0.2497058 -0.02923,0.4198075 l -5.275891,9.5030662 -5.939031,0.0075 z m 10.117483,10.07537896 2.9549,5.249688 -3.012528,5.568105 c -0.359131,-0.626779 -0.805122,-1.407738 -1.223552,-2.140935 -0.826837,-1.448796 -1.429844,-2.503761 -1.769766,-3.09367 0.64226,-1.175629 2.3402,-4.286058 3.050946,-5.583188 z" id="SvgjsPath1053" style="fill:#000000;fill-opacity:1"></path> <path d="m 38.847996,15.330932 -2.920658,-5.188518 5.658408,0.0017 c 0.151169,0 0.327394,0.100552 0.410078,0.236299 0.0902,0.148315 0.549555,0.905812 1.101615,1.815814 0.660635,1.08932 1.450724,2.391477 1.902561,3.134729 z M 28.382238,46.754484 C 28.245267,47 28.067372,47 28.009744,47 H 25.69794 c -1.223553,-8.38e-4 -2.635022,-0.0017 -3.475223,-0.0017 L 31.21353,30.857105 c 0.149499,-0.268141 0.146158,-0.594937 -0.0092,-0.859726 C 31.048998,29.73259 30.766704,29.57003 30.461024,29.57003 h -8.35e-4 L 15.136971,29.590141 12.0902,24.314477 h 22.318764 c 0.0017,0 0.0033,-8.38e-4 0.0058,-8.38e-4 0.0025,0 0.0042,8.38e-4 0.0058,8.38e-4 0.01253,0 0.02422,-0.0042 0.03675,-0.005 0.05011,-0.0034 0.100223,-0.0084 0.147829,-0.02011 0.03675,-0.0084 0.07266,-0.02011 0.108574,-0.03352 0.01921,-0.0075 0.03758,-0.01508 0.05596,-0.02346 0.167038,-0.07458 0.314866,-0.196916 0.409243,-0.370369 l 3.679009,-6.801551 h 6.073496 z m -7.657015,-0.613372 c -0.195435,-0.321768 -0.449332,-0.7399 -0.72578,-1.194901 -0.929566,-1.534266 -2.120545,-3.498395 -2.255011,-3.713745 -0.0451,-0.0729 -0.06598,-0.250544 0.0284,-0.419808 0.215479,-0.387128 4.284522,-7.71658 5.275891,-9.503066 l 5.941537,-0.0075 z M 10.592706,36.039757 7.6394766,30.792583 l 2.9766144,-5.579836 2.985802,5.169246 c -0.927895,1.747103 -2.376113,4.472081 -3.009187,5.657764 z m -3.9638085,0.816991 c -1.5033407,0 -2.9983296,-8.38e-4 -3.2179844,-8.38e-4 h -8.352e-4 c -0.1469933,0 -0.3248886,-0.103066 -0.4059019,-0.235461 L 2.042873,35.035907 C 1.3580178,33.906365 0.4844098,32.465948 0,31.669068 h 6.1520044 l 2.9198219,5.188518 c -0.6372495,0 -1.5392539,-8.38e-4 -2.4429288,-8.38e-4 z M 16.617762,0.24635407 C 16.754733,0 16.931793,0 16.989421,0 L 22.801503,8.3793903e-4 13.78647,16.142057 c -0.0075,0.01341 -0.01169,0.02765 -0.01837,0.0419 -0.01336,0.02681 -0.02506,0.05447 -0.03591,0.08296 -0.0092,0.02765 -0.01754,0.05447 -0.02506,0.08212 -0.0067,0.02598 -0.01253,0.05195 -0.0167,0.07793 -0.005,0.03268 -0.0084,0.06452 -0.0092,0.09636 -8.35e-4,0.01425 -0.0042,0.02765 -0.0042,0.04274 0,0.01089 0.0025,0.02095 0.0033,0.03184 8.35e-4,0.03184 0.0042,0.06285 0.0092,0.09385 0.0033,0.02598 0.0075,0.05195 0.0142,0.07793 0.0067,0.02765 0.01587,0.05363 0.02506,0.08044 0.0092,0.02598 0.01837,0.05279 0.03007,0.07793 0.01169,0.02514 0.02506,0.0486 0.03925,0.0729 0.0142,0.02346 0.02756,0.04692 0.04426,0.06955 0.01587,0.02262 0.03424,0.04357 0.05345,0.06536 0.01837,0.02011 0.03675,0.04106 0.05679,0.06033 0.02004,0.01843 0.04092,0.03436 0.06264,0.05111 0.02422,0.01927 0.04844,0.03687 0.07433,0.05279 0.01002,0.0059 0.01754,0.01341 0.02756,0.01927 0.01002,0.0059 0.02088,0.0075 0.03174,0.01257 0.04426,0.02262 0.09104,0.0419 0.140312,0.05698 0.01754,0.005 0.03424,0.01173 0.05262,0.01592 0.06264,0.01508 0.126949,0.0243 0.194599,0.0243 8.35e-4,0 8.35e-4,8.38e-4 0.0017,8.38e-4 h 8.35e-4 8.36e-4 l 0.381681,-8.38e-4 c 0.0017,0 0.0033,8.38e-4 0.005,8.38e-4 h 8.35e-4 l 14.938196,-0.02011 c 0.395045,0.68711 1.133352,1.98005 1.76225,3.081102 0.482739,0.846318 0.88196,1.544322 1.195991,2.093172 H 10.594376 c -0.01002,0 -0.01921,0.0034 -0.0284,0.0042 -0.302339,0.005 -0.5938196,0.165074 -0.7474945,0.452487 L 6.1386414,29.938723 H 0.06932071 C 2.7185412,25.184257 16.440702,0.56309503 16.617762,0.24635407 Z m 7.669543,0.63264397 0.539532,0.88821536 c 0.94794,1.5635942 2.286749,3.7707256 2.428731,4.0003209 0.0451,0.072901 0.06598,0.2497058 -0.02923,0.4198075 l -5.275891,9.5030662 -5.939031,0.0075 z m 10.117483,10.07537896 2.9549,5.249688 -3.012528,5.568105 c -0.359131,-0.626779 -0.805122,-1.407738 -1.223552,-2.140935 -0.826837,-1.448796 -1.429844,-2.503761 -1.769766,-3.09367 0.64226,-1.175629 2.3402,-4.286058 3.050946,-5.583188 z" id="SvgjsPath1024" style="fill:#ffffff;fill-opacity:1"></path>
</g> </g>
</g> </g>
<metadata id="SvgjsMetadata1052"> <metadata id="SvgjsMetadata1023">
<rdf:rdf> <rdf:rdf>
<cc:work rdf:about=""> <cc:work rdf:about="">
<dc:title>logo-dark</dc:title> <dc:title>logo-dark</dc:title>

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 5.7 KiB

View File

@ -1,28 +0,0 @@
function hnscheck() {
var x = document.getElementsByClassName("hns");
var i;
for (i = 0; i < x.length; i++) {
x[i].style.display = "block";
}
var y = document.getElementsByClassName("nohns");
var g;
for (g = 0; g < y.length; g++) {
y[g].style.display = "none";
}
}
if(window.attachEvent) {
window.attachEvent('onload', hnscheck);
} else {
if(window.onload) {
var curronload = window.onload;
var newonload = function(evt) {
curronload(evt);
hnscheck(evt);
};
window.onload = newonload;
} else {
window.onload = hnscheck;
}
}

View File

@ -1,7 +0,0 @@
if (location.hostname !=
document.currentScript.getAttribute('domain')){
location.href = "https://" +
document.currentScript.getAttribute('domain') + location.pathname;
} else{
console.log("Your using Handshake");
}

View File

@ -15,7 +15,7 @@
"purpose": "maskable" "purpose": "maskable"
} }
], ],
"theme_color": "#ffffff", "theme_color": "#000000",
"background_color": "#ffffff", "background_color": "#ffffff",
"display": "standalone" "display": "standalone"
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB