Skip to content

Commit

Permalink
Merge pull request #390 from HoomanDgtl/main
Browse files Browse the repository at this point in the history
fix: fonts in pricing and blog
  • Loading branch information
HoomanDgtl authored Oct 12, 2024
2 parents 008e6aa + 210daad commit 80d9d47
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions src/components/pricing-page/gpus/gpu-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -353,14 +353,14 @@ export const Tables = ({
<HoverCardContent align="center">
<div className="flex flex-col">
<div className="flex flex-col px-4 py-3">
<h1 className="text-sm font-medium text-black dark:text-white">
<h2 className="text-sm font-medium text-black dark:text-white">
{model?.providerAvailability?.available || 0}{" "}
{model?.providerAvailability?.available > 1
? "providers"
: "provider"}
<br />
offering this model:
</h1>
</h2>
<div className="border-1 mt-3 rounded-md bg-[#F1F1F1] px-4 py-3 dark:bg-background ">
<div className="flex items-center justify-between gap-2 border-b border-[#E4E4E7] pb-2 dark:border-defaultBorder">
<p className="text-4 text-base font-semibold text-foreground">
Expand All @@ -372,17 +372,17 @@ export const Tables = ({
</div>
<div className="mt-2 flex items-center justify-between gap-2">
<div className="flex flex-col items-center justify-center gap-1">
<h1 className="text-sm text-[#71717A] dark:text-para">
<h3 className="text-sm text-[#71717A] dark:text-para">
Max:{" "}
<span>{price(model?.price?.max)}/hr</span>
</h1>
</h3>
</div>
<div className="">-</div>
<div className="flex flex-col items-center justify-center gap-1">
<h1 className="text-sm text-[#71717A] dark:text-para">
<h3 className="text-sm text-[#71717A] dark:text-para">
Min:{" "}
<span>{price(model?.price?.min)}/hr</span>
</h1>
</h3>
</div>
</div>
</div>
Expand Down Expand Up @@ -525,14 +525,14 @@ export const Tables = ({
<HoverCardContent align="center">
<div className="flex flex-col">
<div className="flex flex-col px-4 py-3">
<h1 className="text-sm font-medium text-black dark:text-white">
<h2 className="text-sm font-medium text-black dark:text-white">
{model?.providerAvailability?.available || 0}{" "}
{model?.providerAvailability?.available > 1
? "providers"
: "provider"}
<br />
offering this model:
</h1>
</h2>
<div className="border-1 mt-3 rounded-md bg-[#F1F1F1] px-4 py-3 dark:bg-background ">
<div className="flex items-center justify-between gap-2 border-b border-[#E4E4E7] pb-2 dark:border-defaultBorder">
<p className="text-4 text-base font-semibold text-black dark:text-white">
Expand All @@ -544,17 +544,17 @@ export const Tables = ({
</div>
<div className="mt-2 flex items-center justify-between gap-2">
<div className="flex flex-col items-center justify-center gap-1">
<h1 className="text-sm text-[#71717A] dark:text-para">
<h3 className="text-sm text-[#71717A] dark:text-para">
Max:{" "}
<span>{price(model?.price?.max)}/hr</span>
</h1>
</h3>
</div>
<div className="">-</div>
<div className="flex flex-col items-center justify-center gap-1">
<h1 className="text-sm text-[#71717A] dark:text-para">
<h3 className="text-sm text-[#71717A] dark:text-para">
Min:{" "}
<span>{price(model?.price?.min)}/hr</span>
</h1>
</h3>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/blog/[slug].astro
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const { Content } = await post.render();
</span>
</p>

<h1 class="mt-4 text-3xl md:mt-[18px] md:text-4xl lg:text-5xl">
<h1 class="mt-4 font-sans text-3xl md:mt-[18px] md:text-4xl lg:text-5xl">
{post.data.title}
</h1>

Expand Down

0 comments on commit 80d9d47

Please sign in to comment.