Skip to content

Commit

Permalink
Added danvgar profile and map location (#1108)
Browse files Browse the repository at this point in the history
* Added member profile and member map location

* Updated _EXAMPLE to danvgar at line 5
  • Loading branch information
danvgar authored Jan 19, 2024
1 parent 374db4d commit f3a4521
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions members/members/danvgar.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
import type { MemberObject } from '../types';
import { profileMasks } from '../flare';

// Change _EXAMPLE to `yourGitHubUserName` and add your info below
export const danvgar: MemberObject = {
// GitHub username (required)
github: 'danvgar',
//
// 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: 'Daniel Garcia',
//
// 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://danvgar.co',
//
// 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: `he/him | Full Stack Software Engineer | Web Developer | Los Angeles, CA | Your new friend! `,
//
// 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.circle,
},
//
// Links - You can add one of each type, except website - you can add as many `website` accounts as you wish.
accounts: [
{ type: 'linkedin', username: 'danvgar' },
// { type: 'dev', username: 'yourUserName' },
// { type: 'codenewbie', username: 'yourUserName' },
{ type: 'twitter', username: 'danvgar' },
// { 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: 'mastodon', url: 'https://mastodon.server/@username' },
{ type: 'website', url: 'https://danvgar.co', title: 'Portfolio' },
],
badges: [],
// 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: 34.052235,
longitude: -118.243683,
title: 'Los Angeles, CA', // optional
},
};

0 comments on commit f3a4521

Please sign in to comment.