Skip to content

Commit

Permalink
Merge branch 'prod'
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrogenous committed Jul 31, 2024
2 parents 1360b4a + 960bbb4 commit 59098c8
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 27 deletions.
11 changes: 11 additions & 0 deletions components/doc/contribution/cladoc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { DocSectionText } from '@/components/doc/common/docsectiontext';

export function CLADoc(props) {
return (
<DocSectionText {...props}>
<p>
When a community member is offered the Contributor role, they are expected to sign a Contributor License Agreement (CLA) for legal purposes. This helps protect both the contributor and PrimeTek.
</p>
</DocSectionText>
);
}
6 changes: 6 additions & 0 deletions pages/contribution/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { KeyPointsDoc } from '@/components/doc/contribution/keypointsdoc';
import { CommunicationDoc } from '@/components/doc/contribution/communicationdoc';
import { PathwayDoc } from '@/components/doc/contribution/pathwaydoc';
import { BenefitsDoc } from '@/components/doc/contribution/benefitsdoc';
import { CLADoc } from '@/components/doc/contribution/cladoc';

const ContributionPage = () => {
const docs = [
Expand Down Expand Up @@ -39,6 +40,11 @@ const ContributionPage = () => {
id: 'benefits',
label: 'Benefits',
component: BenefitsDoc
},
{
id: 'cla',
label: 'CLA',
component: CLADoc
}
];

Expand Down
29 changes: 2 additions & 27 deletions pages/team/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ const TemplatesPage = () => {
</p>
</div>

<div className="card p-8">
<div className="flex flex-wrap gap-8">
<div className="card p-7">
<div className="flex flex-wrap gap-7">
<div className="flex flex-column align-items-center flex-auto">
<img src="https://primefaces.org/cdn/primereact/images/team/cagatay.jpg" className="border-circle mb-4" alt="Cagatay Civici" />
<span className="mb-2 text-xl font-bold">Çağatay Çivici</span>
Expand All @@ -44,11 +44,6 @@ const TemplatesPage = () => {
<span className="mb-2 text-xl font-bold">Onur Şentüre</span>
<span>Design Lead</span>
</div>
<div className="flex flex-column align-items-center flex-auto">
<img src="https://primefaces.org/cdn/primereact/images/team/yigit.jpg" className="border-circle mb-4" alt="Yiğit Fındıklı" />
<span className="mb-2 text-xl font-bold">Yiğit Fındıklı</span>
<span>Technical Lead</span>
</div>
<div className="flex flex-column align-items-center flex-auto">
<img src="https://primefaces.org/cdn/primereact/images/team/dilara.jpg" className="border-circle mb-4" alt="Dilara Can" />
<span className="mb-2 text-xl font-bold">Dilara Güngenci</span>
Expand All @@ -69,16 +64,6 @@ const TemplatesPage = () => {
<span className="mb-2 text-xl font-bold">Atakan Tepe</span>
<span>Front-End Developer</span>
</div>
<div className="flex flex-column align-items-center flex-auto">
<img src="https://primefaces.org/cdn/primereact/images/team/kerem.jpg" className="border-circle mb-4" alt="Kerem Yıldan" />
<span className="mb-2 text-xl font-bold">Kerem Yıldan</span>
<span>UI/UX Designer</span>
</div>
<div className="flex flex-column align-items-center flex-auto">
<img src="https://primefaces.org/cdn/primereact/images/team/aliriza.jpg" className="border-circle mb-4" alt="Alirıza Gücal" />
<span className="mb-2 text-xl font-bold">Alirıza Gücal</span>
<span>Front-End Developer</span>
</div>
<div className="flex flex-column align-items-center flex-auto">
<img src="https://primefaces.org/cdn/primereact/images/team/umit.jpg" className="border-circle mb-4" alt="Ümit Çelik" />
<span className="mb-2 text-xl font-bold">Ümit Çelik</span>
Expand All @@ -94,16 +79,6 @@ const TemplatesPage = () => {
<span className="mb-2 text-xl font-bold">Mehmet Çetin</span>
<span>Front-End Developer</span>
</div>
<div className="flex flex-column align-items-center flex-auto">
<img src="https://primefaces.org/cdn/primereact/images/team/furkan.jpg" className="border-circle mb-4" alt="Furkan Seziş" />
<span className="mb-2 text-xl font-bold">Furkan Seziş</span>
<span>Front-End Developer</span>
</div>
<div className="flex flex-column align-items-center flex-auto">
<img src="https://primefaces.org/cdn/primereact/images/team/burak.jpg" className="border-circle mb-4" alt="Burak Sağlam" />
<span className="mb-2 text-xl font-bold">Burak Sağlam</span>
<span>Front-End Developer</span>
</div>
<div className="flex flex-column align-items-center flex-auto">
<img src="https://primefaces.org/cdn/primereact/images/team/taner.jpg" className="border-circle mb-4" alt="Taner Engin" />
<span className="mb-2 text-xl font-bold">Taner Engin</span>
Expand Down

0 comments on commit 59098c8

Please sign in to comment.