From 42266dfe66513784076b62ba0d75f2dacb284ead Mon Sep 17 00:00:00 2001
From: Chhawinderpreet Singh <96365487+chhawinder@users.noreply.github.com>
Date: Tue, 17 Oct 2023 05:45:18 +0530
Subject: [PATCH] [website] Add the LinkedIn profile to the contributors
section on the About page (#39455)
Co-authored-by: Danilo Leal <67129314+danilo-leal@users.noreply.github.com>
---
docs/src/components/about/Team.tsx | 17 +++++++++++++++--
1 file changed, 15 insertions(+), 2 deletions(-)
diff --git a/docs/src/components/about/Team.tsx b/docs/src/components/about/Team.tsx
index a361923e50d58b..f71a7ee7543c95 100644
--- a/docs/src/components/about/Team.tsx
+++ b/docs/src/components/about/Team.tsx
@@ -12,6 +12,7 @@ import Tooltip from '@mui/material/Tooltip';
import KeyboardArrowRightRounded from '@mui/icons-material/KeyboardArrowRightRounded';
import TwitterIcon from '@mui/icons-material/Twitter';
import GitHubIcon from '@mui/icons-material/GitHub';
+import LinkedInIcon from '@mui/icons-material/LinkedIn';
import Link from 'docs/src/modules/components/Link';
import ROUTES from 'docs/src/route';
import Section from 'docs/src/layouts/Section';
@@ -43,6 +44,7 @@ interface Profile {
about?: string;
github?: string;
twitter?: string;
+ linkedin?: string;
}
function Person(props: Profile & { sx?: PaperProps['sx'] }) {
@@ -134,7 +136,7 @@ function Person(props: Profile & { sx?: PaperProps['sx'] }) {
{props.github && (
)}
+ {props.linkedin && (
+
+
+
+ )}