victor HF staff commited on
Commit
dd9a8a6
1 Parent(s): b675e79

privacy page tweaks

Browse files
Files changed (2) hide show
  1. PRIVACY.md +2 -2
  2. src/routes/privacy/+page.svelte +2 -2
PRIVACY.md CHANGED
@@ -1,4 +1,4 @@
1
- # Privacy & About this app
2
 
3
  In this `v0` of HuggingChat, we only store messages to display them to the user, not for any other usage (including for research or model training purposes).
4
 
@@ -26,4 +26,4 @@ We welcome any feedback on this app: please participate to the public discussion
26
  ## Coming soon
27
 
28
  - LLM watermarking
29
- - user setting to share conversations with model authors.
 
1
+ ## Privacy
2
 
3
  In this `v0` of HuggingChat, we only store messages to display them to the user, not for any other usage (including for research or model training purposes).
4
 
 
26
  ## Coming soon
27
 
28
  - LLM watermarking
29
+ - User setting to share conversations with model authors
src/routes/privacy/+page.svelte CHANGED
@@ -3,8 +3,8 @@
3
  import privacy from "../../../PRIVACY.md?raw";
4
  </script>
5
 
6
- <div class="overflow-auto">
7
- <div class="mx-auto py-12 prose dark:prose-invert">
8
  {@html marked(privacy, { gfm: true })}
9
  </div>
10
  </div>
 
3
  import privacy from "../../../PRIVACY.md?raw";
4
  </script>
5
 
6
+ <div class="p-6 overflow-auto">
7
+ <div class="mx-auto pt-6 md:pt-12 pb-24 px-4 prose dark:prose-invert">
8
  {@html marked(privacy, { gfm: true })}
9
  </div>
10
  </div>