Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/components/sections/AboutUsMeetTheTeamSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ export default function AboutUsMeetTheTeamSection() {

{/* Officers Section */}
<div className="flex flex-col items-center mt-14 md:mt-20 gap-y-4">
<h2 className="text-2xl text-black font-bold">Officers</h2>
<ul className="grid grid-cols-2 xl:grid-cols-4 justify-items-center gap-y-4 md:gap-x-10 xl:gap-x-6">
{officers.map((member, idx) => (
<li key={member.id} className={getOfficerClass(idx)}>
Expand Down
3 changes: 2 additions & 1 deletion src/components/ui/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ export default function Footer({ className = "" }: FooterProps) {

<div className="md:col-span-3 lg:col-span-4 lg:col-start-5 space-y-2">
<p className="text-white md:text-sm lg:text-lg max-w-xs font-inter mb-2">Meet the developers behind the website.</p>
<Link href={"/meet-the-developers"}>
<Link className='flex flex-row gap-4' href={"/meet-the-developers"}>
<p className='font-inter text-yellow2'>Meet the Developers</p>
<TbCircleArrowRightFilled className="text-white hover:text-yellow2 transition-colors md:w-5 md:h-5 lg:w-6 lg:h-6" />
</Link>
<div className="flex gap-2 mt-8 md:mt-8 lg:mt-10">
Expand Down