diff --git a/apps/examples/app/routes/_layout._docs.mdx-test.mdx b/apps/examples/app/routes/_layout._docs.mdx-test.mdx deleted file mode 100644 index 537b4131..00000000 --- a/apps/examples/app/routes/_layout._docs.mdx-test.mdx +++ /dev/null @@ -1,77 +0,0 @@ ---- -meta: - - title: Hedwig Design System | Button - - name: description - content: - Buttons are a key part of Posten and Bring’s call-to-action navigation. The red and green - colors guide customers to the core call-to-action items. ---- - -import { Examples } from "../components/component-examples"; -import { FigmaPreviews, FigmaEmbed } from "../components/figma"; - -export const meta = frontmatter.meta; - -# Button - -Buttons are a key part of Posten and Bring’s call-to-action navigation. The red and green -colors guide customers to the core call-to-action items. - -## Primary - -Primary buttons should be used for all primary call-to-actions and main interactions, e.g. -confirmations, in our services. In case of multiple click options use the outline version for the -other option(s). - -
- - -
- -## Secondary - -For secondary services and actions, e.g. information cards in the sidebar or supplementary search in the sidebar, we should use the secondary button. In case of multiple click options use the outline version for the other option(s). - -
- - -
- -## Examples - -
- -
- -## Figma - -
- -
diff --git a/apps/examples/vite.config.ts b/apps/examples/vite.config.ts index 6875bae5..62a4ebf2 100644 --- a/apps/examples/vite.config.ts +++ b/apps/examples/vite.config.ts @@ -1,8 +1,5 @@ import { vitePlugin as remix } from "@remix-run/dev"; import { defineConfig } from "vite"; -import mdx from "@mdx-js/rollup"; -import remarkFrontmatter from "remark-frontmatter"; -import remarkMdxFrontmatter from "remark-mdx-frontmatter"; import fs from "node:fs/promises"; @@ -16,9 +13,6 @@ export default defineConfig({ }, base: "/hedwig-design-system/examples/", plugins: [ - mdx({ - remarkPlugins: [remarkFrontmatter, remarkMdxFrontmatter], - }), remix({ ssr: false, basename: "/hedwig-design-system/examples/",