Skip to content

Commit

Permalink
fix: fix <TeaserCard> link (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahgm authored Jun 18, 2024
1 parent 0b05889 commit d7bc734
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TeaserCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export interface TeaserCardProps {
}

export const TeaserCard = ({ href, icon, title, caption }: TeaserCardProps) => (
<Link className="flex no-underline" href={href}>
<Link className="flex no-underline" to={href}>
<Card variant="hovering" p={6}>
<Stack space={2}>
<div className="grid size-12 place-items-center rounded-full bg-bg-muted p-2">
Expand Down

0 comments on commit d7bc734

Please sign in to comment.