Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: re-arrange logos on Home.js #132

Merged
merged 1 commit into from
Dec 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/logo/tubingen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
86 changes: 51 additions & 35 deletions src/page/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -810,7 +810,8 @@ let r = query p select (c, d) from ReadyDate(c; d)
</Col>
</Row>

<UncontrolledCarousel autoPlay={false} interval={false} items={this.carousel} className="ml-2 mr-2"/>
<UncontrolledCarousel autoPlay={false} interval={false} items={this.carousel}
className="ml-2 mr-2"/>
</Col>
</Row>

Expand Down Expand Up @@ -930,42 +931,57 @@ let r = query p select (c, d) from ReadyDate(c; d)

<Row className="mb-3">
<Col md="12">
<h2>Sponsors, Funding, and Collaborations</h2>
</Col>

<Col>
<Card className="border-0 p-3">
<CardImg src="/logo/dff.png" alt="Independent Research Fund Denmark"/>
</Card>
</Col>
<Col>
<Card className="border-0 p-3">
<CardImg src="/logo/direc.png" alt="Digital Research Centre Denmark"/>
</Card>
</Col>
<Col>
<Card className="border-0 p-3">
<CardImg src="/logo/amazon-science.png" alt="Amazon Research Award"/>
</Card>
</Col>
<Col>
<Card className="border-0 p-3">
<CardImg src="/logo/stibo.png" alt="StiboFonden"/>
</Card>
</Col>
<h2>Sponsors and Funding</h2>
</Col>

<Row>
<Col>
<Card className="border-0 p-3">
<CardImg src="/logo/dff.png" alt="Independent Research Fund Denmark"/>
</Card>
</Col>
<Col>
<Card className="border-0 p-3">
<CardImg src="/logo/direc.png" alt="Digital Research Centre Denmark"/>
</Card>
</Col>
<Col>
<Card className="border-0 p-3">
<CardImg src="/logo/amazon-science.png" alt="Amazon Research Award"/>
</Card>
</Col>
<Col>
<Card className="border-0 p-3">
<CardImg src="/logo/stibo.png" alt="StiboFonden"/>
</Card>
</Col>
</Row>
</Row>

<Row>
<Col md="3">
<Card className="border-0 p-3">
<CardImg src="/logo/aarhusu.png" alt="Aarhus University"/>
</Card>
</Col>
<Col md="4">
<Card className="border-0 p-3">
<CardImg src="/logo/uwaterloo.png" alt="University of Waterloo"/>
</Card>
</Col>
<hr className="mb-3"/>

<Row className="mb-3">
<Col md="12">
<h2>Collaborators</h2>
</Col>

<Row>
<Col md="3">
<Card className="border-0 p-3">
<CardImg src="/logo/aarhusu.png" alt="Aarhus University"/>
</Card>
</Col>
<Col md="4">
<Card className="border-0 p-3">
<CardImg src="/logo/uwaterloo.png" alt="University of Waterloo"/>
</Card>
</Col>
<Col md="3">
<Card className="border-0 p-3">
<CardImg src="/logo/tubingen.png" alt="University of Tubingen"/>
</Card>
</Col>
</Row>
</Row>

<hr className="mb-3"/>
Expand Down
Loading