Skip to content

Commit

Permalink
Descriptive text added to project links.
Browse files Browse the repository at this point in the history
  • Loading branch information
izzet committed Oct 26, 2023
1 parent d1c4e4a commit c48d773
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/projects/ProjectItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ type ProjectItemProps = {
};

export default function ProjectItem({ project }: ProjectItemProps) {
const { id, title, shortDescription, link } = project;
const { id, link, name, title, shortDescription } = project;
return (
<div className="col col--4 margin-bottom--lg">
<div className="card text--center">
Expand All @@ -22,7 +22,7 @@ export default function ProjectItem({ project }: ProjectItemProps) {
</div>
<div className="card__footer">
<Link className="button button--primary button--block" href={link}>
Learn more
Learn more about {name}
</Link>
</div>
</div>
Expand Down
6 changes: 5 additions & 1 deletion src/data/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { Project, ProjectId } from "../types";
const projects: Project[] = [
{
id: "chronolog",
name: "ChronoLog",
title: "ChronoLog: A High-Performance Storage Infrastructure for Activity and Log Workloads",
shortDescription:
"HPC applications generate more data than storage systems can handle, and it is becoming increasingly important to store activity (log) data generated by people and applications. ChronoLog is a hierarchical, distributed log store that leverages physical time to achieve log ordering and reduce contention while utilizing storage tiers to elastically scale the log capacity.",
Expand All @@ -13,16 +14,18 @@ const projects: Project[] = [
},
{
id: "coeus",
name: "Coeus",
title: "Coeus: Accelerating Scientific Insights Using Enriched Metadata",
shortDescription:
"In collaboration with Sandia and Oak Ridge National Laboratories, coeus investigate the use of an active storage system to calculate derived quantities and support complex queries on scientific data (simulation and observational) as well as optimizing data placement across the storage hierarchy, with awareness of the resource limitations, to better support the scientific discovery process.",
link: "/research/projects/coeus",
isFeatured: true,
// isFunded: true,
isFunded: true,
isOurs: true,
},
{
id: "hermes",
name: "Hermes",
title:
"Hermes: Extending the HDF Library to Support Intelligent I/O Buffering for Deep Memory and Storage Hierarchy System",
shortDescription:
Expand All @@ -35,6 +38,7 @@ const projects: Project[] = [
},
{
id: "iris",
name: "IRIS",
title: "IRIS: I/O Redirection Via Integrated Storage",
shortDescription:
"Various storage solutions exist and require specialized APIs and data models in order to use, which binds developers, applications, and entire computing facilities to using certain interfaces. Each storage system is designed and optimized for certain applications but does not perform well for others. IRIS is a unified storage access system that bridges the semantic gap between filesystems and object stores.",
Expand Down
1 change: 1 addition & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export type ProjectId = "chronolog" | "coeus" | "hermes" | "iris";

export type Project = {
id: ProjectId;
name: string;
title: string;
shortDescription: string;
link: string;
Expand Down

0 comments on commit c48d773

Please sign in to comment.