Skip to content

Commit

Permalink
Migrating MD to MDX
Browse files Browse the repository at this point in the history
- Reference : #386
  • Loading branch information
h0lybyte committed Mar 15, 2023
1 parent 6531ae7 commit 3d0300f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions .astro/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -417,27 +417,27 @@ declare module 'astro:content' {
} & { render(): Render[".md"] },
},
"legal": {
"eula.md": {
id: "eula.md",
"eula.mdx": {
id: "eula.mdx",
slug: "eula",
body: string,
collection: "legal",
data: InferEntrySchema<"legal">
} & { render(): Render[".md"] },
"privacy.md": {
id: "privacy.md",
} & { render(): Render[".mdx"] },
"privacy.mdx": {
id: "privacy.mdx",
slug: "privacy",
body: string,
collection: "legal",
data: InferEntrySchema<"legal">
} & { render(): Render[".md"] },
"tos.md": {
id: "tos.md",
} & { render(): Render[".mdx"] },
"tos.mdx": {
id: "tos.mdx",
slug: "tos",
body: string,
collection: "legal",
data: InferEntrySchema<"legal">
} & { render(): Render[".md"] },
} & { render(): Render[".mdx"] },
},
"manga": {
"rj/main.md": {
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ status: true
description: Privacy Notice for KBVE
date: 12/14/2022
id: privacy
img: https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1770&q=80
img: https://images.unsplash.com/photo-1557597774-9d273605dfa9?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1770&q=80
tags:
- legal
- privacy
Expand Down
6 changes: 3 additions & 3 deletions src/content/legal/tos.md → src/content/legal/tos.mdx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
layout: ../../layouts/theme/mdx.astro
url: https://kbve.com/legal/tos/
title: KBVE TOS
title: KBVE Terms of Service
version: 1
status: true
description: The Official KBVE TOS
description: The Official KBVE Terms of Service aka TOS
date: 12/13/2022
id: tos
img: https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1770&q=80
img: https://images.unsplash.com/photo-1585909695677-2b0492f96e3b?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1770&q=80
tags:
- legal
- tos
Expand Down

0 comments on commit 3d0300f

Please sign in to comment.