mirror of
https://github.com/acid-info/free.technology.git
synced 2025-03-01 09:50:38 +00:00
chore: remove photos from team section
This commit is contained in:
parent
5b85a2286f
commit
5084269774
@ -4,15 +4,17 @@ import Image from 'next/image'
|
|||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
children: React.ReactNode
|
children: React.ReactNode
|
||||||
img: string
|
img?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export const Member = ({ img, children }: Props) => {
|
export const Member = ({ img = '', children }: Props) => {
|
||||||
return (
|
return (
|
||||||
<Container>
|
<Container>
|
||||||
<ImageContainer>
|
{img?.length ? (
|
||||||
<MemberImage src={img} alt={img} fill />
|
<ImageContainer>
|
||||||
</ImageContainer>
|
<MemberImage src={img} alt={img} fill />{' '}
|
||||||
|
</ImageContainer>
|
||||||
|
) : null}
|
||||||
<Content>{children}</Content>
|
<Content>{children}</Content>
|
||||||
</Container>
|
</Container>
|
||||||
)
|
)
|
||||||
@ -22,17 +24,15 @@ const Container = styled.div`
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
padding-top: 24px;
|
||||||
|
padding-bottom: 8px;
|
||||||
|
border-top: 1px solid rgba(0, 0, 0, 0.18);
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
font-size: 22px;
|
font-size: 22px;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
line-height: 130%;
|
line-height: 130%;
|
||||||
|
|
||||||
@media (max-width: ${breakpoints.xl}px) {
|
|
||||||
font-size: 16px;
|
|
||||||
line-height: 20px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
@ -41,8 +41,18 @@ const Container = styled.div`
|
|||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
text-transform: capitalize;
|
text-transform: capitalize;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
|
||||||
@media (max-width: ${breakpoints.xl}px) {
|
@media (max-width: ${breakpoints.xl}px) {
|
||||||
|
padding-top: 16px;
|
||||||
|
padding-bottom: 8px;
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
}
|
}
|
||||||
|
@ -31,6 +31,13 @@ const Title = styled.p`
|
|||||||
line-height: 20px;
|
line-height: 20px;
|
||||||
padding-block: 18px;
|
padding-block: 18px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: ${breakpoints.md}px) {
|
||||||
|
font-size: 22px;
|
||||||
|
line-height: 122%;
|
||||||
|
padding-block: 16px;
|
||||||
|
margin-bottom: 24px;
|
||||||
|
}
|
||||||
`
|
`
|
||||||
|
|
||||||
const Grid = styled.div`
|
const Grid = styled.div`
|
||||||
@ -41,6 +48,10 @@ const Grid = styled.div`
|
|||||||
@media (max-width: ${breakpoints.xl}px) {
|
@media (max-width: ${breakpoints.xl}px) {
|
||||||
gap: 12px;
|
gap: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: ${breakpoints.md}px) {
|
||||||
|
gap: 8px;
|
||||||
|
}
|
||||||
`
|
`
|
||||||
|
|
||||||
export default Team
|
export default Team
|
||||||
|
@ -137,22 +137,32 @@ import BU_DATA from '../data/bu-data'
|
|||||||
|
|
||||||
</Mission>
|
</Mission>
|
||||||
<Team>
|
<Team>
|
||||||
<Member img="/photos/agata-ferreira.jpeg">
|
<Member>
|
||||||
|
### Jarrad Hope
|
||||||
|
|
||||||
|
Co-founder
|
||||||
|
</Member>
|
||||||
|
<Member>
|
||||||
|
### Carl Bennetts
|
||||||
|
|
||||||
|
Co-founder
|
||||||
|
</Member>
|
||||||
|
<Member>
|
||||||
### Dr. Agata Ferreira
|
### Dr. Agata Ferreira
|
||||||
|
|
||||||
Chief Legal Officer
|
Chief Legal Officer
|
||||||
</Member>
|
</Member>
|
||||||
<Member img="/photos/jonathan-barker.jpeg">
|
<Member>
|
||||||
### Jonathan Barker
|
### Jonathan Barker
|
||||||
|
|
||||||
Head of People Operations
|
Head of People Operations
|
||||||
</Member>
|
</Member>
|
||||||
<Member img="/photos/matthew-nemer.png">
|
<Member>
|
||||||
### Matthew Nemer
|
### Matthew Nemer
|
||||||
|
|
||||||
Head of Investor Relations
|
Head of Investor Relations
|
||||||
</Member>
|
</Member>
|
||||||
<Member img="/photos/ned-karlovich.jpeg">
|
<Member>
|
||||||
### Ned Karlovich
|
### Ned Karlovich
|
||||||
|
|
||||||
Creative Director
|
Creative Director
|
||||||
|
Loading…
x
Reference in New Issue
Block a user