From bc8fbae059b18eb6cd7bedd9253279f95580eba8 Mon Sep 17 00:00:00 2001
From: HDash <16350928+HDash@users.noreply.github.com>
Date: Mon, 3 Feb 2025 15:11:34 +0000
Subject: [PATCH] Implement publications pages
Need to add more publications
Issue #35, #19
---
frontend/src/pages/PublicationsPage.jsx | 57 ++++++++++++++++++++++---
1 file changed, 51 insertions(+), 6 deletions(-)
diff --git a/frontend/src/pages/PublicationsPage.jsx b/frontend/src/pages/PublicationsPage.jsx
index a93abfe..99bf585 100644
--- a/frontend/src/pages/PublicationsPage.jsx
+++ b/frontend/src/pages/PublicationsPage.jsx
@@ -1,14 +1,59 @@
import React from "react";
import CustomHeader from "../components/utilities/Header";
+import { Layout } from "antd";
+import ArticleOutlinedIcon from '@mui/icons-material/ArticleOutlined';
+import BackgroundAnimation from "../components/BackgroundAnimation";
+
+const { Content } = Layout;
+
+const publications = [
+ {
+ title: "Harnessing generative AI to annotate the severity of all phenotypic abnormalities within the Human Phenotype Ontology",
+ authors: "Kitty B Murphy, Brian M Schilder, Nathan G Skene",
+ journal: "medRxiv",
+ year: 2024,
+ doi: "https://doi.org/10.1101/2024.06.10.24308475"
+ },
+ {
+ title: "Identification of cell type-specific gene targets underlying thousands of rare diseases and subtraits",
+ authors: "Kitty B. Murphy, Robert Gordon-Smith, Jai Chapman, Momoko Otani, Brian M. Schilder, Nathan G. Skene",
+ journal: "medRxiv",
+ year: 2023,
+ doi: "https://doi.org/10.1101/2023.02.13.23285820"
+ }
+ // Add more publications as needed
+];
export default function PublicationsPage() {
return (
- <>
-
Coming soon...
+