-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e495ba6
commit 2976549
Showing
6 changed files
with
459 additions
and
322 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
import Header from '@/components/Header'; | ||
import Footer from '@/components/Footer'; | ||
import PeriodLinks from '@/components/PeriodLinks'; | ||
import Image, { StaticImageData } from 'next/image'; | ||
|
||
interface LeadershipCardProps { | ||
image: string | StaticImageData; | ||
name: string; | ||
title: string; | ||
links: { | ||
link: string; | ||
image: string | StaticImageData; | ||
}[]; | ||
} | ||
[]; | ||
|
||
const LeadershipCard = (props: LeadershipCardProps) => { | ||
return ( | ||
<div className="p-2 flex flex-col items-center grow-0 w-72 gap-4"> | ||
{props.image == '' ? ( | ||
<div className="bg-cornflower-50 w-full aspect-square rounded-3xl"></div> | ||
) : ( | ||
<Image | ||
src={props.image} | ||
alt="Headshot" | ||
height={280} | ||
width={280} | ||
className="w-full aspect-square rounded-3xl" | ||
/> | ||
)} | ||
<h3 className="text-3xl font-bold text-center">{props.name}</h3> | ||
<p className="text-2xl text-center">{props.title}</p> | ||
<div className="flex gap-4"> | ||
{props.links.map((link, index) => ( | ||
<a href={link.link} key={index} className="w-8 h-8 relative"> | ||
<Image src={link.image} alt="Social link" fill /> | ||
</a> | ||
))} | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
interface LeadershipGroupProps { | ||
name: string; | ||
description: string; | ||
people: LeadershipCardProps[]; | ||
} | ||
[]; | ||
|
||
const LeadershipGroup = (props: LeadershipGroupProps) => { | ||
return ( | ||
<div className="px-8 lg:px-16 xl:px-32 py-24 flex flex-wrap justify-center gap-8"> | ||
<h2 className="text-5xl font-bold pb-4 text-center">{props.name}</h2> | ||
<p className="text-3xl pb-4">{props.description}</p> | ||
<div className="flex flex-wrap justify-center gap-16"> | ||
{props.people.map((person) => ( | ||
<LeadershipCard {...person} key={person.title} /> | ||
))} | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
interface GovernanceProps { | ||
data: LeadershipGroupProps[]; | ||
past?: string; | ||
periodLinks: { | ||
path: string; | ||
periods: string[]; | ||
current: string; | ||
}; | ||
} | ||
|
||
const Governance = (props: GovernanceProps) => ( | ||
<div className="bg-white"> | ||
<Header | ||
text={ | ||
'Our Leadership Team' + (typeof props.past === 'undefined' ? '' : ' (' + props.past + ')') | ||
} | ||
/> | ||
{props.data.map((group) => ( | ||
<LeadershipGroup {...group} key={group.name} /> | ||
))} | ||
<PeriodLinks name="Historical governance periods" past={props.past} {...props.periodLinks} /> | ||
<Footer royalBg={false} /> | ||
</div> | ||
); | ||
|
||
export default Governance; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import Link from 'next/link'; | ||
|
||
interface GovernanceProps { | ||
name: string; | ||
past?: string | null; | ||
path: string; | ||
periods: string[]; | ||
current: string; | ||
} | ||
|
||
const PeriodLinks = (props: GovernanceProps) => { | ||
const periods = props.periods; | ||
periods[periods.indexOf(props.current)] = 'Current'; | ||
|
||
const urls = periods.map((period) => { | ||
if (period === 'Current') { | ||
return props.path; | ||
} | ||
return props.path + period; | ||
}); | ||
|
||
return ( | ||
<div className="px-8 lg:px-16 xl:px-32 py-24 flex flex-wrap justify-center gap-8"> | ||
<h2 className="text-5xl font-bold pb-4 text-center">{props.name}</h2> | ||
<div className="flex flex-wrap justify-center gap-x-8"> | ||
{periods.map((period, index) => { | ||
if ( | ||
period === props.past || | ||
(period === 'Current' && typeof props.past === 'undefined') | ||
) { | ||
return ( | ||
<h3 className="text-xl font-extrabold mb-4" key={period}> | ||
{period} | ||
</h3> | ||
); | ||
} | ||
return ( | ||
<Link | ||
href={urls[index]} | ||
className="underline decoration-transparent hover:decoration-inherit transition" | ||
key={period} | ||
> | ||
<h3 className="text-xl font-semibold mb-4">{period}</h3> | ||
</Link> | ||
); | ||
})} | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default PeriodLinks; |
Oops, something went wrong.