-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add: BioProfile component, Keynotes Speakers and Poets sections added
- Loading branch information
1 parent
d137f18
commit 5c49eef
Showing
11 changed files
with
117 additions
and
7 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<script> | ||
export let name; | ||
export let description; | ||
export let img; | ||
</script> | ||
|
||
<div class="flex flex-col"> | ||
<img class="w-full h-60 object-cover" src={img} alt={name}> | ||
<p class="text-2xl font-semibold">{name}</p> | ||
<p class="text-lg">{description}</p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
import Layout from "../layouts/Layout.astro"; | ||
import BioProfile from "./BioProfile.svelte"; | ||
import { getI18N } from "../i18n"; | ||
const { currentLocale = "es" } = Astro; | ||
const i18n = getI18N(currentLocale); | ||
--- | ||
|
||
<Layout title={i18n.header.schedule}> | ||
<div class="flex flex-col items-center gap-20 mx-auto my-10 lg:my-20 w-[95%] lg:w-[65%]"> | ||
<div class="flex flex-col gap-5"> | ||
<h1 class="mb-5 text-3xl sm:text-4xl font-semibold">{i18n.schedule.keynotes_speakers.title}</h1> | ||
<BioProfile name="Plinio Barbosa" description={i18n.schedule.keynotes_speakers.description.plinio_barbosa} img="/"/> | ||
<BioProfile name="Charles Bernstein" description={i18n.schedule.keynotes_speakers.description.charles_bernstein} img="/"/> | ||
<BioProfile name="Stefan Blohm" description={i18n.schedule.keynotes_speakers.description.stefan_blohm} img="/"/> | ||
</div> | ||
|
||
<div class="flex flex-col gap-5"> | ||
<h1 class="mb-5 text-3xl sm:text-4xl font-semibold">{i18n.schedule.poets.title}</h1> | ||
<BioProfile name="Klaura Anchio" description={i18n.schedule.poets.description.klaura_anchio} img="/"/> | ||
<BioProfile name="Estefania Cabello" description={i18n.schedule.poets.description.estefania_cabello} img="/"/> | ||
<BioProfile name="Miguel Rodriguez" description={i18n.schedule.poets.description.miguel_rodriguez} img="/"/> | ||
<BioProfile name="Rafael Rubio" description={i18n.schedule.poets.description.rafael_rubio} img="/"/> | ||
</div> | ||
</div> | ||
</Layout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.