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