Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update info and setup for the new devfest22 #4

Open
wants to merge 24 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
c40bdad
feat: update info and setup for the new devfest22
manuelalferez Sep 22, 2022
039670e
updated lecturers, mgerman description and added one sponsor logo
Oct 30, 2022
61a34fe
Merge pull request #1 from mgermanm0/feature/update-lecturers
manuelalferez Oct 31, 2022
de06bf0
added speakers
manuelalferez Nov 3, 2022
cc62c1f
feat(speakers): updated
manuelalferez Nov 4, 2022
6cd3842
adding more speakers and schedule
manuelalferez Nov 7, 2022
c8dba7d
updated schedule firt version
manuelalferez Nov 8, 2022
38c1fd2
small fix
manuelalferez Nov 8, 2022
3ccd176
added sponsors and updated speakers and schedule
manuelalferez Nov 9, 2022
a312ac7
added enriquesola talk. Fixed some typo. deleted marioezquerro until …
Nov 9, 2022
9e1935e
Merge pull request #2 from mgermanm0/master
manuelalferez Nov 10, 2022
35606a8
Merge pull request #1 from manuelalferez/master
mgermanm0 Nov 10, 2022
bf5a13e
added marioezquerro lecture
Nov 10, 2022
423547b
Merge pull request #3 from mgermanm0/master
manuelalferez Nov 10, 2022
6838942
changed olmodev desc.
Nov 10, 2022
e4ab070
changed olmodev desc.
Nov 10, 2022
0ecb3a3
Merge branch 'master' of github.com:mgermanm0/devfest-website-21
Nov 10, 2022
6405f1c
Merge pull request #4 from mgermanm0/master
manuelalferez Nov 10, 2022
602f8ea
buttons added for workshop registration
Nov 11, 2022
25c8d2e
Merge pull request #5 from mgermanm0/master
manuelalferez Nov 12, 2022
6142f9a
marioezquerro fixed wrong desc
Nov 15, 2022
e7d153e
Merge pull request #6 from mgermanm0/master
manuelalferez Nov 15, 2022
a325695
added mluque. Fixed typos
Nov 17, 2022
924aac1
Merge pull request #7 from mgermanm0/master
manuelalferez Nov 17, 2022
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
2 changes: 1 addition & 1 deletion components/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Anchor from "./elements/Anchor";

