Skip to content

Commit 305876e

Browse files
committed
pubs
1 parent b80ca51 commit 305876e

321 files changed

Lines changed: 19655 additions & 11726 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintrc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "next/core-web-vitals"
3+
}

app/courses/page.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ export default function Tools(props) {
3636
{courses.map(({title, title_es, subtitle, description_en, description_es, date, edition, route}, key) => {
3737
return (
3838
<CourseCard
39-
// key={key}
40-
title = {title}
41-
title_es = {title_es}
39+
key={key}
40+
title = {title}
41+
title_es = {title_es}
4242
subtitle = {subtitle}
4343
description_en = {description_en}
4444
description_es = {description_es}

components/ui/Text.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import React from "react";
44
import clsx from "clsx";
55

6-
/*
6+
/*
77
------------------------------------------------------------------
88
Componente para los titulos y etiquetas <h> -> jerarquías de texto // para esto se usa el Heading, este para bloques de texto
99
------------------------------------------------------------------
@@ -41,5 +41,6 @@ const Text = React.forwardRef(({ type = "p", children, className, ...props }, re
4141

4242
return <Component ref={ref} className={classes} {...props}>{children}</Component>;
4343
});
44+
Text.displayName = "Text";
4445

4546
export default Text;

constants/publications.bib

Lines changed: 93 additions & 67 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)