From 4ef8adc07b509bceda33501b8ff90d62c4bce552 Mon Sep 17 00:00:00 2001 From: Ross Larson Date: Sun, 6 Oct 2024 11:32:01 -0500 Subject: [PATCH] Adds zo0o0ot (#1263) * Adds zo0o0ot * Prettified Code! * Updates memberobject with zo0o0ot username * Fixes derekjj MemberObject which was set to _EXAMPLE --------- Co-authored-by: zo0o0ot --- src/content/members/members/derekjj.ts | 2 +- src/content/members/members/zo0o0ot.ts | 55 ++++++++++++++++++++++++++ 2 files changed, 56 insertions(+), 1 deletion(-) create mode 100644 src/content/members/members/zo0o0ot.ts diff --git a/src/content/members/members/derekjj.ts b/src/content/members/members/derekjj.ts index 49313133..c538fcb7 100644 --- a/src/content/members/members/derekjj.ts +++ b/src/content/members/members/derekjj.ts @@ -2,7 +2,7 @@ import type { MemberObject } from '../types'; // import { profileMasks } from '../flare'; // Change _EXAMPLE to `yourGitHubUserName` and add your info below -export const _EXAMPLE: MemberObject = { +export const derekjj: MemberObject = { // GitHub username (required) github: 'derekjj', // diff --git a/src/content/members/members/zo0o0ot.ts b/src/content/members/members/zo0o0ot.ts new file mode 100644 index 00000000..f4910b20 --- /dev/null +++ b/src/content/members/members/zo0o0ot.ts @@ -0,0 +1,55 @@ +import type { MemberObject } from '../types'; +import { profileMasks } from '../flare'; + +// Change _EXAMPLE to `yourGitHubUserName` and add your info below +export const zo0o0ot: MemberObject = { + // GitHub username (required) + github: 'zo0o0ot', + // + // Everything below here is optional. By default, we pull most profile data from your GitHub profile. You can override that data here, as well as provide some additional account links below. + // + // Name - If not defined here, it will default to your display name on GitHub. If that's not defined, then your GitHub username. + // name: 'Your Name', + // + // Main URL - If not defined here, it will default to the website displayed on your GitHub profile. If that's not defined, then a link to your GitHub profile will be displayed. + // mainUrl: 'https://virtualcoffee.io', + // + // Bio - Accepts [markdown](https://spec.commonmark.org/0.30/). Please keep your bio to a reasonable length. Refer to our [members page](https://virtualcoffee.io/members/) for examples. + // bio: `This is _my_ **bio** and [here is a link](https://virtualcoffee.io)`, + // + // flare - If you want to add a flare to your profile, you can do so here. + // Uncomment the `import { profileMasks } from '../flare';` line at the top of this file to use the profileMasks. + // So far all we have is a profile mask, which makes your profile picture a different shape from the default square. + // Leave this out if you prefer the default square. + // You can choose from the following profile masks: + // profileMasks.octogon, profileMasks.hexagon, profileMasks.triangle, + // profileMasks.circle, profileMasks.rabbet, profileMasks.star + // you can also use a custom string. the profileMask values are [css clipPath values](https://developer.mozilla.org/en-US/docs/Web/CSS/clip-path) + flare: { + // example: + profileMask: profileMasks.hexagon, + }, + // + // Links - You can add one of each type, except website - you can add as many `website` accounts as you wish. + accounts: [ + // { type: 'linkedin', username: 'yourlinkedinUserName' }, + // { type: 'dev', username: 'yourUserName' }, + // { type: 'codenewbie', username: 'yourUserName' }, + { type: 'twitter', username: 'rosslarsonWI' }, + { type: 'twitch', username: 'tanookizoot' }, + // { type: 'youtube', channelId: 'yourChannelId' }, OR { type: 'youtube', customUrl: 'https://www.youtube.com/c/yourCustomUrl' }, + // { type: 'polywork', username: 'yourUserName' }, + // { type: 'medium', username: 'yourUserName' }, + // { type: 'hashnode', username: 'yourUserName' }, + // { type: 'mastodon', url: 'https://mastodon.server/@username' }, + // { type: 'website', url: 'https://virtualcoffee.io', title: 'Title of link' }, + ], + badges: ['Hacktoberfest2022', 'Hacktoberfest2023', 'Hacktoberfest2024'], + // Add your location to our member map at https://virtualcoffee.io/members (optional) + // Feel free to be as specific or vague as you're comfortable with. + location: { + latitude: 43.04, + longitude: -89.220624, + title: 'Madison, WI', // optional + }, +};