-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
163 lines (162 loc) · 4.74 KB
/
index.html
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Fabric React</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="icon"
href="https://www.finn.no/favicon.ico"
type="image/x-icon"
/>
<style>
f-docs-template {
visibility: hidden;
}
f-docs-template:defined {
visibility: visible;
}
</style>
<link
href="https://assets.finn.no/pkg/@fabric-ds/css/v1/fabric.min.css"
rel="stylesheet"
/>
<link
href="https://assets.finn.no/pkg/@fabric-ds/common/v1/css/markdown.css"
rel="stylesheet"
/>
<link
href="https://assets.finn.no/pkg/@fabric-ds/common/v1/template/index.js"
rel="modulepreload"
/>
<link
href="https://assets.finn.no/pkg/@fabric-ds/common/v1/asset-links/index.js"
rel="modulepreload"
/>
<link
href="https://assets.finn.no/pkg/@fabric-ds/common/v1/highlight-box/index.js"
rel="modulepreload"
/>
</head>
<body>
<f-docs-template>
<script data-for="sidebar" type="application/json">
{
"category": "React",
"items": [
{
"title": "Actions",
"open": true,
"items": [
{ "title": "Button", "href": "/button" },
{ "title": "Pill", "href": "/pill" }
]
},
{
"title": "Feedback indicators",
"open": true,
"items": [
{ "title": "Alert", "href": "/alert" },
{ "title": "Steps", "href": "/steps" }
]
},
{
"title": "Forms",
"open": true,
"items": [
{ "title": "Combobox", "href": "/combobox" },
{ "title": "Select", "href": "/select" },
{ "title": "Slider", "href": "/slider" },
{ "title": "Switch", "href": "/switch" },
{ "title": "Textarea", "href": "/textarea" },
{ "title": "Textfield", "href": "/textfield" },
{ "title": "Toggle", "href": "/toggle" }
]
},
{
"title": "Layout",
"open": true,
"items": [
{ "title": "Box", "href": "/box" },
{ "title": "Card", "href": "/card" },
{
"title": "Expandable",
"href": "/expandable"
},
{ "title": "Tabs", "href": "/tabs" }
]
},
{
"title": "Navigation",
"open": true,
"items": [
{
"title": "Breadcrumbs",
"href": "/breadcrumbs"
}
]
},
{
"title": "Overlays",
"open": true,
"items": [
{
"title": "Attention",
"href": "/attention"
},
{
"title": "Modal",
"href": "/modal"
}
]
}
]
}
</script>
<div slot="banner" class="mx-auto p-32" style="max-width: 1024px">
<div class="md:grid md:grid-cols-3">
<div class="md:col-span-2">
<h1
style="font-size: 48px; line-height: 56px"
class="text-white mb-16"
>
Fabric React
</h1>
<p style="font-size: 22px; line-height: 28px" class="text-white">
The home of the React implementation of Fabric,
</p>
<p style="font-size: 22px; line-height: 28px" class="text-white">
FINN's design system.
</p>
</div>
</div>
</div>
<main id="root" slot="content"></main>
<script data-for="footer" type="application/json">
{
"github": {
"name": "Github",
"href": "https://github.com/fabric-ds/react"
},
"slack": {
"name": "#finn-fabric",
"href": "https://sch-chat.slack.com/archives/C01GYKPJVFT"
}
}
</script>
</f-docs-template>
<script type="module" src="./docs/src/Main.tsx"></script>
<script
src="https://assets.finn.no/pkg/@fabric-ds/common/v1/template/index.js"
type="module"
></script>
<script
src="https://assets.finn.no/pkg/@fabric-ds/common/v1/asset-links/index.js"
type="module"
></script>
<script
src="https://assets.finn.no/pkg/@fabric-ds/common/v1/highlight-box/index.js"
type="module"
></script>
</body>
</html>