Skip to content

Commit

Permalink
Merge pull request #30 from dharamveergit/main
Browse files Browse the repository at this point in the history
fix: font
  • Loading branch information
HoomanDgtl authored Oct 9, 2024
2 parents 61b0174 + 0416195 commit 4d6ebbf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Binary file modified public/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/footer/footer-link.astro
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const { link, "aria-label": ariaLabel, id } = Astro.props;
<a
id={id}
aria-label={`${ariaLabel ?? "footer link"}`}
class="text-decoration-none text-linkText"
class="text-decoration-none font-normal text-linkText"
target={link ? (link.startsWith("http") ? "_blank" : "_self") : "_self"}
href={link}
>
Expand Down
4 changes: 2 additions & 2 deletions src/components/home/aiModelsAndApps/card.astro
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const { card } = Astro.props;
<h3 class="text-2xl font-medium">{card.title}</h3>

<p
class={`mt-6 text-sm font-medium text-linkText md:mt-5 `}
class={`mt-6 text-sm text-linkText md:mt-5 `}
set:html={card.description}
/>
</div>
Expand Down Expand Up @@ -142,7 +142,7 @@ const { card } = Astro.props;
<h3 class="text-2xl font-semibold">{card.title}</h3>

<p
class={`mt-6 text-sm font-medium text-linkText md:mt-5 `}
class={`mt-6 text-sm text-linkText md:mt-5 `}
set:html={card.description}
/>
</div>
Expand Down

0 comments on commit 4d6ebbf

Please sign in to comment.