Skip to content

Commit

Permalink
add publications
Browse files Browse the repository at this point in the history
  • Loading branch information
jackrifkin committed May 24, 2024
1 parent a9da934 commit 4587629
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 23 deletions.
4 changes: 4 additions & 0 deletions pages/Process/Process.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@
.marginTop50 {
margin-top: 50px;
}

.publicationLink:hover {
text-decoration: underline !important;
}
45 changes: 24 additions & 21 deletions pages/Process/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,47 +4,48 @@ import styles from "./Process.module.css";

const placeholderPublications = [
{
title: "TITLE OF PUBLICATION",
title: "Jacob's Pillow",
description:
"Ab quia pariatur sed consequuntur recusandae sit velit perspiciatis? by Author Name",
"A short film made by the Jacob's Pillow team",
link: "https://watch.jacobspillow.org/detail/videos/inside-the-pillow-lab/video/6340364188112?autoStart=true",
},
{
title: "ANOTHER PUBLICATION",
title: "Dance Magazine",
description:
"Ab quia pariatur sed consequuntur recusandae sit velit perspiciatis? by Author Name",
"Press from Dance Magazine",
link: "https://www.dancemagazine.com/choreo-robotics/",
},
{
title: "PUBLICATION #3",
title: "36 Walk: a case study of reciprocity in movement and computation",
description:
"Ab quia pariatur sed consequuntur recusandae sit velit perspiciatis? by Author Name",
"A case study paper by Grisha Coleman and Daragh Byrne",
link: "/movement-undercommons/Publications/36Walk.pdf",
},
{
title: "YET ANOTHER PUBLICATION",
title: "The Movement Undercommons",
description:
"Ab quia pariatur sed consequuntur recusandae sit velit perspiciatis? by Author Name",
"Movement analysis as meaning making in a time of global migrations\nby Grisha Coleman",
link: "/movement-undercommons/Publications/MovementUndercommons.pdf"
},
{
title: "THIS IS ALSO A PUBLICATION",
title: "Motion, Captured",
description:
"Ab quia pariatur sed consequuntur recusandae sit velit perspiciatis? by Author Name",
"An open repository for comparative movement studies\nby Grisha Coleman & Co.",
link: "/movement-undercommons/Publications/Motion, Captured.pdf"
},
{
title: "VERY VERY VERY VERY VERY VERY VERY LOOOOOOOOOOONG TITLE",
title: "Decolonizing the Machine",
description:
"Ab quia pariatur sed consequuntur recusandae sit velit perspiciatis? by Author Name",
},
{
title: "SHORT TITLE",
description:
"Ab quia pariatur sed consequuntur recusandae sit velit perspiciatis? by Author Name",
"Decolonizing the Machine: Race, Gender, and Disability in Robots and Algorithmic Art\nby Grisha Coleman & Co.",
link: "/movement-undercommons/Publications/DECOLONIZING_THE_MACHINE.pdf"
},
];

const Publication = ({ title, description }) => {
const Publication = ({ title, description, link }) => {
return (
<div style={{ marginBottom: "30px" }}>
<h3 className="abolitionRegular" style={{ marginBottom: "0" }}>
{title}
<a className={styles.publicationLink} href={link} target="_blank">{title}</a>
</h3>
<p>{description}</p>
</div>
Expand Down Expand Up @@ -480,27 +481,29 @@ export default function Process() {

<div className={`contentContainer`}>
<div className="row">
<div className="col">
<div className="col-12 col-md-5">
{placeholderPublications
.slice(0, Math.ceil(placeholderPublications.length / 2))
.map((publication) => {
return (
<Publication
title={publication.title}
description={publication.description}
link={publication.link}
/>
);
})}
</div>
<div className="col-2" />
<div className="col">
<div className="col-12 col-md-5">
{placeholderPublications
.slice(Math.ceil(placeholderPublications.length / 2))
.map((publication) => {
return (
<Publication
title={publication.title}
description={publication.description}
link={publication.link}
/>
);
})}
Expand Down
Binary file added public/Publications/36Walk.pdf
Binary file not shown.
Binary file added public/Publications/DECOLONIZING_THE_MACHINE.pdf
Binary file not shown.
Binary file added public/Publications/Motion, Captured.pdf
Binary file not shown.
Binary file added public/Publications/MovementUndercommons.pdf
Binary file not shown.
4 changes: 2 additions & 2 deletions styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ body {
}

a {
color: inherit;
text-decoration: none;
color: inherit !important;
text-decoration: none !important;
}

* {
Expand Down

0 comments on commit 4587629

Please sign in to comment.