peripheral heros; jobs page; product section tweaks

This commit is contained in:
Spencer Flagg
2022-09-19 23:19:06 +02:00
parent 906d4a7041
commit 1152f2dfea
24 changed files with 269 additions and 47 deletions

View File

@@ -1,3 +0,0 @@
{
"text": "WE HAVE NEVER RECEIVED A SECRET GOVERNMENT REQUEST TO HAND OVER USER INFORMATION."
}

33
src/_data/jobs.json Normal file
View File

@@ -0,0 +1,33 @@
[
{
"title": "Social Media and Content Marketing Lead",
"blurb": "The goal is omnipresence: Twitter threads, TikTok skits, YouTube videos, blog posts, podcasts. Any thread, conversation, or debate about Bitcoin/Lightning nodes, data privacy, or sovereign technology - Start9 is there. From shit posting on Twitter to extended essays on the moral justification for Stateless money, Start9 is a voice for freedom and for the sovereign individual.",
"description": [
"Work with CEO on content strategy",
"Identify opportunities to grow and foster the Start9 community",
"Manage social media accounts",
"Meme at will",
"Triage support issues that arise in public forums or DMs",
"Manage content pipelines of Start9 team members and coordinate publication for optimal engagement"
],
"requirements": [
"Passion for Bitcoin and sovereign technology",
"Excellent written communication skills",
"Good sense of humor",
"Organized",
"Familiarity with various platforms and how to optimize visibility and engagement on them",
"In tune with the cultures and trends of Start9s markets"
],
"benefits": [
"Competitive salary",
"Performance-based bonuses",
"A healthy equity package. Youre still early!",
"Work from anywhere in the world, including our Denver office",
"Health and dental insurance",
"Budget for new computer",
"Attend conferences",
"Team retreats!"
],
"how": "Email us at jobs@start9labs.com with your resume and any other information you think we should know about you."
}
]

15
src/_data/site.js Normal file
View File

@@ -0,0 +1,15 @@
module.exports = {
products: {
buyUrl: "https://store.start9.com/",
diyUrl: "https://start9.com/latest/diy",
},
bitcoin: {
whyRunBitcoinUrl: "https://bitcoinmagazine.com/culture/six-reasons-you-should-run-bitcoin-node",
whyRunLightningUrl: "",
},
footer: {
copyright: "© " + new Date().getFullYear() + " by START9 LABS, INC.",
canary:
"WE HAVE NEVER RECEIVED A SECRET GOVERNMENT REQUEST TO HAND OVER USER INFORMATION.",
},
};

View File

@@ -1,11 +1,46 @@
const EleventyFetch = require("@11ty/eleventy-fetch");
//const EleventyFetch = require("@11ty/eleventy-fetch");
module.exports = async function() {
let url = "https://api.github.com/orgs/start9labs/public_members";
// let url = "https://api.github.com/orgs/start9labs/public_members";
/* This returns a promise */
return EleventyFetch(url, {
duration: "1d", // save for 1 day
type: "json" // well parse JSON for you
});
// /* This returns a promise */
// return EleventyFetch(url, {
// duration: "1d", // save for 1 day
// type: "json"
// });
return [
{
name: "Matt Hill",
login: "",
position: "co-founder & CEO",
avatar_url: "https://avatars.githubusercontent.com/u/9935159?v=4",
url: "https://github.com/MattDHill",
blurb: "Passionate leader by example with 12 years experience building products, teams, and companies. Matt is the founder and developer of WorkBlast, the co-creator of Borker, and the co-architect and former CTO of SALT Lending."
},
{
name: "Keagan McClelland",
login: "ProofOfKeags",
position: "co-founder & director of technology",
avatar_url: "https://avatars.githubusercontent.com/u/4033651?v=4",
url: "https://github.com/ProofOfKeags",
blurb: "Keagan has a decade of software development experience with expertise in cryptography, software security, formal methods, open-blockchain technology, and functional programming. His experience runs the gambit from large projects at the Department of Defense and Amazon, as well as small startups like Ionic Security and SALT Lending."
},
{
name: "Aiden McClelland",
login: "dr-bonez",
position: "co-founder & lead developer",
avatar_url: "https://avatars.githubusercontent.com/u/3732071?v=4",
url: "https://github.com/dr-bonez",
blurb: "Aiden is an expert developer with over a decade of experience building software applications from scratch. Aiden specializes in security, blockchain-based technologies, and performance tuning in low resource environments. Aiden possesses a highly-advanced understanding of computer science and is skilled across an incredible spectrum of languages, frameworks, and technologies."
},
{
name: "Lucy Cifferello",
login: "elvece",
position: "developer",
avatar_url: "https://avatars.githubusercontent.com/u/12953208?v=4",
url: "https://github.com/elvece",
blurb: "Having studied cognition and behavior, the processes of art, concepts of design, and the language of code, Lucy crafts with fused intent. Her background in psychology lends to a multidisciplinary approach to solving problems in both the logical and experiential realms, and this adeptness is expressed in her abilitiy to maneuver across the development stack."
},
]
};