aboutsummaryrefslogtreecommitdiffstats
path: root/src/ts/types/homepage.ts
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2021-12-24 15:13:19 +0100
committerArmand Philippot <git@armandphilippot.com>2021-12-24 15:13:19 +0100
commit3956ed77e11455a963ce17a64783d70fa666a7a0 (patch)
tree15eadb57f8f68fd7a5c56fc2b7cdeb17d21b7ab2 /src/ts/types/homepage.ts
parent8105e2577d4aa401f960e78085f6038eb879ee8a (diff)
chore: replace homepage content with MDX content
I cannot import custom blocks through WP GraphQL, so I prefer to use MDX file. This way I cannot import custom components.
Diffstat (limited to 'src/ts/types/homepage.ts')
-rw-r--r--src/ts/types/homepage.ts12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/ts/types/homepage.ts b/src/ts/types/homepage.ts
deleted file mode 100644
index 8ff2ccb..0000000
--- a/src/ts/types/homepage.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-export type HomePage = {
- id: string;
- content: string;
-};
-
-export type HomePageBy = {
- nodeByUri: HomePage;
-};
-
-export type HomePageProps = {
- data: HomePage;
-};