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: update Internships.js #134

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/images/katrinebjerg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 19 additions & 13 deletions src/page/Internships.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, {Component} from 'react';
import {Col, Container, Row} from "reactstrap";
import {CardImg, Col, Container, Row} from "reactstrap";

class Internships extends Component {

Expand All @@ -10,34 +10,28 @@ class Internships extends Component {
render() {
return (<Container>
<Row className="mb-3">
<Col>

<Col md={12}>
<h1>Research Internships</h1>
</Col>

<p className="font-weight-bold mt-4 mb-4">
<Col md={6} className="text-justify">
<p className="font-weight-bold mb-4">
Interested in programming language research?
Want to work on compilers?
Want to work on Flix?
</p>

<p>
Then join us for a research internship at Aarhus University in Denmark!
Then join us for a internship at Aarhus University in Denmark!
</p>

<hr/>

<p>
To apply, send an email to <code>magnusm at cs dot au dot dk</code> with a bit of
information about yourself.
</p>

<p>
A typical research internship lasts 6-8 weeks in the summer period (but other times of year
A typical internship lasts 6-8 weeks in the summer period (but other times of year
may also be possible).
</p>

<hr/>

<p>
Aarhus University will reimburse travel and visa costs for coming to Denmark.
In addition, it is possible to apply for a small stipend to help cover housing and living
Expand All @@ -50,10 +44,22 @@ class Internships extends Component {
(exceptions can be made for especially talented students.)
</p>

<hr/>

<p>
If you have questions, feel free to head over to <a
href="https://gitter.im/flix/Lobby">Gitter</a> and talk to us.
</p>

<hr/>

<p>
To apply, send an email to <code>magnusm at cs dot au dot dk</code> with a bit of
information about yourself.
</p>
</Col>
<Col md={6}>
<CardImg src="/images/katrinebjerg.jpg" alt="Dept. of Computer Science"/>
</Col>
</Row>
</Container>);
Expand Down
Loading