Skip to content
Merged
Show file tree
Hide file tree
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
Binary file added public/images/avatar/jesus-mena.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/avatar/juan-velasquez.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/avatar/mateo-usme.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/avatar/veruzka-borges.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/avatar/yurley-sanchez.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions public/images/flags/flag-bo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions public/images/flags/flag-ca.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions public/images/flags/flag-cl.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions public/images/flags/flag-co.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions public/images/flags/flag-ec.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions public/images/flags/flag-gt.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions public/images/flags/flag-mx.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions public/images/flags/flag-pe.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions public/images/flags/flag-uy.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions public/images/flags/flag-ve.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions public/images/flags/flag-world.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
108 changes: 108 additions & 0 deletions src/app/(pages)/team/[slug]/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
import type { Metadata } from "next";
import { notFound } from "next/navigation";

import CTASection from "@/components/blocks/cta/cta";
import TeamMemberDetail from "@/components/blocks/team/team-member-detail";
import SectionSeparator from "@/components/section-separator";
import { STATIC_PRERENDER_LOCALE } from "@/lib/site-locale-constants";
import { siteMessages } from "@/lib/site-messages";
import { getSiteUrl, webPageJsonLd, websiteJsonLd } from "@/lib/site-seo";
import { getAllTeamMemberSlugs, getTeamMemberBySlug } from "@/lib/team";
import {
buildTeamMemberJsonLd,
buildTeamMemberPageMetadata,
getTeamMemberShareImageUrl,
} from "@/lib/team-seo";

export async function generateStaticParams() {
return getAllTeamMemberSlugs().map((slug) => ({ slug }));
}

export async function generateMetadata({
params,
}: {
params: Promise<{ slug: string }>;
}): Promise<Metadata> {
const { slug } = await params;

return buildTeamMemberPageMetadata(slug, STATIC_PRERENDER_LOCALE);
}

export const dynamicParams = false;

const TeamMemberSlugPage = async ({
params,
}: {
params: Promise<{ slug: string }>;
}) => {
const { slug } = await params;

const member = getTeamMemberBySlug(slug);

if (!member) {
notFound();
}

const messages = siteMessages[STATIC_PRERENDER_LOCALE];
const memberUrl = `${getSiteUrl()}/team/${slug}`;
const shareImageUrl = getTeamMemberShareImageUrl(slug);
const personJsonLd = buildTeamMemberJsonLd(slug, memberUrl);

const jsonLd = {
"@context": "https://schema.org",
"@graph": [
websiteJsonLd(),
webPageJsonLd({
name: `${member.name} — ${messages.pageMeta.team.title}`,
description: messages.pageMeta.team.description,
url: memberUrl,
image: shareImageUrl,
}),
...(personJsonLd ? [personJsonLd] : []),
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
itemListElement: [
{
"@type": "ListItem",
position: 1,
name: messages.nav.home,
item: `${getSiteUrl()}/`,
},
{
"@type": "ListItem",
position: 2,
name: messages.nav.team,
item: `${getSiteUrl()}/team`,
},
{
"@type": "ListItem",
position: 3,
name: member.name,
item: memberUrl,
},
],
},
],
};

return (
<>
<TeamMemberDetail slug={slug} />

<SectionSeparator />

<CTASection />

<script
type="application/ld+json"
/* biome-ignore lint/security/noDangerouslySetInnerHtml: JSON-LD is static structured data */
dangerouslySetInnerHTML={{
__html: JSON.stringify(jsonLd).replace(/</g, "\\u003c"),
}}
/>
</>
);
};

export default TeamMemberSlugPage;
2 changes: 2 additions & 0 deletions src/app/sitemap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import { getAllTalkFormatSlugs } from "@/lib/talk-formats";
import { getAllTalkLanguageSlugs } from "@/lib/talk-languages";
import { getAllTalkLevelSlugs } from "@/lib/talk-levels";
import { getAllTalkIds, getTalkHref } from "@/lib/talks";
import { getAllTeamMemberSlugs } from "@/lib/team";

export const dynamic = "force-static";

