generated from Barbapapazes/slantire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.ts
65 lines (65 loc) · 1.3 KB
/
app.config.ts
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
53
54
55
56
57
58
59
60
61
62
63
64
65
export default defineAppConfig({
ui: {
primary: 'sky',
gray: 'zinc',
icons: {
light: 'i-ph-sun-dim-duotone',
dark: 'i-ph-moon-stars-duotone',
},
landing: {
card: {
body: {
base: 'h-full',
},
container: 'h-full flex flex-col',
title: 'text-2xl',
description: 'grow mt-2',
},
},
header: {
wrapper: 'relative border-none',
button: {
icon: {
open: 'i-ph-list-bold',
close: 'i-ph-x-bold',
},
},
},
footer: {
bottom: {
container: 'flex flex-col lg:flex-row',
left: 'order-1',
center: 'mt-0',
right: 'order-2 mt-4 md:mt-8 lg:mt-0',
},
},
page: {
links: {
wrapper: 'mt-6',
},
},
card: {
base: 'transition ease-in',
divide: 'divide-none',
},
},
slantire: {
socials: {
website: {
name: 'Website',
href: 'https://esteban-soubiran.site',
icon: 'i-ph-globe-duotone',
},
x: {
name: 'X',
href: 'https://x.com/soubiran_',
icon: 'i-simple-icons-x',
},
github: {
name: 'GitHub',
href: 'https://github.com/barbapapazes',
icon: 'i-simple-icons-github',
},
},
},
})