Skip to content

Commit 284cd56

Browse files
committed
adding ipsius logo
1 parent 485d375 commit 284cd56

File tree

2 files changed

+35
-20
lines changed

2 files changed

+35
-20
lines changed

frontend/public/ipsius.png

28.5 KB
Loading

frontend/src/components/Footer.tsx

Lines changed: 35 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,43 @@ import React from 'react';
22

33

44
const Footer: React.FC = () => (
5-
<footer className="bg-white border-t mt-12 py-6">
6-
<div className="max-w-6xl mx-auto flex items-center justify-between px-4">
7-
{/* Left logo */}
8-
<div className="flex items-center space-x-6">
9-
<img src="/emofinder/usc.svg" alt="USC" className="h-20" />
10-
<img src="/emofinder/urv.png" alt="URV" className="h-20" />
11-
</div>
5+
<footer className="bg-white border-t mt-12 py-6">
6+
<div className="max-w-6xl mx-auto flex items-center justify-between px-4">
7+
{/* Left logos */}
8+
<div className="flex items-center space-x-6 mr-12">
9+
<img src="/emofinder/usc.svg" alt="USC" className="h-20" />
10+
<img src="/emofinder/urv.png" alt="URV" className="h-20" />
11+
</div>
1212

13-
{/* Center text */}
14-
<div className="flex-1 text-center text-sm text-gray-500">
15-
<p>© {new Date().getFullYear()} Universidade de Santiago de Compostela</p>
16-
<p>CiTIUS · Centro Singular de Investigación en Tecnoloxías Intelixentes</p>
17-
<p>The code is <a href="https://github.com/citiususc/semantic-emofinder" className="text-blue-600 hover:text-blue-800 underline">openly available</a> and feedback
18-
or issues can be submitted <a href="https://github.com/citiususc/semantic-emofinder/issues" className="text-blue-600 hover:text-blue-800 underline">through the repository</a></p>
19-
</div>
13+
{/* Center text */}
14+
<div className="flex-1 text-center text-sm text-gray-500">
15+
<p>© {new Date().getFullYear()} Universidade de Santiago de Compostela</p>
16+
<p>CiTIUS · Centro Singular de Investigación en Tecnoloxías Intelixentes</p>
17+
<p>
18+
The code is{" "}
19+
<a
20+
href="https://github.com/citiususc/semantic-emofinder"
21+
className="text-blue-600 hover:text-blue-800 underline"
22+
>
23+
openly available
24+
</a>{" "}
25+
and feedback or issues can be submitted{" "}
26+
<a
27+
href="https://github.com/citiususc/semantic-emofinder/issues"
28+
className="text-blue-600 hover:text-blue-800 underline"
29+
>
30+
through the repository
31+
</a>
32+
</p>
33+
</div>
2034

21-
{/* Right logo */}
22-
<div>
23-
<img src="/emofinder/citius.png" alt="CiTIUS" className="h-20" />
24-
</div>
25-
</div>
26-
</footer>
35+
{/* Right logos */}
36+
<div className="flex items-center space-x-6 ml-12">
37+
<img src="/emofinder/citius.png" alt="CiTIUS" className="h-20" />
38+
<img src="/emofinder/ipsius.png" alt="IPsiUS" className="h-20" />
39+
</div>
40+
</div>
41+
</footer>
2742
);
2843

2944
export default Footer;

0 commit comments

Comments
 (0)