update links

main
Ryan Moon 2023-10-18 21:03:00 -04:00
parent 7bd3ec0b74
commit 82f403a1a5
7 changed files with 25 additions and 13 deletions

View File

@ -1,6 +1,6 @@
.lost {
position: relative;
top: calc(50vh - 320px);
top: calc(50vh - 280px);
margin: auto;
text-align: center;

View File

@ -3,7 +3,7 @@
grid-template-columns: 1fr 2fr;
max-width: 60rem;
background: $t-color;
margin: 2rem auto 6rem auto;
margin: 2rem auto 4rem auto;
padding: 2rem 2rem 2.25rem 2rem;
h4 {

View File

@ -1,13 +1,25 @@
<script setup>
const { path } = useRoute()
let show = true
if (path === '/login' || path === '/register') {
show = false
}
</script>
<template>
<div class="footer">
<div class="footer" v-if="show">
<div class="top">
<ul class="info">
<li><h5>Resources</h5></li>
<li><NuxtLink to="/about">About Us</NuxtLink></li>
<li><NuxtLink to="/#guides">Bitcoin Guides</NuxtLink></li>
<li><NuxtLink to="/guide/what-is-bitcoin">What is Bitcoin</NuxtLink></li>
<li><NuxtLink to="/guide/how-to-get-started">Getting Started</NuxtLink></li>
</ul>
<ul class="community">
<li><h5>Community</h5></li>
<li><NuxtLink to="/#events">Events</NuxtLink></li>
<li><NuxtLink to="/workshop">Workshops</NuxtLink></li>
<li><NuxtLink to="/forms">Suggestions</NuxtLink></li>
</ul>
@ -15,10 +27,11 @@
<li><h5>Follow Us</h5></li>
<li><NuxtLink to="https://twitter.com/UpstateNYBTC" target="_BLANK">Twitter</NuxtLink></li>
<li><NuxtLink to="https://www.meetup.com/capitalregionbitcoinnetwork" target="_BLANK">Meetup</NuxtLink></li>
<li><NuxtLink to="https://discord.gg/jnrh6rPQ4b" target="_BLANK">Discord</NuxtLink></li>
</ul>
<ul class="donate">
<li><h5>Donate</h5></li>
<li><h6>Bitcoin: bc1qtw78x248kzq547w0zkm790u0yhgjkerxahpm9e</h6></li>
<li><h6>BTC: <NuxtLink href="bitcoin:bc1qtw78x248kzq547w0zkm790u0yhgjkerxahpm9e" >bc1qtw78x248kzq547w0zkm790u0yhgjkerxahpm9e</NuxtLink></h6></li>
</ul>
</div>
<hr/>
@ -29,7 +42,7 @@
<ul>
<li><NuxtLink to="/privacy">Privacy Policy</NuxtLink></li>
<li><NuxtLink to="/terms">Terms of Service</NuxtLink></li>
<li><NuxtLink to="https://git.inspin.co/ryan/crbtc.org" target="_blank">Source Code</NuxtLink></li>
<li><NuxtLink to="https://git.inspin.io/ryan/crbtc.org" target="_blank">Source Code</NuxtLink></li>
</ul>
</div>
</div>

View File

@ -4,7 +4,7 @@
<NuxtLink to="https://bitcoinmagazine.com/" target="_BLANK">
<img src="/img/sponsors/b.tc.svg" alt="Bitcoin Magazine" />
</NuxtLink>
<NuxtLink to="https://inspin.co/" target="_BLANK">
<NuxtLink to="https://inspin.io/" target="_BLANK">
<img src="/img/sponsors/inspin.svg" alt="Inspin Digital" />
</NuxtLink>
<!--

View File

@ -3,18 +3,18 @@ title: Monthly Meetup W/ Jason Maier
slug: monthly-meetup-10-18-2023
date: 2023-10-18
published: 2023-08-28
location: Druther's Brewing Company
address: 7 Southside Drive, Clifton Park
location: Mocha Lisa's Caffe
address: 22 Clifton Country Road, Clifton Park
time: 6:00 PM
meetup: 295742661
priority: 3
priority: 1
---
## Details
For our October meetup we are excited to welcome Jason Maier! Jason is the author of “A Progressives Case for Bitcoin”, a wonderful speaker, wealth of knowledge, and overall amazing person. Jason will speak about his book, we will do a Q&A, and then our usual social meetup!
Looking forward to seeing everyone at the September meetup! Please keep an eye out for announcements as the venue for this event may change due to attendance, but will still be held in Clifton Park.
Looking forward to seeing everyone at the meetup! We will be holding this event at Mocha Lisas in Clifton Park. They have graciously agreed to have us after hours so we will have the venue entirely to our group!
Our monthly Bitcoin meetup! This is a Bitcoin only event. Whether you are interested in learning about Bitcoin, or are a seasoned pleb, come and hang out! We will have learning materials for those who are just starting out.

View File

@ -7,7 +7,7 @@ location: Ballston Lake, NY
address: Ballston Lake, NY
time: 6:00 PM
meetup: 295741625
priority: 1
priority: 3
---
## Details

View File

@ -19,5 +19,4 @@
<NuxtLink to="/">Go back</NuxtLink>
</div>
</main>
<Footer></Footer>
</template>