@@ -6,52 +6,45 @@ hide_table_of_contents: true
6
6
---
7
7
8
8
import Link from ' @docusaurus/Link'
9
+ import ButtonCard from ' @site/src/components/ButtonCard'
9
10
10
11
The Supabase Reference Docs provide technical descriptions of the products and how to use them.
11
12
12
13
<div class = " container" style = { { padding: 0 }} >
13
14
<div class = " row is-multiline" >
14
15
{ /* Database */ }
15
16
<div class = " col col--6" >
16
- <Link
17
+ <ButtonCard
18
+ icon = { " /docs/img/icons/javascript-icon.svg" }
17
19
class = " card"
18
20
to = " /docs/reference/javascript"
19
21
style = { { height: ' 100%' }}
20
- >
21
- <div class = " card__body" >
22
- <h4 >JavaScript</h4 >
23
- <p >JavaScript and TypeScript documentation.</p >
24
- </div >
25
- </Link >
22
+ title = " JavaScript"
23
+ description = " JavaScript and TypeScript documentation."
24
+ >
25
+
26
+ </ButtonCard >
26
27
</div >
27
28
{ /* Auth */ }
28
29
<div class = " col col--6" >
29
- <Link class = " card" to = " /docs/reference/dart" style = { { height: ' 100%' }} >
30
- <div class = " card__body" >
31
- <h4 >Dart</h4 >
32
- <p >Dart and Flutter documentation.</p >
33
- </div >
34
- </Link >
30
+ <ButtonCard icon = { " /docs/img/icons/dart-icon.svg" } class = " card" to = " /docs/reference/dart" style = { { height: ' 100%' }} title = " Dart" description = " Dart and Flutter documentation." >
31
+
32
+ </ButtonCard >
35
33
</div >
36
34
{ /* Examples - coming soon */ }
37
35
<div class = " col col--6" >
38
- <Link class = " card" to = " /docs/reference/cli" style = { { height: ' 100%' }} >
39
- <div class = " card__body" >
40
- <h4 >Supabase CLI</h4 >
41
- <p >Manage your Supabase projects.</p >
42
- </div >
43
- </Link >
36
+ <ButtonCard icon = { " /docs/img/icons/cli-icon.svg" } class = " card" to = " /docs/reference/cli" style = { { height: ' 100%' }} title = " Supabase CLI" description = " Manage your Supabase projects." >
37
+
38
+ </ButtonCard >
44
39
</div >
45
40
{ /* CLI */ }
46
41
<div class = " col col--6" >
47
- <Link class = " card" to = " /docs/reference/api" style = { { height: ' 100%' }} >
48
- <div class = " card__body" >
49
- <h4 >Supabase API</h4 >
50
- <p >Manage your Supabase projects.</p >
51
- </div >
52
- </Link >
42
+ <ButtonCard icon = { " /docs/img/icons/api-icon.svg" } class = " card" to = " /docs/reference/api" style = { { height: ' 100%' }} title = " Supabase API" description = " Manage your Supabase projects." >
43
+
44
+ </ButtonCard >
53
45
</div >
54
46
{ /* */ }
47
+
55
48
</div >
56
49
</div >
57
50
0 commit comments