From 504d070eed9a383f5c0bc54d20939ff47626dc2f Mon Sep 17 00:00:00 2001 From: Alexander Batenhorst <59321539+iotalex@users.noreply.github.com> Date: Mon, 9 Oct 2023 15:19:55 -0500 Subject: [PATCH] Add Iotalex profile to our Members Page! #13 (#1047) * add profile github ID to branch * add profile information, prepare pull request * Prettified Code! * Remove badge and unnecessary spacing * remove gps coordiante, save for next PR * Prettified Code! --------- Co-authored-by: iotalex --- members/members/iotalex.ts | 54 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 members/members/iotalex.ts diff --git a/members/members/iotalex.ts b/members/members/iotalex.ts new file mode 100644 index 00000000..c8ccdfc9 --- /dev/null +++ b/members/members/iotalex.ts @@ -0,0 +1,54 @@ +import type { MemberObject } from '../types'; +// import { profileMasks } from '../flare'; + +export const iotalex: MemberObject = { + // GitHub username (required) + github: 'iotalex', + // + // 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: 'Alexander Batenhorst', + // + // 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: `Full Stack Software Developer | JavaScript, React, Node.js, .NET, C#`, + // + // 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.triangle, + }, + // + // Links - You can add one of each type, except website - you can add as many `website` accounts as you wish. + accounts: [ + { type: 'linkedin', username: 'iotalex' }, + // { type: 'dev', username: 'yourUserName' }, + // { type: 'codenewbie', username: 'yourUserName' }, + { type: 'twitter', username: '1oTAlex' }, + // { type: 'twitch', username: 'yourUserName' }, + // { 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: 'website', + url: 'https://www.iotalex.com', + title: 'www.iotalex.com', + }, + ], + ///location: { + //latitude: , + //longitude: , + //title: , // optional + //}, +};