diff --git a/packages/website/astro.config.mjs b/packages/website/astro.config.mjs index 42267c2..0e0e154 100644 --- a/packages/website/astro.config.mjs +++ b/packages/website/astro.config.mjs @@ -1,3 +1,5 @@ +// eslint-disable-next-line @typescript-eslint/ban-ts-comment +// @ts-nocheck import prefetch from "@astrojs/prefetch" import react from "@astrojs/react" import tailwind from "@astrojs/tailwind" @@ -12,4 +14,7 @@ export default defineConfig({ react(), prefetch(), ], + markdown: { + shikiConfig: {}, + }, }) diff --git a/packages/website/package.json b/packages/website/package.json index 7c59d2a..0f4efe5 100644 --- a/packages/website/package.json +++ b/packages/website/package.json @@ -22,7 +22,8 @@ "clsx": "^2.0.0", "reacord": "workspace:*", "react": "^18.2.0", - "react-dom": "^18.2.0" + "react-dom": "^18.2.0", + "tailwind-merge": "^1.14.0" }, "devDependencies": { "@astrojs/tailwind": "^4.0.0", diff --git a/packages/website/src/components/app-footer.astro b/packages/website/src/components/app-footer.astro index a2cf37a..eb665ef 100644 --- a/packages/website/src/components/app-footer.astro +++ b/packages/website/src/components/app-footer.astro @@ -1,14 +1,19 @@ --- import { HeartIcon } from "@heroicons/react/20/solid" +import { twMerge } from "tailwind-merge" import ExternalLink from "./external-link.astro" + +export interface Props { + class?: string +} --- -