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
1 change: 0 additions & 1 deletion src/components/Speaker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import {ISpeaker} from "@/types/speakers.ts";
import {Card} from "@/components/ui/card.tsx";
import SocialMedia from "@/components/SocialMedia.tsx";
import {useNavigate} from "react-router-dom";
import {scrollToTop} from "@/lib/utils.ts";

interface SpeakerProps {
speaker: ISpeaker;
Expand Down
4 changes: 2 additions & 2 deletions src/components/SpeakerInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ const SpeakerInfo = () => {
}, []);

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