Skip to content

Commit

Permalink
Fix logo
Browse files Browse the repository at this point in the history
  • Loading branch information
midudev committed Sep 4, 2023
1 parent 5f5837e commit cbf165f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/sections/sponsors.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { cn } from '@/lib/utils'
import Marquee from '@/components/magicui/Marquee'
import { DonDominio } from '@/components/logos/dondominio'
import { ReactNode } from 'react'

const reviews = [
{
Expand Down Expand Up @@ -157,7 +158,15 @@ const reviews = [
}
]

const ReviewCard = ({ logo, name, link }: { logo: string; name: string; link: string }) => {
const ReviewCard = ({
logo,
name,
link
}: {
logo: string | ReactNode
name: string
link: string
}) => {
return (
<a
href={link}
Expand Down

0 comments on commit cbf165f

Please sign in to comment.