Skip to content

Commit

Permalink
blog: update links
Browse files Browse the repository at this point in the history
  • Loading branch information
oreHGA committed Sep 30, 2024
1 parent 07378e7 commit 758191f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion frontend/public/posts/2023-12-11-tech-in-psych.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Our genes predict how we react differently to life stressors so there is no one

If you're a clinician or researcher interested in using our tools, [please reach out to us [email protected]](mailto:[email protected])

<iframe src="https://mfr.ca-1.osf.io/render?url=https://osf.io/download/mrbw5/?direct%26mode=render"
<iframe src="https://drive.google.com/file/d/1QLvgQHtD3PPlUukJjzFpy3TmZEhcUxwR/preview"
width="100%"
scrolling="yes"
height="677px"
Expand Down
4 changes: 2 additions & 2 deletions frontend/public/posts/2024-04-20-ncode-uk.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ This April, we joined the [N-CODE study group](https://www.n-code.org/activity/n

Our group is developing a _computerized cognitive assessment tool to detect Preclinical Alzheimer’s Disease_. What was most exciting for me is how easily we could port parts of NeuroFusion's open source code to host a prototype of the experience. Looking forward to deploying it and improving patient outcomes! 🧠

Here's a summary of our report from the event - [Using technology to improve the diagnostic accuracy of cognitive assessments for preclinical Alzheimer’s disease](https://www.n-code.org/wp-content/uploads/2024/05/using-technology-to-improve-the-diagnostic-accuracy-of-cognitive-assessments-for-preclinical-alzheimers-disease.pdf)
Here's a summary of our report from the event - [Using technology to improve the diagnostic accuracy of cognitive assessments for preclinical Alzheimer’s disease](https://drive.google.com/file/d/1uPe_MafCjZh2rLgxCVlY4uwL277hn1Al/view?usp=drive_link)

<img src="/images/blog/ncode/ncode_team.jpeg" alt="Ore and NCODE collaborators" data-zoomable style="cursor: zoom-in;" />

A big thank you to my brilliant collaborators [Donnchadh Murphy](https://www.linkedin.com/in/donnchadh-murphy-45b983146), [Abdel-Karim Al-Tamimi](https://www.linkedin.com/in/artamimi/), [Melanie Jouaiti](https://www.linkedin.com/in/melanie-jouaiti/), [Clarissa Stickland](https://www.linkedin.com/in/clarissa-stickland/), [Dr Miriam Silver](https://www.linkedin.com/in/miriam-silver/) and [Haeun Sun](https://www.linkedin.com/in/haeun-sun-243b66251/)!

<iframe src="https://www.n-code.org/wp-content/uploads/2024/05/using-technology-to-improve-the-diagnostic-accuracy-of-cognitive-assessments-for-preclinical-alzheimers-disease.pdf" width="100%" height="500px">
<iframe src="https://drive.google.com/file/d/1uPe_MafCjZh2rLgxCVlY4uwL277hn1Al/preview" width="100%" height="800px">
</iframe>
2 changes: 1 addition & 1 deletion frontend/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ const Home: NextPage = ({ posts }: any) => {
<FeatureSection />
<IntegrationsSection />
<OfferingSection />
<BlogSection posts={posts} />
<TestimonialSection />
<TeamSection />
<BlogSection posts={posts} />
<FaqSection />
</MainLayout>
);
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/pages/research.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const HeroSection = dynamic(() => import("~/components/features/landing").then((
export async function getStaticProps() {
const posts: any[] = (await getAllPostsWithFrontMatter()) as unknown as any[];

const selectedSlugs = ["ncode-cognitive-assessments", "tech-in-psych", "cold-plunge-impact"];
const selectedSlugs = ["decoding-the-brain", "ncode-cognitive-assessments", "tech-in-psych"];
const filteredPosts = posts.filter((post: any) => selectedSlugs.includes(post.slug));

return {
Expand All @@ -43,9 +43,9 @@ const Research: NextPage = ({ posts }: any) => {
<FeatureSection isResearch />
<IntegrationsSection />
<OfferingSection isResearch />
<BlogSection posts={posts} />
<TestimonialSection isResearch />
<TeamSection />
<BlogSection posts={posts} />
<FaqSection isResearch />
</MainLayout>
);
Expand Down

0 comments on commit 758191f

Please sign in to comment.