diff --git a/src/components/ApiH2.astro b/src/components/ApiH2.astro deleted file mode 100644 index d05611c87..000000000 --- a/src/components/ApiH2.astro +++ /dev/null @@ -1,16 +0,0 @@ ---- -import AnchorLink from './icons/AnchorLink.vue'; -const { id } = Astro.props; ---- - -
- - -

- -

-
-
diff --git a/src/components/H2.astro b/src/components/H2.astro deleted file mode 100644 index 8f08aa0a6..000000000 --- a/src/components/H2.astro +++ /dev/null @@ -1,14 +0,0 @@ ---- -import AnchorLink from './icons/AnchorLink.vue'; -const { id } = Astro.props; ---- - - - -

- -

-
diff --git a/src/components/ProseA.vue b/src/components/ProseA.vue deleted file mode 100644 index f66fb13d9..000000000 --- a/src/components/ProseA.vue +++ /dev/null @@ -1,20 +0,0 @@ - - - diff --git a/src/components/ProseBlockquote.vue b/src/components/ProseBlockquote.vue deleted file mode 100644 index 8b9f1256b..000000000 --- a/src/components/ProseBlockquote.vue +++ /dev/null @@ -1,12 +0,0 @@ - - - diff --git a/src/pages/api/[...slug].astro b/src/pages/api/[...slug].astro index 74af3b93c..82e6a6130 100644 --- a/src/pages/api/[...slug].astro +++ b/src/pages/api/[...slug].astro @@ -2,8 +2,6 @@ import { getCollection } from '../../utils/getCollection'; import Prose from '../../components/Prose.astro'; import BaseLayout from '../../layouts/BaseLayout.astro'; -import customComponents from '../../utils/customComponents'; -import ApiH2 from '../../components/ApiH2.astro'; import navigation from '../../navigation/apiNavigation'; export async function getStaticPaths() { @@ -29,7 +27,7 @@ const { title, description } = entry.data; { title } - + diff --git a/src/pages/connections/[...slug].astro b/src/pages/connections/[...slug].astro index 0a05cb358..d63126e9a 100644 --- a/src/pages/connections/[...slug].astro +++ b/src/pages/connections/[...slug].astro @@ -1,7 +1,5 @@ --- import { getCollection } from '../../utils/getCollection'; -import customComponents from '../../utils/customComponents'; -import H2 from '../../components/H2.astro'; import FarmlandsLayout from '../../layouts/FarmlandsLayout.astro'; import navigation from '../../navigation/guideNavigation'; diff --git a/src/pages/guides/[...slug].astro b/src/pages/guides/[...slug].astro index 23120e805..2d8932ef7 100644 --- a/src/pages/guides/[...slug].astro +++ b/src/pages/guides/[...slug].astro @@ -3,8 +3,6 @@ import { getCollection } from '../../utils/getCollection'; import Prose from '../../components/Prose.astro'; import TocNav from '../../components/TocNav.vue'; import BaseLayout from '../../layouts/BaseLayout.astro'; -import customComponents from '../../utils/customComponents'; -import H2 from '../../components/H2.astro'; import navigation from '../../navigation/guideNavigation'; export async function getStaticPaths() { @@ -35,7 +33,7 @@ const { title, description } = entry.data; { title } - + diff --git a/src/utils/customComponents.js b/src/utils/customComponents.js deleted file mode 100644 index fcc059fda..000000000 --- a/src/utils/customComponents.js +++ /dev/null @@ -1,7 +0,0 @@ -import ProseBlockquote from '../components/ProseBlockquote.vue'; -import ProseA from '../components/ProseA.vue'; - -export default { - a: ProseA, - blockquote: ProseBlockquote, -};