page-hero.ts
1.07 KB
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
export default {
"slots": {
"root": "relative isolate",
"container": "flex flex-col lg:grid py-24 sm:py-32 lg:py-40 gap-16 sm:gap-y-24",
"wrapper": "",
"header": "",
"headline": "mb-4",
"title": "text-5xl sm:text-7xl text-pretty tracking-tight font-bold text-highlighted",
"description": "text-lg sm:text-xl/8 text-muted",
"body": "mt-10",
"footer": "mt-10",
"links": "flex flex-wrap gap-x-6 gap-y-3"
},
"variants": {
"orientation": {
"horizontal": {
"container": "lg:grid-cols-2 lg:items-center",
"description": "text-pretty"
},
"vertical": {
"container": "",
"headline": "justify-center",
"wrapper": "text-center",
"description": "text-balance",
"links": "justify-center"
}
},
"reverse": {
"true": {
"wrapper": "order-last"
}
},
"headline": {
"true": {
"headline": "font-semibold text-primary flex items-center gap-1.5"
}
},
"title": {
"true": {
"description": "mt-6"
}
}
}
}