Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 20 additions & 13 deletions frontend/app/tabs/Informations.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@ const isStatic: boolean = process.env.STATIC_BUILD === 'true';
const repoName: string = 'pcloud-differential-estimation-benchmark-website';


// const references = [
// {
// id: 1,
// 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.",
// },
// ];
const references: any[] = [];

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

// const authors = [
// { name: "Submission id: 1001", affiliationIndex: [] },
// ];

// const affiliations: any[] = [
// // { index: 1, name: "" },
// ];
const resources = [
{ label: "HAL", url: "https://hal.science/hal-05515309v1" },
{ label: "PDF Download", url: "https://hal.science/hal-05515309v1/file/2026-Arnal-EG-survey.pdf"},
{ label: "DOI", url: "https://dx.doi.org/10.1111/cgf.70394" },
{ label: "Code", url: "https://github.com/STORM-IRIT/pcloud-differential-estimation-benchmark" },
];

const abstract = (
<>
Expand Down Expand Up @@ -120,6 +113,20 @@ const abstract = (
))}
</div>

<div className="flex flex-wrap justify-center gap-3 mt-1">
{resources.map((resource, idx) => (
<a
key={idx}
href={resource.url}
target="_blank"
rel="noopener noreferrer"
className="text-sm font-medium text-blue-600 hover:text-blue-800 hover:underline transition-colors duration-200"
>
[{resource.label}]
</a>
))}
</div>

<Separator />

<Card className="shadow-sm border border-gray-200">
Expand Down
Loading