Skip to content
Merged
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
9 changes: 6 additions & 3 deletions src/app/conf/2026/components/sponsors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,22 @@ interface Sponsor {
const sponsorPlatinum: Sponsor[] = [
{
icon: (props: React.HTMLAttributes<HTMLDivElement>) => (
<div {...props} className={clsx(props.className, "relative size-full")}>
<div
{...props}
className={clsx(props.className, "relative aspect-video flex-shrink-0")}
>
<img
src={
new URL("/public/img/conf/Sponsors/Meta.svg", import.meta.url).href
}
className="absolute inset-0 size-full object-cover dark:hidden"
className="absolute inset-0 size-full object-contain dark:hidden"
/>
<img
src={
new URL("/public/img/conf/Sponsors/Meta-dark.svg", import.meta.url)
.href
}
className="absolute inset-0 hidden size-full object-cover dark:block"
className="absolute inset-0 hidden size-full object-contain dark:block"
/>
</div>
),
Expand Down
Loading