A Vue app that displays bluesky skeets in realtime as they are created.
1<template>
2 <footer>
3 <p>
4 Please note, that I don't have any power over what is displayed here. Be aware that some
5 skeets might be harmful or offensive and even illegal. I can't take any responsibility for it.
6 <a href="https://bsky.app/profile/did:plc:ar7c4by46qjdydhdevvrndac" target="_blank"
7 >If you want to report any skeet please contact the bluesky moderation team.</a
8 >
9 </p>
10 <p>(c) 2025 <a href="https://github.com/vinerima/bsky-realtime" target="_blank">vinerima</a></p>
11 </footer>
12</template>
13
14<script setup lang="ts"></script>
15
16<style lang="scss">
17footer {
18 font-size: smaller;
19}
20</style>