-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
110 lines (104 loc) · 2.69 KB
/
mkdocs.yml
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
site_name: Firereact
site_url: https://firereact.erayerdin.com
repo_url: https://github.com/erayerdin/firereact
theme:
name: material
logo: assets/brand/logo-black.svg
icon:
repo: fontawesome/brands/github
features:
- navigation.instant
- navigation.instant.progress
- navigation.tracking
- navigation.sections
- toc.follow
- toc.integrate
- navigation.top
- content.code.copy
- content.code.select
- content.code.annotate
palette:
# Palette toggle for light mode
- scheme: slate
media: "(prefers-color-scheme: dark)"
primary: orange
accent: deep purple
toggle:
icon: material/brightness-4
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: default
media: "(prefers-color-scheme: light)"
primary: orange
accent: deep purple
toggle:
icon: material/brightness-7
name: Switch to light mode
nav:
- index.md
- hooks-vs-components.md
- contexts-and-providers.md
- Firestore:
- firestore/reading-a-single-document.md
- firestore/listing-a-collection.md
- firestore/creating-documents.md
- firestore/updating-documents.md
- firestore/deleting-documents.md
- Auth:
- auth/conditionally-render-by-authentication.md
- auth/get-user.md
- auth/sign-up.md
- auth/send-email-verification.md
- auth/sign-in.md
- auth/sign-out.md
- auth/delete-user.md
- Functions:
- functions/calling-a-function.md
- Storage:
- storage/uploading-a-file.md
- storage/downloading-a-file.md
- storage/deleting-a-file.md
- storage/getting-metadata-of-a-file.md
- Hooks:
- Firestore:
- hooks/useDocument.md
- hooks/useCollection.md
- hooks/useAddDocument.md
- hooks/useSetDocument.md
- hooks/useDeleteDocument.md
- Auth:
- hooks/useUser.md
- hooks/useSignUp.md
- hooks/useSendEmailVerification.md
- hooks/useSignIn.md
- hooks/useSignOut.md
- hooks/useDeleteUser.md
- Functions:
- hooks/useCallFunction.md
- Storage:
- hooks/useUploadFile.md
- hooks/useUploadFileResumable.md
- hooks/useDownloadLink.md
- hooks/useDownloadBlob.md
- hooks/useDownloadBytes.md
- hooks/useDeleteFile.md
- hooks/useFileMetadata.md
- Components:
- Firestore:
- components/FirestoreDocument.md
- Auth:
- components/SignOut.md
- components/AuthorizationZone.md
- Storage:
- components/StorageDownloadLink.md
plugins:
- privacy
- social
- tags
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- footnotes
extra_css:
- stylesheets/socialbutton.css