Skip to content

Commit 788b4a4

Browse files
committed
📝 Add legal things
1 parent 3f28cb9 commit 788b4a4

File tree

5 files changed

+45
-2
lines changed

5 files changed

+45
-2
lines changed

src/assets/app.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
@import url('https://tetunori.github.io/fluent-emoji-webfont/dist/FluentEmojiColor.css');
12
@import "tailwindcss";
23
@plugin "daisyui";
34
@plugin "@tailwindcss/typography";
@@ -48,7 +49,7 @@ h3,
4849
h4,
4950
h5,
5051
h6 {
51-
font-family: "JetBrains Mono Variable" !important;
52+
font-family: "JetBrains Mono Variable", "Fluent Emoji Color" !important;
5253
}
5354

5455
strong {

src/layouts/head.astro

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ const { title, description } = Astro.props;
99
---
1010
<meta charset="utf-8" />
1111
<meta name="viewport" content="width=device-width" />
12-
<link rel="icon" href="/logo.ico" />
1312
<link rel="icon" type="image/png" href="/logo.png" />
1413
<link rel="sitemap" href="/sitemap-index.xml" />
1514
<link

src/layouts/markdown.astro

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
import Default from "./default.astro";
3+
const {frontmatter} = Astro.props;
4+
---
5+
<Default title={frontmatter.title}>
6+
<article class="prose prose-neutral md:prose-lg lg:prose-xl max-w-none px-4 md:px-8">
7+
<slot />
8+
</article>
9+
</Default>

src/pages/privacy.mdx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: Privacy Policy
3+
description: Privacy Policy for using the website and additional services.
4+
layout: ../layouts/markdown.astro
5+
---
6+
7+
# Privacy Policy
8+
If you are redirect to this page, this means that you are using a service provided by Funasitien. By using our website and services, you agree to comply with and be bound by the following terms and conditions:
9+
10+
## ✅ Information Collection
11+
We do not collect any personal information from our users.
12+
13+
##### End or Privacy Policy

src/pages/tos.mdx

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: Terms of Service
3+
description: Terms of Service for using the website and additional services.
4+
layout: ../layouts/markdown.astro
5+
---
6+
7+
# Terms of Service
8+
If you are redirect to this pae, this means that you are using a service provided by Funasitien. By using our website and services, you agree to comply with and be bound by the following terms and conditions:
9+
10+
## ✅ Acceptance of Terms
11+
By using theses services, you are agreeing to these Terms of Service.
12+
If you do not agree to these terms, please do not use our services (but I wouldn't see why).
13+
14+
## ⚖ Legal Compliance
15+
You agree to comply with all applicable laws and regulations while using our services.
16+
Like committing crimes is not allowed.
17+
18+
## 📝 Changes to Terms
19+
Theses TOS are so dump that they shouldn't change often.
20+
However, we reserve the right to modify these terms if any legal entity asks us to.
21+
You will be notified of any changes via email and a notice on our website.

0 commit comments

Comments
 (0)