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
2 changes: 1 addition & 1 deletion src/components/Shared.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const Shared: React.FC<SharedProps> = ({link, speakerName}) => {
if (navigator.share) {
await navigator.share({
title: `Speaker: ${speakerName}`,
text: "¡Mira este speaker!",
text: "¡Mira este speaker de Posadev 2025!",
url: link,
});
} else {
Expand Down
4 changes: 2 additions & 2 deletions src/components/SpeakerInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ const SpeakerInfo = () => {

return (
<Gradient className="py-10 px-4 md:px-20" >
<article className="flex flex-col gap-8">
<Card className="flex flex-col justify-center items-center md:flex-row gap-6 border-0 shadow-none text-primary-600">
<article className="flex flex-col gap-8 w-full">
<Card className="flex flex-col justify-center items-center md:justify-start md:flex-row gap-6 border-0 shadow-none text-primary-600">
<img src={currentSpeaker.profilePicture} alt={currentSpeaker.fullName} className="w-60 h-60 rounded-xl"/>
<div className="flex flex-col gap-2">
<h1 className="text-2xl font-bold text-alternative-700">{currentSpeaker.fullName}</h1>
Expand Down