add August meetup, update footer links

main
Ryan Moon 2024-07-30 04:08:28 -04:00
parent e9f0d7d3d1
commit 3781efde27
8 changed files with 3264 additions and 4181 deletions

View File

@ -21,7 +21,6 @@
<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>Support us</h5></li>
@ -35,8 +34,6 @@
<p>Made with <span class="icon-btc-b"></span> by <NuxtLink to="https://ryanmoon.com" target="_blank">Ryan Moon</NuxtLink></p>
</div>
<ul>
<li><NuxtLink to="/privacy">Privacy Policy</NuxtLink></li>
<li><NuxtLink to="/terms">Terms of Service</NuxtLink></li>
<li><NuxtLink to="https://git.inspin.io/ryan/crbtc.org" target="_blank">Source Code</NuxtLink></li>
</ul>
</div>

View File

@ -7,7 +7,7 @@ location: Frog Alley Brewing Co
address: 108 State St, Schenectady
time: 6:00 PM
meetup: 298555131
priority: 2
priority: 3
---
## Details

View File

@ -7,7 +7,7 @@ location: Druther's Brewing Company
address: 7 Southside Drive, Clifton Park
time: 6:00 PM
meetup: 301820211
priority: 1
priority: 2
---
## Details

View File

@ -0,0 +1,16 @@
---
title: Monthly Meetup
slug: monthly-meetup-8-7-2024
date: 2024-8-7
published: 2024-8-7
location: Druther's Brewing Company
address: 221 Harborside Drive, Schenectady
time: 6:00 PM
priority: 1
---
## Details
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.
This has grown into a great event about meeting new plebs, socializing, and talking all things bitcoin. Hope you all can make it! Feel free to bring a friend or two to orange pill :-). Appetizers and first hour of drinks will be provided.

View File

@ -7,7 +7,7 @@ location: Mocha Lisa's Caffe
address: 22 Clifton Country Road, Clifton Park
time: 6:00 PM
meetup: 298119830
priority: 3
priority: 9999
---
## Details

View File

@ -2,23 +2,19 @@
export default defineNuxtConfig({
devtools: { enabled: false },
modules: [
'@nuxt/content',
'@nuxtjs/device',
['nuxt-mail', {
message: {
to: process.env.EMAIL,
modules: ['@nuxt/content', '@nuxtjs/device', ['nuxt-mail', {
message: {
to: process.env.EMAIL,
},
smtp: {
host: process.env.SMTP_HOST,
port: process.env.SMTP_PORT,
auth: {
user: process.env.SMTP_USER,
pass: process.env.SMTP_PASS,
},
smtp: {
host: process.env.SMTP_HOST,
port: process.env.SMTP_PORT,
auth: {
user: process.env.SMTP_USER,
pass: process.env.SMTP_PASS,
},
},
}],
],
},
}], "@nuxt/image"],
css: [
"~/assets/style/main.scss",

7381
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -12,15 +12,16 @@
"postinstall": "nuxt prepare"
},
"devDependencies": {
"@nuxt/content": "^2.13.0",
"@nuxt/content": "^2.13.2",
"@nuxt/devtools": "latest",
"@nuxt/image": "^1.7.0",
"@nuxtjs/device": "^3.1.1",
"@types/node": "^20.14.8",
"nuxt": "^3.12.2"
"@types/node": "^22.0.0",
"nuxt": "^3.12.4"
},
"dependencies": {
"date-fns": "^3.6.0",
"nuxt-mail": "^5.0.1",
"sass": "^1.77.6"
"sass": "^1.77.8"
}
}