From 8ab974a04e68301fcc8d3c59996a83cc7f411d1c Mon Sep 17 00:00:00 2001 From: Henry Hale Date: Sun, 8 Oct 2023 09:41:53 -0500 Subject: [PATCH 1/2] docs: add contributors --- docs/about/team.md | 32 ++++++++++++++++++++++++++++---- 1 file changed, 28 insertions(+), 4 deletions(-) diff --git a/docs/about/team.md b/docs/about/team.md index 44bfec4..01429bc 100644 --- a/docs/about/team.md +++ b/docs/about/team.md @@ -6,7 +6,8 @@ layout: page import { VPTeamPage, VPTeamPageTitle, - VPTeamMembers + VPTeamMembers, + VPTeamPageSection } from 'vitepress/theme'; const members = [ @@ -20,18 +21,41 @@ const members = [ { icon: 'github', link: 'https://github.com/henryhale' + }, + { + icon: 'twitter', + link: 'https://twitter.com/devhenryhale' } ] }, ]; + +const contributors = [ + { + name: 'Enzo Notario', + title: 'Full Stack Developer', + avatar: 'https://www.github.com/enzonotario.png', + links: [ + { + icon: 'github', + link: 'https://github.com/enzonotario' + }, + ] + } +]; - + + + + + + From 31fea85e19685191b84f8719b7f8428870ce9319 Mon Sep 17 00:00:00 2001 From: Henry Hale Date: Sun, 8 Oct 2023 10:56:25 -0500 Subject: [PATCH 2/2] chore: update readme with appreciation link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d1d18d9..4b07279 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ Supporting wide range of browsers is the goal. Modern browsers, most specificall ## Contributing -Thank you for checking out this awesome project. Any contributions to the project are appreciated, whether it's fixing bugs, adding new features, or improving documentation. To contribute, please follow these guidelines: +Thank you for checking out this awesome project. Any contributions to the project are [appreciated](https://xterminal.js.org/about/team.html), whether it's fixing bugs, adding new features, or improving documentation. To contribute, please follow these guidelines: - **Issues**: Before starting to work on a new feature or bug fix, please check the issue tracker to see if the task is already in progress or has been reported. If not, feel free to [open a new issue](https://github.com/henryhale/xterminal/issues/new) to discuss the proposed changes or bug fixes. - **Branching**: Create a new branch for each feature or bug fix you are working on. Use clear descriptive branch names that reflect the purpose of your changes e.g. `feature/events` or `bugfix/issue-1234`.