Skip to content

Commit f52232a

Browse files
committed
fix: fonts
1 parent 6aa7f32 commit f52232a

File tree

8 files changed

+10
-12
lines changed

8 files changed

+10
-12
lines changed

app/(marketing)/[...slug]/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export default async function PagePage({ params }: PageProps) {
8484
return (
8585
<article className="container max-w-3xl py-6 lg:py-12">
8686
<div className="space-y-4">
87-
<h1 className="inline-block font-heading text-4xl font-extrabold lg:text-5xl">
87+
<h1 className="inline-block font-heading text-4xl lg:text-5xl">
8888
{page.title}
8989
</h1>
9090
{page.description && (

app/(marketing)/blog/[...slug]/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ export default async function PostPage({ params }: PostPageProps) {
114114
Published on {formatDate(post.date)}
115115
</time>
116116
)}
117-
<h1 className="mt-2 inline-block font-heading text-4xl font-extrabold leading-tight lg:text-5xl">
117+
<h1 className="mt-2 inline-block font-heading text-4xl leading-tight lg:text-5xl">
118118
{post.title}
119119
</h1>
120120
{authors?.length ? (

app/(marketing)/blog/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default async function BlogPage() {
2020
<div className="container max-w-4xl py-6 lg:py-10">
2121
<div className="flex flex-col items-start gap-4 md:flex-row md:justify-between md:gap-8">
2222
<div className="flex-1 space-y-4">
23-
<h1 className="inline-block font-heading text-4xl font-extrabold tracking-tight lg:text-5xl">
23+
<h1 className="inline-block font-heading text-4xl tracking-tight lg:text-5xl">
2424
Blog
2525
</h1>
2626
<p className="text-xl text-muted-foreground">

app/(marketing)/page.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export default async function IndexPage() {
4545
>
4646
Follow along on Twitter
4747
</Link>
48-
<h1 className="font-heading text-3xl font-bold sm:text-5xl md:text-6xl lg:text-7xl">
48+
<h1 className="font-heading text-3xl sm:text-5xl md:text-6xl lg:text-7xl">
4949
An example app built using Next.js 13 server components.
5050
</h1>
5151
<p className="max-w-[42rem] leading-normal text-muted-foreground sm:text-xl sm:leading-8">
@@ -72,7 +72,7 @@ export default async function IndexPage() {
7272
className="container space-y-6 bg-slate-50 py-8 dark:bg-transparent md:py-12 lg:py-24"
7373
>
7474
<div className="mx-auto flex max-w-[58rem] flex-col items-center space-y-4 text-center">
75-
<h2 className="font-heading text-3xl font-bold leading-[1.1] sm:text-3xl md:text-6xl">
75+
<h2 className="font-heading text-3xl leading-[1.1] sm:text-3xl md:text-6xl">
7676
Features
7777
</h2>
7878
<p className="max-w-[85%] leading-normal text-muted-foreground sm:text-lg sm:leading-7">
@@ -177,7 +177,7 @@ export default async function IndexPage() {
177177
</section>
178178
<section id="open-source" className="container py-8 md:py-12 lg:py-24">
179179
<div className="mx-auto flex max-w-[58rem] flex-col items-center justify-center gap-4 text-center">
180-
<h2 className="font-heading text-3xl font-bold leading-[1.1] sm:text-3xl md:text-6xl">
180+
<h2 className="font-heading text-3xl leading-[1.1] sm:text-3xl md:text-6xl">
181181
Proudly Open Source
182182
</h2>
183183
<p className="max-w-[85%] leading-normal text-muted-foreground sm:text-lg sm:leading-7">

app/(marketing)/pricing/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default function PricingPage() {
1212
return (
1313
<section className="container flex flex-col gap-6 py-8 md:max-w-[64rem] md:py-12 lg:py-24">
1414
<div className="mx-auto flex w-full flex-col gap-4 md:max-w-[58rem]">
15-
<h2 className="font-heading text-3xl font-bold leading-[1.1] sm:text-3xl md:text-6xl">
15+
<h2 className="font-heading text-3xl leading-[1.1] sm:text-3xl md:text-6xl">
1616
Simple, transparent pricing
1717
</h2>
1818
<p className="max-w-[85%] leading-normal text-muted-foreground sm:text-lg sm:leading-7">

components/header.tsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ export function DashboardHeader({
1212
return (
1313
<div className="flex items-center justify-between px-2">
1414
<div className="grid gap-1">
15-
<h1 className="font-heading text-3xl font-bold md:text-4xl">
16-
{heading}
17-
</h1>
15+
<h1 className="font-heading text-3xl md:text-4xl">{heading}</h1>
1816
{text && <p className="text-lg text-muted-foreground">{text}</p>}
1917
</div>
2018
{children}

components/mobile-nav.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export function MobileNav({ items, children }: MobileNavProps) {
2121
"fixed inset-0 top-16 z-50 grid h-[calc(100vh-4rem)] grid-flow-row auto-rows-max overflow-auto p-6 pb-32 shadow-md animate-in slide-in-from-bottom-80 md:hidden"
2222
)}
2323
>
24-
<div className="relative z-20 grid gap-6 rounded-md bg-white p-4 shadow-md">
24+
<div className="relative z-20 grid gap-6 rounded-md bg-popover p-4 text-popover-foreground shadow-md">
2525
<Link href="/" className="flex items-center space-x-2">
2626
<Icons.logo />
2727
<span className="font-bold">{siteConfig.name}</span>

components/page-header.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export function DocsPageHeader({
1414
return (
1515
<>
1616
<div className={cn("space-y-4", className)} {...props}>
17-
<h1 className="inline-block font-heading text-4xl font-black lg:text-5xl">
17+
<h1 className="inline-block font-heading text-4xl lg:text-5xl">
1818
{heading}
1919
</h1>
2020
{text && <p className="text-xl text-muted-foreground">{text}</p>}

0 commit comments

Comments
 (0)