-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathpage-header.tsx
52 lines (46 loc) · 1.25 KB
/
page-header.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import Balance from "react-wrap-balancer";
import { cn } from "@/lib/utils";
function PageHeader({ className, children, ...props }: React.HTMLAttributes<HTMLDivElement>) {
return (
<section
className={cn(
"mx-auto flex max-w-[980px] flex-col items-center gap-2 py-8 md:py-12 md:pb-8 lg:py-24 lg:pb-20",
className,
)}
{...props}
>
{children}
</section>
);
}
function PageHeaderHeading({ className, ...props }: React.HTMLAttributes<HTMLHeadingElement>) {
return (
<h1
className={cn(
"text-center text-3xl font-bold leading-tight tracking-tighter md:text-5xl lg:leading-[1.1]",
className,
)}
{...props}
/>
);
}
function PageHeaderDescription({
className,
...props
}: React.HTMLAttributes<HTMLParagraphElement>) {
return (
<Balance
className={cn("max-w-md text-center text-lg font-light text-foreground", className)}
{...props}
/>
);
}
function PageActions({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) {
return (
<div
className={cn("flex w-full items-center justify-center space-x-4 py-4 md:pb-10", className)}
{...props}
/>
);
}
export { PageActions, PageHeader, PageHeaderDescription, PageHeaderHeading };