Skip to content

Commit

Permalink
adds elevenlabs under grantor sections (#3730)
Browse files Browse the repository at this point in the history
# Description and Motivation
- The HET has recently partnered with ElevenLabs for voice-powered
content to enhance our data insights and how-to guides, helping us reach
more communities and drive meaningful change in health equity. To kick
off the partnership, we're adding them to our Grantors section so that
we can announce the partnership in a social media post.

## Has this been tested? How?
test passing

## Screenshots (if appropriate)

## Types of changes
- New content or feature

## New frontend preview link is below in the Netlify comment 😎
  • Loading branch information
kccrtv authored Oct 24, 2024
1 parent ad42636 commit 732a8ba
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 5 additions & 2 deletions frontend/src/pages/AboutUs/AboutUsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -254,9 +254,12 @@ export default function AboutUsPage() {
Grantors
</h3>

<ul className='grid list-none justify-between md:grid-cols-2 gap-6 grid-cols-1'>
<ul className='grid list-none align-center justify-between md:grid-cols-2 gap-6 grid-cols-1'>
{GRANTORS.map((grantor) => (
<li className='flex align-start' key={grantor.url}>
<li
className='flex align-start place-content-start items-center'
key={grantor.url}
>
<a href={grantor.url}>
<img
src={grantor.imageUrl}
Expand Down
6 changes: 6 additions & 0 deletions frontend/src/pages/AboutUs/OurTeamData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import Evan from '../../assets/team/MartinE.jpg'
import DrHH from '../../assets/team/SHarris-Hooker.jpg'

import GrantorPhrma from '../../assets/grantors/GrantorPhrma.png'
import GrantorElevenLabs from '../../assets/grantors/elevenlabs-logo-black-compressed.png'

import PartnerSatcher from '../../assets/partners/PartnerSatcher.png'
import PartnerGilead from '../../assets/partners/PartnerGilead.png'
Expand Down Expand Up @@ -301,6 +302,11 @@ export const GRANTORS = [
alt: 'Phrma Foundation',
url: 'https://phrma.org',
},
{
imageUrl: GrantorElevenLabs,
alt: 'ElevenLabs',
url: 'https://elevenlabs.io/',
},
]

export const PARTNERS = [
Expand Down

0 comments on commit 732a8ba

Please sign in to comment.