File tree 8 files changed +10
-12
lines changed
8 files changed +10
-12
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ export default async function PagePage({ params }: PageProps) {
84
84
return (
85
85
< article className = "container max-w-3xl py-6 lg:py-12" >
86
86
< 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" >
88
88
{ page . title }
89
89
</ h1 >
90
90
{ page . description && (
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ export default async function PostPage({ params }: PostPageProps) {
114
114
Published on { formatDate ( post . date ) }
115
115
</ time >
116
116
) }
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" >
118
118
{ post . title }
119
119
</ h1 >
120
120
{ authors ?. length ? (
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ export default async function BlogPage() {
20
20
< div className = "container max-w-4xl py-6 lg:py-10" >
21
21
< div className = "flex flex-col items-start gap-4 md:flex-row md:justify-between md:gap-8" >
22
22
< 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" >
24
24
Blog
25
25
</ h1 >
26
26
< p className = "text-xl text-muted-foreground" >
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ export default async function IndexPage() {
45
45
>
46
46
Follow along on Twitter
47
47
</ 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" >
49
49
An example app built using Next.js 13 server components.
50
50
</ h1 >
51
51
< 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() {
72
72
className = "container space-y-6 bg-slate-50 py-8 dark:bg-transparent md:py-12 lg:py-24"
73
73
>
74
74
< 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" >
76
76
Features
77
77
</ h2 >
78
78
< 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() {
177
177
</ section >
178
178
< section id = "open-source" className = "container py-8 md:py-12 lg:py-24" >
179
179
< 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" >
181
181
Proudly Open Source
182
182
</ h2 >
183
183
< p className = "max-w-[85%] leading-normal text-muted-foreground sm:text-lg sm:leading-7" >
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export default function PricingPage() {
12
12
return (
13
13
< section className = "container flex flex-col gap-6 py-8 md:max-w-[64rem] md:py-12 lg:py-24" >
14
14
< 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" >
16
16
Simple, transparent pricing
17
17
</ h2 >
18
18
< p className = "max-w-[85%] leading-normal text-muted-foreground sm:text-lg sm:leading-7" >
Original file line number Diff line number Diff line change @@ -12,9 +12,7 @@ export function DashboardHeader({
12
12
return (
13
13
< div className = "flex items-center justify-between px-2" >
14
14
< 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 >
18
16
{ text && < p className = "text-lg text-muted-foreground" > { text } </ p > }
19
17
</ div >
20
18
{ children }
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export function MobileNav({ items, children }: MobileNavProps) {
21
21
"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"
22
22
) }
23
23
>
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" >
25
25
< Link href = "/" className = "flex items-center space-x-2" >
26
26
< Icons . logo />
27
27
< span className = "font-bold" > { siteConfig . name } </ span >
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export function DocsPageHeader({
14
14
return (
15
15
< >
16
16
< 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" >
18
18
{ heading }
19
19
</ h1 >
20
20
{ text && < p className = "text-xl text-muted-foreground" > { text } </ p > }
You can’t perform that action at this time.
0 commit comments