Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add victorialo to members page #1279

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 60 additions & 0 deletions src/content/members/members/victorialo.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
import type { MemberObject } from '../types';
import { profileMasks } from '../flare';

// Change _EXAMPLE to `yourGitHubUserName` and add your info below
export const victorialo: MemberObject = {
// GitHub username (required)
github: 'victoria-lo',
//
// 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,
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: 'victoria2666' },
// { type: 'dev', username: 'yourUserName' },
// { type: 'codenewbie', username: 'yourUserName' },
{ type: 'twitter', username: 'lo_victoria2666' },
// { type: 'twitch', username: 'yourUserName' },
{ type: 'youtube', channelId: 'ragTechDev' },
// { type: 'polywork', username: 'yourUserName' },
// { type: 'medium', username: 'yourUserName' },
{ type: 'hashnode', username: 'victoria' },
// { type: 'mastodon', url: 'https://mastodon.server/@username' },
{
type: 'website',
url: 'https://lo-victoria.com',
title: 'Articles by Victoria',
},
],
badges: ['Hacktoberfest2024'],
// 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: 41.48266891706046,
// longitude: -81.80009779282766,
// title: 'Lakewood, OH', // optional
// },
};