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/Speaker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const Speaker: React.FC<SpeakerProps> = ({speaker}) => {
return (
<article className="h-full w-full mx-1 flex flex-col justify-center items-center">
<img src={speaker.profilePicture} alt={speaker.fullName} className="h-60 w-60 rounded-3xl" loading="lazy"/>
<Card className="bg-white/10 border-0 shadow-none text-white flex flex-col justify-start gap-4 h-52 p-6 w-[400px]">
<Card className="bg-white/10 border-0 shadow-none text-white flex flex-col justify-start gap-4 h-52 p-6 w-full max-w-[400px]">
<p className="text-2xl font-bold">{`${speaker.firstName.split(" ")[0]} ${speaker.lastName.split(" ")[0]}`}</p>
<p className="my-2 text-xl break-words line-clamp-2 overflow-hidden flex-shrink-0 rounded">{speaker.tagLine}</p>
<div className="flex h-full justify-self-end items-end justify-start gap-6 md:gap-2 lg:gap-4 text-alternative-100">
Expand Down
2 changes: 1 addition & 1 deletion src/components/communities/CommunitiesAllies.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const CommunitiesAllies = () => {
<Adorno className="hidden md:block"/>
</h2>
<span className="w-28 h-1 bg-gradient-to-r from-posadev-darkPink to-posadev-brightPink mx-auto my-8 rounded-full "/>
<div className="flex flex-col flex-wrap md:flex-row justify-center gap-10 w-full">
<div className="flex flex-col flex-wrap flex-grow md:flex-row justify-center gap-10 w-full">
{
communitiesAllies.map((community) => (
<CommunityAlly key={community.name} community={community} />
Expand Down
2 changes: 1 addition & 1 deletion src/components/communities/CommunityAlly.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface CommunityAllyProps {

const CommunityAlly: React.FC<CommunityAllyProps> = ({community}) => {
return (
<article className="h-60 md:w-1/4 flex flex-col justify-center items-center gap-4">
<article className="h-60 lg:w-1/4 flex flex-col justify-center items-center gap-4">
<div className="border-0 bg-transparent shadow-none h-52 w-[300px]">
<a href={community.link} target="_blank">
<img
Expand Down
8 changes: 8 additions & 0 deletions src/data/sponsors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import zillow from "@/img/sponsors/zillow.png"
import howdy from "@/img/sponsors/howdy.png"
import koch from "@/img/sponsors/Koch.png"
import akamai from "@/img/sponsors/akamai.png"
import sps from "@/img/sponsors/sps.png"

export const sponsors: Array<ISponsor> = [
{
Expand Down Expand Up @@ -32,5 +33,12 @@ export const sponsors: Array<ISponsor> = [
image: akamai,
isPaid: true,
type: "gold"
},
{
id: "sponsor-5",
name: "SPS",
image: sps,
isPaid: true,
type: "bronze"
}
]
Binary file added src/img/sponsors/sps.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.