Skip to content

Commit 9d904a4

Browse files
committed
fix: add webpage to credits page
1 parent 5dee979 commit 9d904a4

5 files changed

Lines changed: 13 additions & 10 deletions

File tree

build/asset-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"files": {
33
"main.css": "./static/css/main.867f844d.css",
4-
"main.js": "./static/js/main.bb9eadbe.js",
4+
"main.js": "./static/js/main.f10683b5.js",
55
"index.html": "./index.html"
66
},
77
"entrypoints": [
88
"static/css/main.867f844d.css",
9-
"static/js/main.bb9eadbe.js"
9+
"static/js/main.f10683b5.js"
1010
]
1111
}

build/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="./favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="A novel approach to knowledge graph fact verification using Retrieval-Augmented Generation (RAG) and multiple Large Language Models (LLMs)."/><meta property="og:image" content="https://factcheck.dei.unipd.it/images/comics_1.png"/><meta property="og:image:secure_url" content="https://factcheck.dei.unipd.it/images/comics_1.png"/><meta property="og:image:type" content="image/png"/><meta property="og:image:width" content="1020"/><meta property="og:image:height" content="300"/><meta property="og:title" content="Fact Verification in Knowledge Graphs Using LLMs"/><meta property="og:description" content="A novel approach to knowledge graph fact verification using Retrieval-Augmented Generation (RAG) and multiple Large Language Models (LLMs)."/><title>Fact Verification in Knowledge Graphs Using LLMs</title><link rel="apple-touch-icon" href="./logo192.png"/><link rel="manifest" href="./manifest.json"/><title>React App</title><script defer="defer" src="./static/js/main.bb9eadbe.js"></script><link href="./static/css/main.867f844d.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
1+
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="./favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="A novel approach to knowledge graph fact verification using Retrieval-Augmented Generation (RAG) and multiple Large Language Models (LLMs)."/><meta property="og:image" content="https://factcheck.dei.unipd.it/images/comics_1.png"/><meta property="og:image:secure_url" content="https://factcheck.dei.unipd.it/images/comics_1.png"/><meta property="og:image:type" content="image/png"/><meta property="og:image:width" content="1020"/><meta property="og:image:height" content="300"/><meta property="og:title" content="Fact Verification in Knowledge Graphs Using LLMs"/><meta property="og:description" content="A novel approach to knowledge graph fact verification using Retrieval-Augmented Generation (RAG) and multiple Large Language Models (LLMs)."/><title>Fact Verification in Knowledge Graphs Using LLMs</title><link rel="apple-touch-icon" href="./logo192.png"/><link rel="manifest" href="./manifest.json"/><title>React App</title><script defer="defer" src="./static/js/main.f10683b5.js"></script><link href="./static/css/main.867f844d.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

src/pages/CreditsPage.tsx

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { useState } from 'react'
22
import { Button } from 'flowbite-react'
3-
import { BookOpen, Github, Mail } from 'lucide-react'
3+
import { BookOpen, Github, Mail, Link } from 'lucide-react'
44
import Header from '../components/layout/Header'
55

66
interface TeamMember {
@@ -13,6 +13,7 @@ interface TeamMember {
1313
github?: string;
1414
scholar?: string;
1515
email?: string;
16+
webpage?: string;
1617
};
1718
}
1819

@@ -39,7 +40,8 @@ export const CreditsPage: React.FC = () => {
3940
links: {
4041
github: 'https://github.com/stefano-marchesin',
4142
scholar: 'https://scholar.google.com/citations?user=AVZdcS8AAAAJ&hl=en',
42-
email: 'stefano.marchesin@unipd.it'
43+
email: 'stefano.marchesin@unipd.it',
44+
webpage: 'https://www.dei.unipd.it/~marches1/'
4345
}
4446
},
4547
{
@@ -49,9 +51,9 @@ export const CreditsPage: React.FC = () => {
4951
image: 'https://gda.dei.unipd.it/static/images/credits/gian_960x960.jpg',
5052
bio: 'Expert in knowledge management, information access, and algorithmic fairness.',
5153
links: {
52-
// github: 'https://github.com/sophiec',
5354
scholar: 'http://scholar.google.com/citations?user=pY24h-YAAAAJ&hl=en',
54-
email: 'silvello@dei.unipd.it'
55+
email: 'silvello@dei.unipd.it',
56+
webpage: 'https://www.dei.unipd.it/~silvello/'
5557
}
5658
}
5759
];
@@ -125,6 +127,7 @@ const TeamMemberCard: React.FC<{ member: TeamMember }> = ({ member }) => {
125127
>
126128
{key === 'email' ? <Mail className="w-4 h-4" /> :
127129
key === 'github' ? <Github className="w-4 h-4" /> :
130+
key === 'webpage' ? <Link className="w-4 h-4"/> :
128131
<BookOpen className="w-4 h-4" />}
129132
</a>
130133
)
@@ -162,7 +165,7 @@ const ProjectLinks: React.FC = () => (
162165
<BookOpen className="w-5 h-5" />
163166
<div>
164167
<div className="font-medium text-sm">Research Paper</div>
165-
<div className="text-xs text-gray-500">Read on SIGIR</div>
168+
<div className="text-xs text-gray-500">Read</div>
166169
</div>
167170
</a>
168171
</div>

0 commit comments

Comments
 (0)