Skip to content

Commit

Permalink
fix: page title font
Browse files Browse the repository at this point in the history
  • Loading branch information
He1DAr committed Feb 26, 2025
1 parent 588c4a7 commit 6f0575f
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions src/app/_components/PageTitle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,7 @@ import { Heading, HeadingProps } from '../../ui/Heading';

export function PageTitle({ children, ...props }: { children: ReactNode } & HeadingProps) {
return (
<Heading
as="h1"
fontWeight={'medium'}
fontSize="4xl"
mb={0}
color={'slate.50'}
fontFamily={'var(--font-matter-mono)'}
{...props}
>
<Heading as="h1" fontWeight={'medium'} fontSize="4xl" mb={0} color={'slate.50'} {...props}>
{children}
</Heading>
);
Expand Down

0 comments on commit 6f0575f

Please sign in to comment.