Skip to content

Commit

Permalink
Merge pull request #1355 from alliance-genome/KANBAN-449
Browse files Browse the repository at this point in the history
KANBAN-449: Display help email contact
  • Loading branch information
oblodgett authored Aug 15, 2024
2 parents 01f0cb7 + d451068 commit 87e148f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/containers/alzheimersPage/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,22 @@ import PapersSection from './PapersSection';
import ResourcesSection from './ResourcesSection';
import DiseasePortalSection from './DiseasePortalSection';
import MembersSection from '../../components/MembersSection';
import { HELP_EMAIL } from '../../constants';



const AlzheimersPage = () => {
return (
<div>
<HeadMetaTags title="Alzheimer's Disease Portal" />
<DiseasePortalSection />

<PapersSection />
<ResourcesSection />

<div>
<h4 className='mt-4 text-center'>Need Help? Contact Us: &nbsp;<a href={`mailto:${HELP_EMAIL}`}>{HELP_EMAIL}</a></h4>
</div>

<MembersSection />
</div>
);
Expand Down

0 comments on commit 87e148f

Please sign in to comment.