File tree 7 files changed +11
-8
lines changed
7 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ export default async function Pages({ params }: PageProps) {
30
30
< PageBreadcrumb paths = { slug } />
31
31
32
32
< Typography >
33
- < h1 className = "text-3xl !font-semibold mb-2! " > { frontmatter . title } </ h1 >
33
+ < h1 className = "text-3xl !font-semibold ! mb-2" > { frontmatter . title } </ h1 >
34
34
< p className = "-mt-4 text-sm" >
35
35
{ frontmatter . description }
36
36
</ p >
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { Footer } from "@/components/navigation/footer"
7
7
import { Navbar } from "@/components/navigation/navbar"
8
8
import { Providers } from "@/components/providers"
9
9
10
- import ". /globals.css"
10
+ import "@/styles /globals.css"
11
11
12
12
const inter = Inter ( {
13
13
variable : "--font-inter" ,
Original file line number Diff line number Diff line change @@ -6,11 +6,13 @@ import { buttonVariants } from "@/components/ui/button"
6
6
export default function Home ( ) {
7
7
return (
8
8
< section className = "min-h-[86.5vh] flex flex-col justify-center items-center text-center px-2 py-8" >
9
+
9
10
< h1 className = "text-4xl font-bold mb-4 sm:text-7xl" > Documents</ h1 >
10
11
< p className = "max-w-[600px] text-foreground mb-8 sm:text-base" >
11
12
A simple open-source product documentation platform. That's simple
12
13
to use and easy to customize.
13
14
</ p >
15
+
14
16
< div className = "flex items-center gap-5" >
15
17
< Link
16
18
href = { `/docs${ PageRoutes [ 0 ] . href } ` }
@@ -19,6 +21,7 @@ export default function Home() {
19
21
Get Started
20
22
</ Link >
21
23
</ div >
24
+
22
25
</ section >
23
26
)
24
27
}
Original file line number Diff line number Diff line change @@ -73,12 +73,12 @@ export function Card({
73
73
) }
74
74
< div
75
75
className = { clsx (
76
- "transition-all duration-300 group-hover:font-bold" ,
76
+ "transition-all duration-300 font-semibold group-hover:font-bold" ,
77
77
variant === "small"
78
78
? "text-sm"
79
79
: variant === "image"
80
- ? "text-sm ! p-4 !py-2 "
81
- : "text-lg font-semibold " ,
80
+ ? "text-sm p-4"
81
+ : "text-lg" ,
82
82
className
83
83
) }
84
84
>
Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ export default function Copy({ content }: { content: string }) {
20
20
21
21
return (
22
22
< Button
23
- variant = "ghost "
23
+ variant = "outline "
24
24
size = "icon"
25
25
onClick = { handleCopy }
26
- className = "cursor-pointer !size-5 "
26
+ className = "cursor-pointer !size-8 "
27
27
>
28
28
< LuCopy
29
29
className = { cn (
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ export function Step({ children }: PropsWithChildren<StepProps>) {
19
19
clsx ( { "pb-5" : index < length - 1 } )
20
20
) }
21
21
>
22
- < div className = "absolute -left-4 flex items-center justify-center w -8 h-8 rounded-full bg-secondary text-xs font-code font-medium" >
22
+ < div className = "absolute -left-4 flex items-center justify-center size -8 rounded-full border bg-secondary text-xs font-medium" >
23
23
{ index + 1 }
24
24
</ div >
25
25
{ child }
File renamed without changes.
You can’t perform that action at this time.
0 commit comments