···1212 <header>
1313 <h1>PrivacyPin</h1>
1414 <div>
1515- <!-- somehow the "+" emoji does not display in the code for me, but it's temporary anyways -->
1515+ <!-- <@azom.dev> somehow the "+" emoji does not display in the code for me, but it's temporary anyways -->
1616+ <!-- <@kishka.cc> we will need to replace these with svgs, as it's the font that messes up the emoji -->
1717+ <button class="icon-btn" @click="updateServer()">
1818+ <img
1919+ class="svg-icon"
2020+ src="/src/assets/send-plane.svg"
2121+ alt="Paperplane Flying Icon"
2222+ />
2323+ </button>
1624 <button class="icon-btn" @click="addFriend()">➕</button>
1725 <button class="icon-btn" @click="openSettings()">⚙️</button>
1826 </div>
+4
app/src/home-page/home.ts
···2323 alert(`Options for friend id ${friend_id}`);
2424 },
25252626+ async updateServer() {
2727+ await api.sendPings("123", "3.14159N 3.14159W");
2828+ },
2929+2630 addFriend() {
2731 alert("Add friend functionality would open here");
2832 },