diff --git a/2023/_buildwithastro/src/components/Speakers.astro b/2023/_buildwithastro/src/components/Speakers.astro index b84ca0f..4e8a59b 100644 --- a/2023/_buildwithastro/src/components/Speakers.astro +++ b/2023/_buildwithastro/src/components/Speakers.astro @@ -1,49 +1,42 @@ --- interface Props { - speakers: [{ - name: String, - img: String, - user: String, - link: String, - bio: String - }] + speakers: [ + { + name: String; + img: String; + user: String; + link: String; + bio: String; + }, + ]; } const { speakers } = Astro.props; ---
-
-

Palestrantes

+
+

Palestrantes

-
    - {speakers.map((data) =>
  • -
    - {data.name} -
    -
    -

    - {data.name} -

    - - {data.user} - -

    - {data.bio} -

    -
    -
  • - )} -
-
+ +
\ No newline at end of file +