Skip to content

Commit 12a448c

Browse files
Add willrosenberg.ts member profile
1 parent c0d4cbf commit 12a448c

File tree

1 file changed

+58
-0
lines changed

1 file changed

+58
-0
lines changed
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
import type { MemberObject } from '../types';
2+
// import { profileMasks } from '../flare';
3+
4+
// Change _EXAMPLE to `yourGitHubUserName` and add your info below
5+
export const willrosenberg: MemberObject = {
6+
// GitHub username (required)
7+
github: 'will-rosenberg',
8+
//
9+
// 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.
10+
//
11+
// Name - If not defined here, it will default to your display name on GitHub. If that's not defined, then your GitHub username.
12+
// name: 'Your Name',
13+
// Emoji - If you want an emoji to appear next to your name, you can add it here. Please only use standard unicode emojis - maintainers will reject PRs otherwise.
14+
// emoji: '👩‍💻',
15+
//
16+
// 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.
17+
// mainUrl: 'https://virtualcoffee.io',
18+
//
19+
// 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.
20+
bio: `Accent coach & full-stack engineer. Founded [Simple American Accent](https://instagram.com/SimpleAmericanAccent) in 2018. 20+ paid users of my [full-stack American accent web app](https://williamrosenberg.com). React, Node, Postgres.`,
21+
//
22+
// flare - If you want to add a flare to your profile, you can do so here.
23+
// Uncomment the `import { profileMasks } from '../flare';` line at the top of this file to use the profileMasks.
24+
// So far all we have is a profile mask, which makes your profile picture a different shape from the default square.
25+
// Leave this out if you prefer the default square.
26+
// You can choose from the following profile masks:
27+
// profileMasks.octogon, profileMasks.hexagon, profileMasks.triangle,
28+
// profileMasks.circle, profileMasks.rabbet, profileMasks.star
29+
// 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)
30+
flare: {
31+
// example:
32+
profileMask: profileMasks.circle,
33+
},
34+
//
35+
// Links - You can add one of each type, except website - you can add as many `website` accounts as you wish.
36+
accounts: [
37+
{ type: 'linkedin', username: 'will-rosenberg' },
38+
// { type: 'dev', username: 'yourUserName' },
39+
// { type: 'codenewbie', username: 'yourUserName' },
40+
// { type: 'twitter', username: 'yourUserName' },
41+
// { type: 'twitch', username: 'yourUserName' },
42+
// { type: 'youtube', channelId: 'yourChannelId' }, OR { type: 'youtube', customUrl: 'https://www.youtube.com/c/yourCustomUrl' },
43+
// { type: 'polywork', username: 'yourUserName' },
44+
// { type: 'medium', username: 'yourUserName' },
45+
// { type: 'hashnode', username: 'yourUserName' },
46+
// { type: 'mastodon', url: 'https://mastodon.server/@username' },
47+
{ type: 'website', url: 'https://instagram.com/SimpleAmericanAccent', title: 'IG: Simple American Accent (200k+ followers)' },
48+
],
49+
badges: [],
50+
// Add your location to our member map at https://virtualcoffee.io/members (optional)
51+
// Feel free to be as specific or vague as you're comfortable with.
52+
// Use this handy website to find your latitude and longitude: https://www.latlong.net/
53+
// location: {
54+
latitude: 41.893917,
55+
longitude: -87.624645,
56+
title: 'Chicago, IL', // optional
57+
// },
58+
};

0 commit comments

Comments
 (0)