Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Partners page headings font #2766

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/pages/partners/calculator/calculator.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const Calculator = () => (
<section className="calculator safe-paddings mt-36 lg:mt-20 md:mt-12">
<Container className="flex flex-col items-center justify-center" size="xxs">
<GradientLabel>Calculator</GradientLabel>
<h2 className="mt-4 text-center text-[48px] font-medium leading-none tracking-extra-tight lg:text-4xl sm:text-[36px]">
<h2 className="mt-4 text-center font-title text-[48px] font-medium leading-none tracking-extra-tight lg:text-4xl sm:text-[36px]">
Platform Builder
</h2>
<UseCaseCalculator />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const Integration = () => (
<section className="integration safe-paddings mt-48 2xl:mt-36 lg:mt-28 md:mt-20">
<Container className="flex flex-col items-center" size="medium">
<GradientLabel>Features</GradientLabel>
<h2 className="mt-4 text-center text-[48px] font-medium leading-none tracking-extra-tight lg:text-4xl sm:text-[36px]">
<h2 className="mt-4 text-center font-title text-[48px] font-medium leading-none tracking-extra-tight lg:text-4xl sm:text-[36px]">
Why Neon
</h2>
<p className="mt-3 text-center text-lg font-light leading-snug sm:text-base">
Expand Down
2 changes: 1 addition & 1 deletion src/components/pages/partners/integration/row/row.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const Row = ({
: 'order-1 col-start-7 translate-x-10 justify-self-start pr-10 lg:order-none lg:translate-x-0 lg:justify-self-stretch lg:pr-0'
)}
>
<h3 className="text-4xl font-medium leading-tight tracking-tighter xl:text-[28px] lg:text-[24px] md:text-[22px]">
<h3 className="font-title text-4xl font-medium leading-tight tracking-tighter xl:text-[28px] lg:text-[24px] md:text-[22px]">
{title}
</h3>
<p className="mt-2.5 text-lg font-light leading-snug xl:text-base lg:mt-2">{description}</p>
Expand Down