feat: update font weight from light to normal

This commit is contained in:
Emil Gulamov 2024-11-06 22:05:18 +04:00
parent 381db851e4
commit a08344a8a8
4 changed files with 4 additions and 4 deletions

View file

@ -33,7 +33,7 @@ type Stat = {
<!-- Subtitle --> <!-- Subtitle -->
{subTitle && {subTitle &&
<p <p
class="mb-16 max-w-prose text-pretty font-light text-neutral-600 dark:text-neutral-400 sm:text-xl" class="mb-16 max-w-prose text-pretty font-normal text-neutral-600 dark:text-neutral-400 sm:text-xl"
> >
{subTitle} {subTitle}
</p> </p>

View file

@ -39,7 +39,7 @@ interface Props {
</h2> </h2>
<!-- The subtitle of the section --> <!-- The subtitle of the section -->
<p <p
class="mb-4 max-w-prose text-pretty font-light text-neutral-600 dark:text-neutral-400 sm:text-lg" class="mb-4 max-w-prose text-pretty font-normal text-neutral-600 dark:text-neutral-400 sm:text-lg"
> >
{subTitle} {subTitle}
</p> </p>

View file

@ -27,7 +27,7 @@ interface Props {
</h1> </h1>
<!-- Section subtitle --> <!-- Section subtitle -->
<p <p
class="mb-8 max-w-prose text-pretty font-light text-neutral-600 dark:text-neutral-400 sm:text-xl" class="mb-8 max-w-prose text-pretty font-normal text-neutral-600 dark:text-neutral-400 sm:text-xl"
> >
{subTitle} {subTitle}
</p> </p>

View file

@ -42,7 +42,7 @@ interface Props {
</h2> </h2>
<!-- Subtitle of the section --> <!-- Subtitle of the section -->
<p <p
class="mb-4 max-w-prose text-pretty font-light text-neutral-600 dark:text-neutral-400 sm:text-lg" class="mb-4 max-w-prose text-pretty font-normal text-neutral-600 dark:text-neutral-400 sm:text-lg"
> >
{subTitle} {subTitle}
</p> </p>