Skip to content

Commit 004d963

Browse files
Add initial page with links
1 parent 3ca5606 commit 004d963

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+3127
-13661
lines changed

.eslintrc.js

Lines changed: 0 additions & 22 deletions
This file was deleted.

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
15.2.1
1+
15.7.0

.prettierignore

Lines changed: 0 additions & 4 deletions
This file was deleted.

.prettierrc.js

Lines changed: 0 additions & 6 deletions
This file was deleted.

CODE_OF_CONDUCT.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ include:
2020
- Focusing on what is best for the community
2121
- Showing empathy towards other community members
2222

23-
Examples of unacceptable behavior by participants include:
23+
Examples of unacceptable behavior by participants include:
2424

2525
- The use of sexualized language or imagery and unwelcome sexual attention or
26-
advances
26+
advances
2727
- Trolling, insulting/derogatory comments, and personal or political attacks
2828
- Public or private harassment
2929
- Publishing others' private information, such as a physical or electronic
30-
address, without explicit permission
30+
address, without explicit permission
3131
- Other conduct which could reasonably be considered inappropriate in a
32-
professional setting
32+
professional setting
3333

3434
## Our Responsibilities
3535

@@ -59,7 +59,7 @@ reported by contacting the project team at <[email protected]>. All
5959
complaints will be reviewed and investigated and will result in a response that
6060
is deemed necessary and appropriate to the circumstances. The project team is
6161
obligated to maintain confidentiality with regard to the reporter of an
62-
incident. Further details of specific enforcement policies may be posted
62+
incident. Further details of specific enforcement policies may be posted
6363
separately.
6464

6565
Project maintainers who do not follow or enforce the Code of Conduct in good
@@ -73,4 +73,3 @@ version 1.4, available
7373
[here](https://www.contributor-covenant.org/version/1/4/code-of-conduct.html).
7474

7575
[homepage]: https://www.contributor-covenant.org
76-

CONTRIBUTING.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@ repository before making a change.
66

77
Please note we have a [Code of Conduct](CODE_OF_CONDUCT.md), please follow it
88
in all your interactions with the project.
9-

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 CeSIUM - Centro de Estudantes de Eng. Informática da UMinho
3+
Copyright (c) 2021 CeSIUM - Centro de Estudantes de Eng. Informática da UMinho
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ local machine for development and testing purposes.
1515

1616
The following software is required to be installed on your system:
1717

18-
- [nodejs](https://nodejs.org/en/download/)
18+
- [Node.js 15.7+](https://nodejs.org/en/download/)
1919

2020
Install all dependencies using `npm install`.
2121

@@ -45,6 +45,14 @@ Format your code.
4545
npm run format
4646
```
4747

48+
### :link: References
49+
50+
You can use this resources to learn more about the tecnologies this project
51+
uses.
52+
53+
- [Getting Started with React](https://reactjs.org/docs/getting-started.html)
54+
- [Learn Next.js](https://nextjs.org/learn).
55+
4856
## :handshake: Contributing
4957

5058
Please read [CONTRIBUTING][contributing] and [CODE_OF_CONDUCT][code_of_conduct]
@@ -55,4 +63,3 @@ to us.
5563

5664
This project is licensed under the MIT License - see the [LICENSE][license]
5765
file for details.
58-

components/Card/index.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import styles from './style.module.css'
2+
3+
const Card = ({title, description, emoji, url}) => (
4+
<a href={url} className={styles.card}>
5+
<h3>{emoji} {title}</h3>
6+
{description && <p>{description}</p>}
7+
</a>
8+
)
9+
10+
export default Card

components/Card/style.module.css

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
.card {
2+
margin: 1rem;
3+
flex-basis: 45%;
4+
padding: 1.5rem;
5+
text-align: left;
6+
color: inherit;
7+
text-decoration: none;
8+
border: 1px solid #eaeaea;
9+
border-radius: 10px;
10+
transition: color 0.15s ease, border-color 0.15s ease;
11+
}
12+
13+
.card:hover,
14+
.card:focus,
15+
.card:active {
16+
color: #0070f3;
17+
border-color: #0070f3;
18+
}
19+
20+
.card h3 {
21+
margin: 0;
22+
font-size: 1.5rem;
23+
}
24+
25+
.card p {
26+
margin: 1rem 0 0 0;
27+
font-size: 1.25rem;
28+
line-height: 1.5;
29+
}
30+
31+
@media (max-width: 1050px) {
32+
.card {
33+
margin: 0.8rem 0;
34+
width: 85%;
35+
}
36+
}

0 commit comments

Comments
 (0)