* add transition in mobile navbar * add contributors listing page * Add breadcrumb component * Add profilecard component * Make profile info dynamic * Style activity log component * Make title a re-usable component * Make card container re-usable * add rank and active days logic * complete single contributor page * add styles for mobile * Add github link * Reset header desktop * update calendar height * remove conditional header * add GH PR link * display 10 prs * Remove employees and fix rank * Unrelated CSS adjustment --------- Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
26 lines
411 B
TypeScript
26 lines
411 B
TypeScript
'use client';
|
|
|
|
import styled from '@emotion/styled';
|
|
|
|
const Title = styled.h2`
|
|
font-size: 56px;
|
|
font-weight: 600;
|
|
color: #b3b3b3;
|
|
margin-bottom: 0px;
|
|
margin-top: 64px;
|
|
|
|
@media (max-width: 810px) {
|
|
font-size: 28px;
|
|
}
|
|
`;
|
|
|
|
export const Header = () => {
|
|
return (
|
|
<>
|
|
<Title>
|
|
Our amazing <br /> <span style={{ color: 'black' }}>Contributors</span>
|
|
</Title>
|
|
</>
|
|
);
|
|
};
|