export default () => (
<Section skyline>
<Lead>DevFest 2021 organizado por</Lead>
<Lead>DevFest 2022 organizado por</Lead>
<h1 style={{ fontSize: "2.5em" }}>
<GDGLogo
alt="GDG"
Expand Down
6 changes: 3 additions & 3 deletions components/Layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ const Main = styled.main`
const Layout = (props) => (
<div>
<Head>
<title>DevFest GDG Jaén 2021</title>
<title>DevFest GDG Jaén 2022</title>
<meta
name="description"
content="El DevFest GDG Jaén 2021 es una gran conferencia multi-plataforma de carácter inclusivo para tod@s l@s developers. ¡El GDG te invita a unirte en Jaén, el 11 de Diciembre de 2021 en la Universidad de Jaén!"
content="El DevFest GDG Jaén 2022 es una gran conferencia multi-plataforma de carácter inclusivo para tod@s l@s developers. ¡El GDG te invita a unirte en Jaén, el 19 de Noviembre de 2022 en la Universidad de Jaén!"
/>
<meta name="viewport" content="initial-scale=1.0, width=device-width" />

Expand All @@ -32,7 +32,7 @@ const Layout = (props) => (
<meta name="twitter:title" content="DevFest GDG Jaén 2021" />
<meta
name="twitter:description"
content="El DevFest GDG Jaén 2021 es una gran conferencia multi-plataforma de carácter inclusivo para tod@s l@s developers. ¡El GDG te invita a unirte en Jaén, el 11 de Diciembre de 2021 en la Universidad de Jaén!"
content="El DevFest GDG Jaén 2022 es una gran conferencia multi-plataforma de carácter inclusivo para tod@s l@s developers. ¡El GDG te invita a unirte en Jaén, el 19 de Noviembre de 2022 en la Universidad de Jaén!"
/>
<meta name="twitter:creator" content="@GDG_NewOrleans" />
<meta
Expand Down
11 changes: 11 additions & 0 deletions components/Schedule.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import styled from "styled-components";
import Link from "next/link";
import theme from "./theme";
import AnchorButton from "./elements/AnchorButton";

const Article = styled.article`
display: grid;
Expand Down Expand Up @@ -47,6 +48,7 @@ const Event = ({
speakerId,
description,
htmlDescription,
formUrl,
}) => (
<Article>
<Time>{date}</Time>
Expand All @@ -60,6 +62,15 @@ const Event = ({
</Link>
)}
{!!description && <p>{description}</p>}
{!!formUrl && (
<AnchorButton
href={formUrl}
target="_blank"
rel="noopener noreferrer"
color="white/black"
>
Apúntate al taller
</AnchorButton>)}
{!!htmlDescription && (
<p dangerouslySetInnerHTML={{ __html: htmlDescription }}></p>
)}
Expand Down
9 changes: 9 additions & 0 deletions components/elements/AnchorButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,15 @@ const StyledButton = styled.a`
background-color: ${theme.colors.lightGrey};
}
`}
${(props) =>
props.color == "white/black" &&
css`
background-color: green;
color: black;
&:hover {
background-color: ${theme.colors.lightGreen};
}
`}
padding: 0.5em 1em;
text-decoration: none;
${(props) => {
Expand Down
1 change: 1 addition & 0 deletions components/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ export default {
greenLight: '#11b465',
blueExtraLight: '#e9f1fe',
lightGrey: '#eee',
black: "#FFFFFF"
}
}
77 changes: 47 additions & 30 deletions data/organizers.yml.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,44 @@
[
{
"id": "gomez",
"name": "Rafael Gómez",
"image": "https://ik.imagekit.io/gdgjaen/website/team/rafa_quWY42E3F.png",
"github": "rgomez96"
},
{
"id": "luque",
"name": "Mara Luque",
"image": "https://ik.imagekit.io/gdgjaen/team/maraProfile_eggNQNwNJ.jpeg?updatedAt=1633613774705",
"bio": "Futura ingeniera informática. Try Harder🔥👩🏼‍💻",
"twitter": "m4r4__"
"id": "checa",
"name": "Alberto Checa",
"image": "https://ik.imagekit.io/gdgjaen/website/team/albertoProfile_d6qn4mkuN.jpeg?updatedAt=1634029330999",
"bio": "Estudiante en Universidad de Jaén.",
"linkedin": "https://www.linkedin.com/in/alberto-checa-g%C3%B3mez-691101160"
},
{
"id": "alferez",
"name": "Manuel Alférez",
"image": "https://avatars.githubusercontent.com/u/38152841?v=4",
"bio": "I'm Manuel and I'm doing stuff with JavaScript, sharing code on GitHub and participating as a member of Google Developer Groups. Ask me about Open Source, hiking or just for a chat.",
"bio": "I'm a software developer and an open source enthusiast. I work as a Junior Solutions Engineer at Hubtype and participate as a member of Google Developer Groups. Ask me about Open Source, hiking, or just for a chat.",
"company": "Hubtype",
"github": "manuelalferez",
"twitter": "manuelalferez",
"website": "https://www.manuelalferez.com/",
"linkedin": "https://www.linkedin.com/in/manuelalferez"
},
{
"id": "german",
"name": "Manuel Germán",
"image": "https://media-exp1.licdn.com/dms/image/C4E03AQHfqCvbM4dIaQ/profile-displayphoto-shrink_200_200/0/1659251630921?e=1669248000&v=beta&t=gRHOCWHrPJQ9OFIHTCjSqlCRanLJ-kQrDtaJTeitjrE",
"bio": "¡Hola! Desde siempre me ha resultado curioso el funcionamiento de estos cachivaches llamados ordenadores. Esta curiosidad me llevó a graduarme recientemente como Ingeniero Informático. También colaboro con el grupo de investigación SiMiDat.",
"linkedin": "https://www.linkedin.com/in/mgermanm/",
"github": "mgermanm0",
"twitter": "mgermanm0"
},
{
"id": "gomez",
"name": "Rafael Gómez",
"image": "https://ik.imagekit.io/gdgjaen/website/team/rafa_quWY42E3F.png",
"github": "rgomez96"
},
{
"id": "honrubia",
"name": "José Honrubia",
"image": "https://media-exp1.licdn.com/dms/image/C4D03AQHD8Q7rY6gE1g/profile-displayphoto-shrink_800_800/0/1594379775090?e=1639008000&v=beta&t=Ozb942mT8i1Au3a8ju2glxDlTkkvLdwIdR29XPX7XuM",
"image": "https://media-exp1.licdn.com/dms/image/C4D03AQHmsf-8Xgq2cg/profile-displayphoto-shrink_200_200/0/1661809315192?e=1669248000&v=beta&t=1na33GFLwLSw-VHf0tyACIoVeZESInmLgHx92yPz70w",
"bio": "Electrical Engineer and Master in Industrial Engineer with leadership, hard-worker, teamwork and curiosity. Passionate about engineering, math, new energies and solving problems.",
"linkedin": "https://www.linkedin.com/in/jhonrubia"
},
{
"id": "rus",
"name": "Jose Manuel Rus",
"image": "https://ik.imagekit.io/gdgjaen/website/team/jose_wqvOdRja-1-.png",
"bio": "Estudiante de Ingeniería informática en la Universidad de Jaén. Actualmente, haciendo Erasmus+ en la universidad de Umea (Suecia). He participado además en IPD, Informática para el Desarrollo, un programa de voluntariado con el apoyo de la Universidad de Jaén donde entre otras cosas hemos realizado varias charlas en institutos.",
"linkedin": "https://www.linkedin.com/in/jose-manuel-rus-manj%C3%B3n-72682116b"
},

{
"id": "jesi",
"name": "Jesús Enrique",
Expand All @@ -46,22 +48,37 @@
"twitter": "jesi_rgb",
"website": "https://thinking-thoughts.vercel.app"
},
{
"id": "davidmartinez",
"name": "David Martinez",
"image": "https://ik.imagekit.io/gdgjaen/website/team/david_SuMxE4JH9.jpg?ik-sdk-version=javascript-1.4.3&updatedAt=1658315804749",
"bio": "Próximamente...",
"twitter": "ZeroFreyzer",
"github": "FreyzerFault"
},
{
"id": "rus",
"name": "Jose Manuel Rus",
"image": "https://ik.imagekit.io/gdgjaen/website/team/jose_wqvOdRja-1-.png",
"bio": "Estudiante de Ingeniería informática en la Universidad de Jaén. Actualmente, haciendo Erasmus+ en la universidad de Umea (Suecia). He participado además en IPD, Informática para el Desarrollo, un programa de voluntariado con el apoyo de la Universidad de Jaén donde entre otras cosas hemos realizado varias charlas en institutos.",
"linkedin": "https://www.linkedin.com/in/jose-manuel-rus-manj%C3%B3n-72682116b"
},
{
"id": "luque",
"name": "Mara Luque",
"image": "https://ik.imagekit.io/gdgjaen/team/maraProfile_eggNQNwNJ.jpeg?updatedAt=1633613774705",
"bio": "Futura ingeniera informática. Try Harder🔥👩🏼‍💻",
"twitter": "m4r4__"
},
{
"id": "abedraba",
"name": "Abdallah Abedraba",
"image": "https://avatars.githubusercontent.com/u/27779735?v=4",
"bio": "I'm Abdallah and I currently work as a Software Engineer at GreenMobility building cool electric cars sharing platform. Deeply passionate about innovation and communities, participating as a member of Google Developer Groups and previously working with the DevRel team at Google. Love statically typed programming languages, anything jazz, FOSS, hiking and really any movie.",
"company": "GreenMobility",
"bio": "I'm Abdallah and I work as a Product Lead @ Kubeshop. Deeply passionate about innovation and communities, participating as a member of Google Developer Groups and previously working with the DevRel team at Google. Love statically typed programming languages, anything jazz, FOSS, hiking and really any movie.",
"company": "Kubeshop",
"twitter": "aabedraba",
"github": "aabedraba",
"website": "https://aabedraba.com",
"linkedin": "https://www.linkedin.com/in/aabedraba"
},
{
"id": "checa",
"name": "Alberto Checa",
"image": "https://ik.imagekit.io/gdgjaen/website/team/albertoProfile_d6qn4mkuN.jpeg?updatedAt=1634029330999",
"bio": "Estudiante en Universidad de Jaén.",
"linkedin": "https://www.linkedin.com/in/alberto-checa-g%C3%B3mez-691101160"
}
]
Loading