Expand All @@ -22,6 +23,7 @@ export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
"/press",
"/pricing",
"/team",
...getAllTeamMemberSlugs().map((slug) => `/team/${slug}`),
"/speakers",
"/keynotes",
...getAllKeynoteSlugs().map((slug) => `/keynotes/${slug}`),
Expand Down
33 changes: 22 additions & 11 deletions src/assets/data/schedule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ export const scheduleEvents: ScheduleEvent[] = [
displayTitle: "Provenance by Default: AI Media Pipelines in Python",
speaker: "Gonzalo Andrés Peña Castellanos",
label: "Artificial Intelligence",
language: ["ES"],
language: ["EN"],
},
{
id: "21",
Expand Down Expand Up @@ -509,7 +509,7 @@ export const scheduleEvents: ScheduleEvent[] = [
"Talk: De voz a acción: construyendo un asistente de IA con Python y Google Workspace",
displayTitle:
"De voz a acción: construyendo un asistente de IA con Python y Google Workspace",
speaker: "Juan Manuel Marín Bedoya / Juliana Suárez Ávila",
speaker: "Juliana Suárez Ávila / Juan Manuel Marín Bedoya",
label: "Artificial Intelligence",
language: ["ES"],
},
Expand Down Expand Up @@ -764,7 +764,7 @@ export const scheduleEvents: ScheduleEvent[] = [
"Workshop: Multi-Agent Teams in AI-Assisted Development: A Glimpse Into the Future of Programming",
displayTitle:
"Multi-Agent Teams in AI-Assisted Development: A Glimpse Into the Future of Programming",
speaker: "José Hernán Ortiz Ocampo / Daniel Sabogal / Isabel Mora",
speaker: "José Hernán Ortiz Ocampo / Daniel Sabogal",
talkKey: "multi-agent-teams-ai-dev",
label: "Artificial Intelligence",
language: ["EN"],
Expand Down Expand Up @@ -949,13 +949,24 @@ export const scheduleEvents: ScheduleEvent[] = [
},
{
id: "73",
type: "moment",
type: "session",
room: "Main Auditorium (Fundadores)",
hour: "14:00 - 14:30",
date: "2026-07-26",
title: "Lightning talks",
displayTitle: "Lightning talks",
speaker: "Lightning talks",
},
{
id: "73b",
type: "talk",
room: "Main Auditorium (Fundadores)",
hour: "14:00 - 15:00",
hour: "14:30 - 15:00",
date: "2026-07-26",
title: "Moment: TBD",
displayTitle: "TBD",
speaker: "TBD",
title: "Sponsor Space: Aimpoint",
displayTitle: "Sponsor Space: Aimpoint",
speaker: "Aimpoint",
label: "Sponsor Space",
},
{
id: "74",
Expand Down Expand Up @@ -985,9 +996,9 @@ export const scheduleEvents: ScheduleEvent[] = [
room: "Main Auditorium (Fundadores)",
hour: "16:30 - 17:00",
date: "2026-07-26",
title: "Sponsor Space: Aimpoint",
displayTitle: "Sponsor Space: Aimpoint",
speaker: "Aimpoint",
title: "Sponsor Space: Factored",
displayTitle: "Sponsor Space: Factored",
speaker: "Factored",
label: "Sponsor Space",
},
{
Expand Down
10 changes: 5 additions & 5 deletions src/assets/data/speakers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ const speakerList: SpeakerInput[] = [
tracks: ["artificial-intelligence", "machine-learning"],
github: "https://github.com/Davidnet",
linkedin: "https://www.linkedin.com/in/davidcardozo/",
country: "Canada",
country: "Colombia",
language: "English / Inglés",
level: "Beginner / Principiante",
},
Expand Down Expand Up @@ -155,7 +155,7 @@ const speakerList: SpeakerInput[] = [
tracks: ["artificial-intelligence", "devops"],
github: "https://github.com/emibelli",
linkedin: "https://www.linkedin.com/in/emibelli",
country: "Colombia",
country: "Venezuela",
language: "English / Inglés",
level: "Advanced / Avanzado",
},
Expand Down Expand Up @@ -262,7 +262,7 @@ const speakerList: SpeakerInput[] = [
github: "https://github.com/goanpeca",
linkedin: "https://www.linkedin.com/in/goanpeca",
country: "Colombia",
language: "Spanish / Español",
language: "English / Inglés",
level: "Intermediate / Intermedio",
},
{
Expand Down Expand Up @@ -298,7 +298,7 @@ const speakerList: SpeakerInput[] = [
tracks: ["core-python", "web"],
github: "https://github.com/kevteg",
linkedin: "https://www.linkedin.com/in/keeeevin/",
country: "Colombia",
country: "Venezuela",
language: "English / Inglés",
level: "Intermediate / Intermedio",
},
Expand Down Expand Up @@ -402,7 +402,7 @@ const speakerList: SpeakerInput[] = [
],
github: "https://github.com/astrogilda",
linkedin: "https://www.linkedin.com/in/sankalp-gilda/",
country: "United States",
country: "India",
language: "English / Inglés",
level: "Intermediate / Intermedio",
},
Expand Down
Loading
Loading