Skip to content

Commit e942f3d

Browse files
authored
Added Profile for NateLevi (#1413)
1 parent 5572f0b commit e942f3d

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
import type { MemberObject } from '../types';
2+
// import { profileMasks } from '../flare';
3+
4+
export const NateLevi: MemberObject = {
5+
// GitHub username (required)
6+
github: 'NateLevi',
7+
//
8+
// 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.
9+
//
10+
// Name - If not defined here, it will default to your display name on GitHub. If that's not defined, then your GitHub username.
11+
// name: 'Your Name',
12+
// 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.
13+
emoji: '☯',
14+
//
15+
// 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.
16+
// mainUrl: 'https://virtualcoffee.io',
17+
//
18+
// 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.
19+
bio: `Full Stack Developer with a background in psychology, sales and athletics`,
20+
//
21+
// flare - If you want to add a flare to your profile, you can do so here.
22+
// Uncomment the `import { profileMasks } from '../flare';` line at the top of this file to use the profileMasks.
23+
// So far all we have is a profile mask, which makes your profile picture a different shape from the default square.
24+
// Leave this out if you prefer the default square.
25+
// You can choose from the following profile masks:
26+
// profileMasks.octogon, profileMasks.hexagon, profileMasks.triangle,
27+
// profileMasks.circle, profileMasks.rabbet, profileMasks.star
28+
// 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)
29+
flare: {
30+
// example:
31+
// profileMask: profileMasks.triangle,
32+
},
33+
//
34+
// Links - You can add one of each type, except website - you can add as many `website` accounts as you wish.
35+
accounts: [
36+
{ type: 'linkedin', username: 'natelevi' },
37+
// { type: 'dev', username: 'yourUserName' },
38+
// { type: 'codenewbie', username: 'yourUserName' },
39+
// { type: 'twitter', username: 'yourUserName' },
40+
// { type: 'twitch', username: 'yourUserName' },
41+
// { type: 'youtube', channelId: 'yourChannelId' }, OR { type: 'youtube', customUrl: 'https://www.youtube.com/c/yourCustomUrl' },
42+
// { type: 'polywork', username: 'yourUserName' },
43+
// { type: 'medium', username: 'yourUserName' },
44+
// { type: 'hashnode', username: 'yourUserName' },
45+
// { type: 'mastodon', url: 'https://mastodon.server/@username' },
46+
{ type: 'website', url: 'https://devnate.me', title: 'Personal Site' },
47+
],
48+
badges: [],
49+
// Add your location to our member map at https://virtualcoffee.io/members (optional)
50+
// Feel free to be as specific or vague as you're comfortable with.
51+
// Use this handy website to find your latitude and longitude: https://www.latlong.net/
52+
// location: {
53+
// latitude: 41.48266891706046,
54+
// longitude: -81.80009779282766,
55+
// title: 'Lakewood, OH', // optional
56+
// },
57+
};

0 commit comments

Comments
 (0)