Skip to content

Commit 610fbff

Browse files
committed
Update acknowledgement text, home css fix
1 parent 1c7e2c4 commit 610fbff

File tree

8 files changed

+62
-12
lines changed

8 files changed

+62
-12
lines changed

assets/css/ioda/sass/pages/_home.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,11 @@ button[class*="searchButton"] {
5555
// background: linear-gradient(to right, #021b79, #06529f);
5656

5757
text-align: center;
58+
59+
&-cont {
60+
max-width: 1024px;
61+
margin: 0 auto;
62+
}
5863
}
5964

6065
&__methodology {

assets/css/style.comp.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4789,6 +4789,9 @@ button[class*="searchButton"] {
47894789
color: #fff;
47904790
background: #2c3e50;
47914791
text-align: center; }
4792+
.home__about-cont {
4793+
max-width: 1024px;
4794+
margin: 0 auto; }
47924795
.home__methodology {
47934796
background: #fff;
47944797
border-radius: 0.5rem;

assets/css/style.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/style.prefix.css

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
35.8 KB
Loading
8.79 KB
Loading

assets/js/Ioda/pages/home/Home.js

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -263,15 +263,17 @@ class Home extends Component {
263263
{/* About */}
264264
<div className="max-cont">
265265
<div className="home__about">
266-
<T.p className="about__text text-3xl mb-12" text="home.about" />
267-
<Button
268-
icon={<DesktopOutlined />}
269-
size="large"
270-
href="/dashboard"
271-
className="mx-auto w-min"
272-
>
273-
{aboutButtonText}
274-
</Button>
266+
<div className="home__about-cont">
267+
<T.p className="about__text text-3xl mb-12" text="home.about" />
268+
<Button
269+
icon={<DesktopOutlined />}
270+
size="large"
271+
href="/dashboard"
272+
className="mx-auto w-min"
273+
>
274+
{aboutButtonText}
275+
</Button>
276+
</div>
275277
</div>
276278
</div>
277279

assets/js/Ioda/pages/projectinfo/ProjectInfo.js

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ import ucsd from "images/acknowledgements/ucsd.svg";
5454
import usdos from "images/acknowledgements/usdos.png";
5555
import xsedeBlack from "images/acknowledgements/xsede-black.png";
5656
import caida from "images/logos/caida.png";
57+
import gatechTso from "images/acknowledgements/gatech-coc.png";
58+
import alcock from "images/acknowledgements/alcock.png";
5759

5860
import PartnerCard from "../home/PartnerCard";
5961
import { Alert } from "antd";
@@ -74,6 +76,18 @@ const data = [
7476
logoHref:
7577
"https://www.opentech.fund/results/supported-projects/internet-outage-detection-and-analysis/",
7678
children: `This platform was also supported by the Open Technology Fund under contract number 1002-2018-027.`,
79+
children: (
80+
<Fragment>
81+
This platform was also supported by the{" "}
82+
<a
83+
className="a-fake text-color-link"
84+
href="https://www.opentech.fund/projects-we-support/supported-projects/internet-outage-detection-and-analysis/"
85+
>
86+
Open Technology Fund
87+
</a>{" "}
88+
(2018, 2019, 2020).
89+
</Fragment>
90+
),
7791
},
7892
{
7993
logo: isoc,
@@ -121,7 +135,7 @@ const data = [
121135
>
122136
U.S. Department of State, Bureau of Democracy, Human Rights, and Labor
123137
</a>{" "}
124-
(2020) and{" "}
138+
(2020, 2023-2024) and{" "}
125139
<a
126140
className="a-fake text-color-link"
127141
href="https://www.state.gov/bureaus-offices/under-secretary-for-political-affairs/bureau-of-near-eastern-affairs/"
@@ -145,6 +159,29 @@ const data = [
145159
</Fragment>
146160
),
147161
},
162+
{
163+
logo: gatechTso,
164+
logoHref: "https://support.cc.gatech.edu/",
165+
children: (
166+
<Fragment>
167+
The{" "}
168+
<a
169+
className="a-fake text-color-link"
170+
href="https://support.cc.gatech.edu/"
171+
>
172+
Technology Services Organization (TSO)
173+
</a>{" "}
174+
at Georgia Tech's College of Computing provides and manages computing
175+
infrastructure for this project.
176+
</Fragment>
177+
),
178+
},
179+
{
180+
logo: alcock,
181+
logoHref: "https://www.alcock.co.nz/",
182+
children:
183+
"Alcock Network Intelligence is subcontracted to assist with the development, deployment and maintenance of the software for the IODA project.",
184+
},
148185
];
149186

150187
class ProjectInfo extends PureComponent {

0 commit comments

Comments
 (0)