some stuff

This commit is contained in:
biglyderv 2025-01-02 19:58:21 -05:00
parent 63cfe39326
commit f9d0f885b5
2 changed files with 10 additions and 2 deletions

View file

@ -33,18 +33,21 @@
</div>
<div class='content'>
<h1 class='content-header'>Projects</h1>
<h1 class='content-header'>Links</h1>
<div>
<a class="form-button" href="https://git.dervland.net/BiglyDerv">Code</a>
<a class="form-button" href="https://dervland.net/files/">Files</a>
<a class="form-button" href="https://bb.dervland.net/">Forums</a>
<a class="form-button" onclick='copy()' href="#">Discord</a>
</div>
<h1 class='content-header'>Contributions</h1>
<div>
<a class="form-button" href="https://penguinmod.com/">PenguinMod</a>
<a class="form-button" href="https://penguinmod.com/profile/?user=biglyderv">PenguinMod</a>
<a class="form-button" href="https://hatch.lol/">Hatch</a>
<a class="form-button" href="https://discord.gg/heh8Js48C9">Elemental on Discord</a>
</div>
</div>
<script src='/index.js'></script>
</body>
</html>

5
index.js Normal file
View file

@ -0,0 +1,5 @@
function copy() {
let addr = 'biglyderv';
navigator.clipboard.writeText(addr);
alert(addr);
}