diff --git a/app/(home)/ShowcaseItem.tsx b/app/(home)/ShowcaseItem.tsx index ea4ec25..9b24348 100644 --- a/app/(home)/ShowcaseItem.tsx +++ b/app/(home)/ShowcaseItem.tsx @@ -1,4 +1,4 @@ -import Image, { StaticImageData } from "next/image"; +import Image, { type StaticImageData } from "next/image"; import { ExternalLink } from "lucide-react"; export interface ShowcaseItemProps { @@ -6,7 +6,7 @@ export interface ShowcaseItemProps { website?: string; appstore?: string; playstore?: string; - logo: StaticImageData; + logo: StaticImageData | string; description: string; } @@ -15,25 +15,32 @@ export default function ShowcaseItem({ name, website, appstore, playstore, logo,
- {`${name} + {name}

{description}

{website && ( - - {website} - + + {website} + )}
{playstore && ( - + )} {appstore && ( - + )} @@ -55,4 +62,4 @@ function PlayStoreIcon(props: React.SVGProps) { return ( Google Play ); -} \ No newline at end of file +} diff --git a/app/(home)/TestimonialsSection.tsx b/app/(home)/TestimonialsSection.tsx index bf1b7ec..6980054 100644 --- a/app/(home)/TestimonialsSection.tsx +++ b/app/(home)/TestimonialsSection.tsx @@ -15,7 +15,7 @@ export default function TestimonialsSection({ <> -
{children} @@ -25,7 +25,7 @@ export default function TestimonialsSection({
)}
-