Skip to content

Commit

Permalink
Merge pull request #30 from TailUFPB/branch-images
Browse files Browse the repository at this point in the history
Branch images
  • Loading branch information
jonasgabriel18 authored May 13, 2024
2 parents 41098df + d913fb1 commit 17a6b4f
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 22 deletions.
21 changes: 10 additions & 11 deletions api/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
Flask==2.3.2
Flask-Cors==4.0.0
pandas==2.0.3
nltk==3.8.1
scikit-learn==1.3.0
numpy==1.25.2
matplotlib==3.7.1
seaborn==0.13.0
tensorflow==2.16.1
keras==3.0.0
torchtext==0.17.2
Flask
Flask-Cors
pandas
nltk
scikit-learn
numpy
matplotlib
tensorflow
keras
torchtext
7 changes: 7 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,13 @@
"filter": [
"**/*"
]
},
{
"from": "build/assets",
"to": "assets",
"filter": [
"**/*"
]
}
],
"nsis": {
Expand Down
4 changes: 2 additions & 2 deletions src/components/menu/menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ export function Menu() {
<Link to="/about">Sobre</Link>
</li>
<li className="my-2 hover:text-blue-300 transition">
<Link to="https://forms.gle/Snud46RwuwT16Mrb9" target="_blank">
<a href="https://forms.gle/Snud46RwuwT16Mrb9" target="_blank">
Feedback
</Link>
</a>
</li>
</ul>
</nav>
Expand Down
18 changes: 9 additions & 9 deletions src/pages/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,53 +7,53 @@ export default function About() {
name: "Jonas Gabriel",
linkedin: "https://www.linkedin.com/in/jonas-gabriel-araujo/",
github: "https://github.com/jonasgabriel18",
photo: "/assets/jonas.jpg",
photo: "./assets/jonas.jpg",
},

{
name: "Luiz Gusttavo",
linkedin:
"https://www.linkedin.com/in/luiz-gusttavo-oliveira-de-souza-7538091b1/",
github: "https://github.com/GusttavoOliveira",
photo: "/assets/luiz.jpg",
photo: "./assets/luiz.jpg",
},

{
name: "Bertrand Lira",
linkedin: "https://www.linkedin.com/in/bertrand-lira-veloso-52aa4926a/",
github: "https://github.com/BertrandLira",
photo: "/assets/bertrand.jpg",
photo: "./assets/bertrand.jpg",
},

{
name: "Cameron Maloney",
linkedin: "https://www.linkedin.com/in/cameronmal/",
github: "https://github.com/cmaloney111",
photo: "/assets/cameron.jpg",
photo: "./assets/cameron.jpg",
},

{
name: "Gisele Silva",
linkedin: "https://www.linkedin.com/in/gisele-silva-6692941a4/",
github: "https://github.com/GiseleBr678",
photo: "/assets/gisele.jpg",
photo: "./assets/gisele.jpg",
},

{
name: "Thauã Magalhães",
linkedin: "https://www.linkedin.com/in/thaua-lucas/",
github: "https://github.com/tahaluh",
photo: "/assets/thaua.jpg",
photo: "./assets/thaua.jpg",
},

{
name: "Thiago Rodrigues",
linkedin: "https://www.linkedin.com/in/thiago-rodrigues-b8a328249/",
github: "https://github.com/tahaluh",
photo: "/assets/thiago.jpg",
photo: "./assets/thiago.jpg",
},
];
//comment
//comment
return (
<div className="bg-main-darker text-white min-h-screen flex flex-col">
<Menu />
Expand Down Expand Up @@ -108,7 +108,7 @@ export default function About() {

<h2 className="text-2xl font-semibold mb-4">Conheça a Equipe:</h2>

<div className="grid grid-cols-2 md:grid-cols-7 gap-6">
<div className="grid grid-cols-2 md:grid-cols-4 limit:grid-cols-7 gap-6">
{teamMembers.map((member, index) => (
<div key={index} className="text-center">
<img
Expand Down
3 changes: 3 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
screens: {
limit: "1190px",
},
colors: {
main: {
darker: "#000624",
Expand Down

0 comments on commit 17a6b4f

Please sign in to comment.