Skip to content

Commit 4bd78fc

Browse files
authored
Merge pull request #7 from jmaleo/Update_for_CRC
Add link to HAL
2 parents c87f191 + 7a46f7b commit 4bd78fc

1 file changed

Lines changed: 20 additions & 13 deletions

File tree

frontend/app/tabs/Informations.tsx

Lines changed: 20 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,6 @@ const isStatic: boolean = process.env.STATIC_BUILD === 'true';
99
const repoName: string = 'pcloud-differential-estimation-benchmark-website';
1010

1111

12-
// const references = [
13-
// {
14-
// id: 1,
15-
// text: "Mellado N., Marcadet Q., Espinasse L., Mora P., Dutailly B., Tournon-Valiente S., Granier X.: 3D-ARD: A 3d-acquired research dataset, June 2020.",
16-
// },
17-
// ];
1812
const references: any[] = [];
1913

2014
const ref = (id: number) => (
@@ -63,13 +57,12 @@ const Informations: React.FC = () => {
6357
{ index: 3, name: "CNRS, Université Claude Bernard Lyon 1, INSA Lyon, LIRIS, France" },
6458
];
6559

66-
// const authors = [
67-
// { name: "Submission id: 1001", affiliationIndex: [] },
68-
// ];
69-
70-
// const affiliations: any[] = [
71-
// // { index: 1, name: "" },
72-
// ];
60+
const resources = [
61+
{ label: "HAL", url: "https://hal.science/hal-05515309v1" },
62+
{ label: "PDF Download", url: "https://hal.science/hal-05515309v1/file/2026-Arnal-EG-survey.pdf"},
63+
{ label: "DOI", url: "https://dx.doi.org/10.1111/cgf.70394" },
64+
{ label: "Code", url: "https://github.com/STORM-IRIT/pcloud-differential-estimation-benchmark" },
65+
];
7366

7467
const abstract = (
7568
<>
@@ -120,6 +113,20 @@ const abstract = (
120113
))}
121114
</div>
122115

116+
<div className="flex flex-wrap justify-center gap-3 mt-1">
117+
{resources.map((resource, idx) => (
118+
<a
119+
key={idx}
120+
href={resource.url}
121+
target="_blank"
122+
rel="noopener noreferrer"
123+
className="text-sm font-medium text-blue-600 hover:text-blue-800 hover:underline transition-colors duration-200"
124+
>
125+
[{resource.label}]
126+
</a>
127+
))}
128+
</div>
129+
123130
<Separator />
124131

125132
<Card className="shadow-sm border border-gray-200">

0 commit comments

Comments
 (0)