Skip to content

Commit 8945c31

Browse files
authored
Merge pull request #101 from NYU-RTS/enh_remove_stock_imgs
enh: remove stock images
2 parents 6376fcf + 3bd4d1c commit 8945c31

File tree

8 files changed

+909
-218
lines changed

8 files changed

+909
-218
lines changed

docusaurus.config.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,10 @@ const config: Config = {
127127
label: "Email for HPC support",
128128
href: "mailto:hpc@nyu.edu",
129129
},
130+
{
131+
label: "Email for HSRN support",
132+
href: "mailto:hsrn-support@nyu.edu",
133+
},
130134
{
131135
label: "Email for general GenAI support",
132136
href: "mailto:genai-support@nyu.edu",

src/components/HomepageFeatures/index.tsx

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
import Link from "@docusaurus/Link";
2-
import MountainSvg from "@site/static/img/undraw_docusaurus_mountain.svg";
2+
import CloudSvg from "@site/static/img/cloud.svg";
3+
import HPCSvg from "@site/static/img/hpc.svg";
4+
import HSRNSvg from "@site/static/img/hsrn.svg";
5+
import SRDESvg from "@site/static/img/srde.svg";
36
import ReactSvg from "@site/static/img/undraw_docusaurus_react.svg";
4-
import TreeSvg from "@site/static/img/undraw_docusaurus_tree.svg";
57
import Heading from "@theme/Heading";
68
import clsx from "clsx";
79
import { type ComponentProps } from "react";
@@ -18,7 +20,7 @@ interface FeatureItem {
1820
const FeatureList: FeatureItem[] = [
1921
{
2022
title: "High Performance Computing",
21-
Svg: MountainSvg,
23+
Svg: HPCSvg,
2224
description: (
2325
<>
2426
Seamless access to advanced computing resources, consultation services
@@ -29,7 +31,7 @@ const FeatureList: FeatureItem[] = [
2931
},
3032
{
3133
title: "High Speed Research Network",
32-
Svg: TreeSvg,
34+
Svg: HSRNSvg,
3335
description: (
3436
<>
3537
The High Speed Research Network (HSRN) is NYU&apos;s high-throughput,
@@ -41,7 +43,7 @@ const FeatureList: FeatureItem[] = [
4143
},
4244
{
4345
title: "GenAI",
44-
Svg: TreeSvg,
46+
Svg: ReactSvg,
4547
description: (
4648
<>
4749
The Pythia Platform is a suite of tools for researchers to harness
@@ -53,7 +55,7 @@ const FeatureList: FeatureItem[] = [
5355
},
5456
{
5557
title: "Cloud Computing",
56-
Svg: ReactSvg,
58+
Svg: CloudSvg,
5759
description: (
5860
<>
5961
We facilitate access to Google Cloud Platform and also host an on-prem
@@ -64,7 +66,7 @@ const FeatureList: FeatureItem[] = [
6466
},
6567
{
6668
title: "SRDE",
67-
Svg: ReactSvg,
69+
Svg: SRDESvg,
6870
description: (
6971
<>
7072
The Secure Research Data Environment (SRDE) is a centralized secure

static/img/cloud.svg

Lines changed: 141 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)