Skip to content

Commit a4a2fa3

Browse files
small changes and fixes
1 parent 60e5569 commit a4a2fa3

4 files changed

Lines changed: 26 additions & 20 deletions

File tree

api/requirements.txt

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
Flask==2.3.2
2-
Flask-Cors==4.0.0
3-
pandas==2.0.3
4-
nltk==3.8.1
5-
scikit-learn==1.3.0
6-
numpy==1.25.2
7-
matplotlib==3.7.1
8-
seaborn==0.13.0
9-
tensorflow==2.16.1
10-
keras==3.0.0
11-
torchtext==0.17.2
1+
Flask
2+
Flask-Cors
3+
pandas
4+
nltk
5+
scikit-learn
6+
numpy
7+
matplotlib
8+
tensorflow
9+
keras
10+
torchtext

package.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,13 @@
9595
"filter": [
9696
"**/*"
9797
]
98+
},
99+
{
100+
"from": "build/assets",
101+
"to": "assets",
102+
"filter": [
103+
"**/*"
104+
]
98105
}
99106
],
100107
"nsis": {

src/components/menu/menu.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ export function Menu() {
5050
<Link to="/about">Sobre</Link>
5151
</li>
5252
<li className="my-2 hover:text-blue-300 transition">
53-
<Link to="https://forms.gle/Snud46RwuwT16Mrb9" target="_blank">
53+
<a href="https://forms.gle/Snud46RwuwT16Mrb9" target="_blank">
5454
Feedback
55-
</Link>
55+
</a>
5656
</li>
5757
</ul>
5858
</nav>

src/pages/about.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,50 +7,50 @@ export default function About() {
77
name: "Jonas Gabriel",
88
linkedin: "https://www.linkedin.com/in/jonas-gabriel-araujo/",
99
github: "https://github.com/jonasgabriel18",
10-
photo: "/assets/jonas.jpg",
10+
photo: "./assets/jonas.jpg",
1111
},
1212

1313
{
1414
name: "Luiz Gusttavo",
1515
linkedin:
1616
"https://www.linkedin.com/in/luiz-gusttavo-oliveira-de-souza-7538091b1/",
1717
github: "https://github.com/GusttavoOliveira",
18-
photo: "/assets/luiz.jpg",
18+
photo: "./assets/luiz.jpg",
1919
},
2020

2121
{
2222
name: "Bertrand Lira",
2323
linkedin: "https://www.linkedin.com/in/bertrand-lira-veloso-52aa4926a/",
2424
github: "https://github.com/BertrandLira",
25-
photo: "/assets/bertrand.jpg",
25+
photo: "./assets/bertrand.jpg",
2626
},
2727

2828
{
2929
name: "Cameron Maloney",
3030
linkedin: "https://www.linkedin.com/in/cameronmal/",
3131
github: "https://github.com/cmaloney111",
32-
photo: "/assets/cameron.jpg",
32+
photo: "./assets/cameron.jpg",
3333
},
3434

3535
{
3636
name: "Gisele Silva",
3737
linkedin: "https://www.linkedin.com/in/gisele-silva-6692941a4/",
3838
github: "https://github.com/GiseleBr678",
39-
photo: "/assets/gisele.jpg",
39+
photo: "./assets/gisele.jpg",
4040
},
4141

4242
{
4343
name: "Thauã Magalhães",
4444
linkedin: "https://www.linkedin.com/in/thaua-lucas/",
4545
github: "https://github.com/tahaluh",
46-
photo: "/assets/thaua.jpg",
46+
photo: "./assets/thaua.jpg",
4747
},
4848

4949
{
5050
name: "Thiago Rodrigues",
5151
linkedin: "https://www.linkedin.com/in/thiago-rodrigues-b8a328249/",
5252
github: "https://github.com/tahaluh",
53-
photo: "/assets/thiago.jpg",
53+
photo: "./assets/thiago.jpg",
5454
},
5555
];
5656
//comment

0 commit comments

Comments
 (0)