@@ -9,12 +9,6 @@ const isStatic: boolean = process.env.STATIC_BUILD === 'true';
99const 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- // ];
1812const 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
7467const 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