Skip to content

Commit

Permalink
Fix classes
Browse files Browse the repository at this point in the history
  • Loading branch information
jaschdoc committed Oct 6, 2023
1 parent 0e4761c commit acd2532
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/page/Documentation.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,31 +28,31 @@ class Documentation extends Component {

<Row className="mb-4">
<Col md="6">
<a href="https://doc.flix.dev/" className="text-primary">
<a href="https://doc.flix.dev/" className="text-reset">
<Card body className="h-100">
<CardSubtitle className="text-center m-4">
<CardSubtitle className="text-center m-4 text-primary">
<FaBookReader style={{ fontSize: '6em' }} />
</CardSubtitle>
<CardTitle className="text-center">
<CardTitle className="text-center text-primary">
Programming Flix
</CardTitle>
<CardText className="text-reset">
<CardText>
The book provides an introduction to Flix for functional programmers. The book
demonstrates the core concepts of Flix through several examples.
</CardText>
</Card>
</a>
</Col>
<Col md="6">
<a href="https://api.flix.dev/" className="text-success">
<a href="https://api.flix.dev/" className="text-reset">
<Card body className="h-100">
<CardSubtitle className="text-center m-4">
<CardSubtitle className="text-center m-4 text-success">
<FaStream style={{ fontSize: '6em' }} />
</CardSubtitle>
<CardTitle className="text-center">
<CardTitle className="text-center text-success">
Standard Library
</CardTitle>
<CardText className="text-reset">
<CardText>
The documentation provides a Javadoc-style description of the Flix library.
</CardText>
</Card>
Expand Down

0 comments on commit acd2532

Please sign in to comment.