From 6f45a51cb056a262b2203c38ef38f7256f0fe70e Mon Sep 17 00:00:00 2001 From: EvaGraceSmith Date: Tue, 17 Oct 2023 10:17:21 -0500 Subject: [PATCH 1/3] added my profile --- members/members/evagracesmith.ts | 46 ++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 members/members/evagracesmith.ts diff --git a/members/members/evagracesmith.ts b/members/members/evagracesmith.ts new file mode 100644 index 00000000..f33f1c59 --- /dev/null +++ b/members/members/evagracesmith.ts @@ -0,0 +1,46 @@ +import type { MemberObject } from '../types'; +// import { profileMasks } from '../flare'; + +export const EvaGraceSmith: MemberObject = { + // GitHub username (required) + github: 'EvaGraceSmith', + // + // 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.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: 'eva-grace-smith' }, + // { type: 'dev', username: 'yourUserName' }, + // { type: 'codenewbie', username: 'yourUserName' }, + // { type: 'twitter', username: 'yourUserName' }, + // { 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://virtualcoffee.io', title: 'Title of link' }, + ], + badges: [], +}; From 1901c4ef574d2b8e5ecc59b7d0c3102f136037b3 Mon Sep 17 00:00:00 2001 From: EvaGraceSmith Date: Tue, 24 Oct 2023 14:33:43 -0500 Subject: [PATCH 2/3] added badges and location --- members/members/evagracesmith.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/members/members/evagracesmith.ts b/members/members/evagracesmith.ts index f33f1c59..4c2bc173 100644 --- a/members/members/evagracesmith.ts +++ b/members/members/evagracesmith.ts @@ -42,5 +42,10 @@ export const EvaGraceSmith: MemberObject = { // { type: 'hashnode', username: 'yourUserName' }, // { type: 'website', url: 'https://virtualcoffee.io', title: 'Title of link' }, ], - badges: [], + badges: ['Hacktoberfest2023'], + location: { + latitude: 41.661129, + longitude: -91.530167, + title: 'Iowa City, Iowa', // optional + }, }; From ded8ef95fc6c1f7c62133a9fd788aabe9bd3c1fd Mon Sep 17 00:00:00 2001 From: EvaGraceSmith Date: Tue, 24 Oct 2023 19:37:22 +0000 Subject: [PATCH 3/3] Prettified Code! --- members/members/evagracesmith.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/members/members/evagracesmith.ts b/members/members/evagracesmith.ts index 4c2bc173..96ae68ea 100644 --- a/members/members/evagracesmith.ts +++ b/members/members/evagracesmith.ts @@ -47,5 +47,5 @@ export const EvaGraceSmith: MemberObject = { latitude: 41.661129, longitude: -91.530167, title: 'Iowa City, Iowa', // optional - }, + }, };