From 2cc021ec991bbf97e19575a375932730a678a6c4 Mon Sep 17 00:00:00 2001 From: meglerhagen Date: Mon, 29 Jul 2024 14:34:13 +0200 Subject: [PATCH 1/6] removed contentlayer --- apps/www/contentlayer.config.js | 191 --------------- apps/www/next.config.js | 13 +- apps/www/package.json | 2 - .../src/app/(docs)/docs/[[...slug]]/page.tsx | 106 --------- apps/www/src/app/(docs)/docs/layout.tsx | 17 -- .../src/app/(docs)/guides/[...slug]/page.tsx | 117 --------- apps/www/src/app/(docs)/guides/layout.tsx | 7 - apps/www/src/app/(docs)/guides/page.tsx | 64 ----- apps/www/src/app/(docs)/layout.tsx | 48 ---- .../src/app/(marketing)/[...slug]/page.tsx | 98 -------- .../app/(marketing)/blog/[...slug]/page.tsx | 170 -------------- apps/www/src/app/(marketing)/blog/page.tsx | 23 -- apps/www/src/app/sitemap.ts | 24 +- apps/www/src/components/content/mdx-card.tsx | 37 --- .../src/components/content/mdx-components.tsx | 168 ------------- .../templete-blog/deploying-next-apps.mdx | 219 ----------------- ...namic-routing-static-regeneration copy.mdx | 219 ----------------- .../preview-mode-headless-cms.mdx | 219 ----------------- .../server-client-components.mdx | 219 ----------------- apps/www/src/components/docs/pager.tsx | 64 ----- apps/www/src/config/docs.ts | 4 +- apps/www/src/content/authors/codehagen.mdx | 5 - apps/www/src/content/authors/shadcn.mdx | 5 - ...-propwrite-makes-listings-irresistible.mdx | 41 ---- .../propwrite_aI_real_estate_blog_post.mdx | 37 --- .../src/content/blog/welcome-to-propwrite.mdx | 81 ------- .../docs/documentation/code-blocks.mdx | 73 ------ .../content/docs/documentation/components.mdx | 157 ------------- .../src/content/docs/documentation/index.mdx | 60 ----- .../docs/documentation/style-guide.mdx | 216 ----------------- apps/www/src/content/docs/in-progress.mdx | 10 - apps/www/src/content/docs/index.mdx | 54 ----- .../build-blog-using-contentlayer-mdx.mdx | 222 ------------------ .../guides/using-next-auth-next-13.mdx | 222 ------------------ apps/www/src/content/pages/privacy.mdx | 45 ---- apps/www/src/content/pages/terms.mdx | 30 --- apps/www/tsconfig.json | 2 - 37 files changed, 6 insertions(+), 3283 deletions(-) delete mode 100644 apps/www/contentlayer.config.js delete mode 100644 apps/www/src/app/(docs)/docs/[[...slug]]/page.tsx delete mode 100644 apps/www/src/app/(docs)/docs/layout.tsx delete mode 100644 apps/www/src/app/(docs)/guides/[...slug]/page.tsx delete mode 100644 apps/www/src/app/(docs)/guides/layout.tsx delete mode 100644 apps/www/src/app/(docs)/guides/page.tsx delete mode 100644 apps/www/src/app/(docs)/layout.tsx delete mode 100644 apps/www/src/app/(marketing)/[...slug]/page.tsx delete mode 100644 apps/www/src/app/(marketing)/blog/[...slug]/page.tsx delete mode 100644 apps/www/src/app/(marketing)/blog/page.tsx delete mode 100644 apps/www/src/components/content/mdx-card.tsx delete mode 100644 apps/www/src/components/content/mdx-components.tsx delete mode 100644 apps/www/src/components/content/templete-blog/deploying-next-apps.mdx delete mode 100644 apps/www/src/components/content/templete-blog/dynamic-routing-static-regeneration copy.mdx delete mode 100644 apps/www/src/components/content/templete-blog/preview-mode-headless-cms.mdx delete mode 100644 apps/www/src/components/content/templete-blog/server-client-components.mdx delete mode 100644 apps/www/src/components/docs/pager.tsx delete mode 100644 apps/www/src/content/authors/codehagen.mdx delete mode 100644 apps/www/src/content/authors/shadcn.mdx delete mode 100644 apps/www/src/content/blog/how-propwrite-makes-listings-irresistible.mdx delete mode 100644 apps/www/src/content/blog/propwrite_aI_real_estate_blog_post.mdx delete mode 100644 apps/www/src/content/blog/welcome-to-propwrite.mdx delete mode 100644 apps/www/src/content/docs/documentation/code-blocks.mdx delete mode 100644 apps/www/src/content/docs/documentation/components.mdx delete mode 100644 apps/www/src/content/docs/documentation/index.mdx delete mode 100644 apps/www/src/content/docs/documentation/style-guide.mdx delete mode 100644 apps/www/src/content/docs/in-progress.mdx delete mode 100644 apps/www/src/content/docs/index.mdx delete mode 100644 apps/www/src/content/guides/build-blog-using-contentlayer-mdx.mdx delete mode 100644 apps/www/src/content/guides/using-next-auth-next-13.mdx delete mode 100644 apps/www/src/content/pages/privacy.mdx delete mode 100644 apps/www/src/content/pages/terms.mdx diff --git a/apps/www/contentlayer.config.js b/apps/www/contentlayer.config.js deleted file mode 100644 index b6ed507..0000000 --- a/apps/www/contentlayer.config.js +++ /dev/null @@ -1,191 +0,0 @@ -import { defineDocumentType, makeSource } from "contentlayer/source-files"; -import rehypeAutolinkHeadings from "rehype-autolink-headings"; -import rehypePrettyCode from "rehype-pretty-code"; -import rehypeSlug from "rehype-slug"; -import remarkGfm from "remark-gfm"; - -/** @type {import('contentlayer/source-files').ComputedFields} */ -const computedFields = { - slug: { - type: "string", - resolve: (doc) => `/${doc._raw.flattenedPath}`, - }, - slugAsParams: { - type: "string", - resolve: (doc) => doc._raw.flattenedPath.split("/").slice(1).join("/"), - }, -}; - -export const Doc = defineDocumentType(() => ({ - name: "Doc", - filePathPattern: `docs/**/*.mdx`, - contentType: "mdx", - fields: { - title: { - type: "string", - required: true, - }, - description: { - type: "string", - }, - published: { - type: "boolean", - default: true, - }, - }, - computedFields, -})); - -export const Guide = defineDocumentType(() => ({ - name: "Guide", - filePathPattern: `guides/**/*.mdx`, - contentType: "mdx", - fields: { - title: { - type: "string", - required: true, - }, - description: { - type: "string", - }, - date: { - type: "date", - required: true, - }, - published: { - type: "boolean", - default: true, - }, - featured: { - type: "boolean", - default: false, - }, - }, - computedFields, -})); - -export const Post = defineDocumentType(() => ({ - name: "Post", - filePathPattern: `blog/**/*.mdx`, - contentType: "mdx", - fields: { - title: { - type: "string", - required: true, - }, - description: { - type: "string", - }, - date: { - type: "date", - required: true, - }, - published: { - type: "boolean", - default: true, - }, - image: { - type: "string", - required: true, - }, - authors: { - // Reference types are not embedded. - // Until this is fixed, we can use a simple list. - // type: "reference", - // of: Author, - type: "list", - of: { type: "string" }, - required: true, - }, - }, - computedFields, -})); - -export const Author = defineDocumentType(() => ({ - name: "Author", - filePathPattern: `authors/**/*.mdx`, - contentType: "mdx", - fields: { - title: { - type: "string", - required: true, - }, - description: { - type: "string", - }, - avatar: { - type: "string", - required: true, - }, - twitter: { - type: "string", - required: true, - }, - }, - computedFields, -})); - -export const Page = defineDocumentType(() => ({ - name: "Page", - filePathPattern: `pages/**/*.mdx`, - contentType: "mdx", - fields: { - title: { - type: "string", - required: true, - }, - description: { - type: "string", - }, - }, - computedFields, -})); - -export default makeSource({ - contentDirPath: "./content", - documentTypes: [Page, Doc, Guide, Post, Author], - mdx: { - remarkPlugins: [remarkGfm], - rehypePlugins: [ - rehypeSlug, - [ - rehypePrettyCode, - { - theme: "github-dark", - onVisitLine(node) { - // Prevent lines from collapsing in `display: grid` mode, and allow empty - // lines to be copy/pasted - if (node.children.length === 0) { - node.children = [{ type: "text", value: " " }]; - } - }, - onVisitHighlightedLine(node) { - // node.properties.className.push("line--highlighted") - - // FIX: I changed remark-gmf 4.0.0 to 3.0.1 (return a lot errors in mdx?) - // And solve error on onVisitHighlightedLine with code from : https://stackoverflow.com/questions/76549262/onvisithighlightedline-cannot-push-classname-using-rehype-pretty-code - const nodeClass = node.properties.className; - - if (nodeClass && nodeClass.length > 0) { - node.properties.className.push("line--highlighted"); - } else { - node.properties.className = ["line--highlighted"]; - } - }, - onVisitHighlightedWord(node) { - node.properties.className = ["word--highlighted"]; - }, - }, - ], - [ - rehypeAutolinkHeadings, - { - properties: { - className: ["subheading-anchor"], - ariaLabel: "Link to section", - }, - }, - ], - ], - }, -}); diff --git a/apps/www/next.config.js b/apps/www/next.config.js index 83f5e5d..f56ffe3 100644 --- a/apps/www/next.config.js +++ b/apps/www/next.config.js @@ -1,10 +1,3 @@ -import { fileURLToPath } from "url"; -import createJiti from "jiti"; -import { createContentlayerPlugin } from "next-contentlayer"; - -// Import env files to validate at build time. Use jiti so we can load .ts files in here. -createJiti(fileURLToPath(import.meta.url))("./src/env"); - /** @type {import("next").NextConfig} */ const config = { reactStrictMode: true, @@ -30,8 +23,4 @@ const config = { typescript: { ignoreBuildErrors: true }, }; -const withContentlayer = createContentlayerPlugin({ - // Additional Contentlayer config options -}); - -export default withContentlayer(config); +export default config; \ No newline at end of file diff --git a/apps/www/package.json b/apps/www/package.json index bb3f329..d6f4b19 100644 --- a/apps/www/package.json +++ b/apps/www/package.json @@ -41,7 +41,6 @@ "clsx": "^2.0.0", "cmdk": "^0.2.0", "concurrently": "^8.2.2", - "contentlayer": "^0.3.4", "date-fns": "^2.30.0", "framer-motion": "^11.0.14", "leaflet": "^1.9.4", @@ -49,7 +48,6 @@ "ms": "^2.1.3", "next": "^14.2.4", "next-auth": "4.24.4", - "next-contentlayer": "^0.3.4", "next-themes": "^0.2.1", "nodemailer": "^6.9.7", "openai": "^4.16.1", diff --git a/apps/www/src/app/(docs)/docs/[[...slug]]/page.tsx b/apps/www/src/app/(docs)/docs/[[...slug]]/page.tsx deleted file mode 100644 index ac9d5e4..0000000 --- a/apps/www/src/app/(docs)/docs/[[...slug]]/page.tsx +++ /dev/null @@ -1,106 +0,0 @@ -import { notFound } from "next/navigation"; -import { Mdx } from "@/components/content/mdx-components"; -import { DocsPageHeader } from "@/components/docs/page-header"; -import { DocsPager } from "@/components/docs/pager"; -import { DashboardTableOfContents } from "@/components/shared/toc"; -import { getTableOfContents } from "@/lib/toc"; -import { allDocs } from "contentlayer/generated"; - -import "@/styles/mdx.css"; - -import type { Metadata } from "next"; -import { env } from "@/env"; -import { absoluteUrl } from "@/lib/utils"; - -interface DocPageProps { - params: { - slug: string[]; - }; -} - -async function getDocFromParams(params) { - const slug = params.slug?.join("/") || ""; - const doc = allDocs.find((doc) => doc.slugAsParams === slug); - - if (!doc) { - null; - } - - return doc; -} - -export async function generateMetadata({ - params, -}: DocPageProps): Promise { - const doc = await getDocFromParams(params); - - if (!doc) { - return {}; - } - - const url = env.NEXT_PUBLIC_APP_URL; - - const ogUrl = new URL(`${url}/api/og`); - ogUrl.searchParams.set("heading", doc.description ?? doc.title); - ogUrl.searchParams.set("type", "Documentation"); - ogUrl.searchParams.set("mode", "dark"); - - return { - title: doc.title, - description: doc.description, - openGraph: { - title: doc.title, - description: doc.description, - type: "article", - url: absoluteUrl(doc.slug), - images: [ - { - url: ogUrl.toString(), - width: 1200, - height: 630, - alt: doc.title, - }, - ], - }, - twitter: { - card: "summary_large_image", - title: doc.title, - description: doc.description, - images: [ogUrl.toString()], - }, - }; -} - -export async function generateStaticParams(): Promise< - DocPageProps["params"][] -> { - return allDocs.map((doc) => ({ - slug: doc.slugAsParams.split("/"), - })); -} - -export default async function DocPage({ params }: DocPageProps) { - const doc = await getDocFromParams(params); - - if (!doc) { - notFound(); - } - - const toc = await getTableOfContents(doc.body.raw); - - return ( -
-
- - -
- -
-
-
- -
-
-
- ); -} diff --git a/apps/www/src/app/(docs)/docs/layout.tsx b/apps/www/src/app/(docs)/docs/layout.tsx deleted file mode 100644 index ed68c28..0000000 --- a/apps/www/src/app/(docs)/docs/layout.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import { DocsSidebarNav } from "@/components/docs/sidebar-nav"; -import { docsConfig } from "@/config/docs"; - -interface DocsLayoutProps { - children: React.ReactNode; -} - -export default function DocsLayout({ children }: DocsLayoutProps) { - return ( -
- - {children} -
- ); -} diff --git a/apps/www/src/app/(docs)/guides/[...slug]/page.tsx b/apps/www/src/app/(docs)/guides/[...slug]/page.tsx deleted file mode 100644 index 2b3d1bf..0000000 --- a/apps/www/src/app/(docs)/guides/[...slug]/page.tsx +++ /dev/null @@ -1,117 +0,0 @@ -import Link from "next/link"; -import { notFound } from "next/navigation"; -import { Mdx } from "@/components/content/mdx-components"; -import { DocsPageHeader } from "@/components/docs/page-header"; -import { Icons } from "@/components/shared/icons"; -import { DashboardTableOfContents } from "@/components/shared/toc"; -import { getTableOfContents } from "@/lib/toc"; -import { allGuides } from "contentlayer/generated"; - -import "@/styles/mdx.css"; - -import type { Metadata } from "next"; -import { env } from "@/env"; -import { absoluteUrl, cn } from "@/lib/utils"; - -import { buttonVariants } from "@dingify/ui/components/button"; - -interface GuidePageProps { - params: { - slug: string[]; - }; -} - -async function getGuideFromParams(params) { - const slug = params?.slug?.join("/"); - const guide = allGuides.find((guide) => guide.slugAsParams === slug); - - if (!guide) { - null; - } - - return guide; -} - -export async function generateMetadata({ - params, -}: GuidePageProps): Promise { - const guide = await getGuideFromParams(params); - - if (!guide) { - return {}; - } - - const url = env.NEXT_PUBLIC_APP_URL; - - const ogUrl = new URL(`${url}/api/og`); - ogUrl.searchParams.set("heading", guide.title); - ogUrl.searchParams.set("type", "Guide"); - ogUrl.searchParams.set("mode", "dark"); - - return { - title: guide.title, - description: guide.description, - openGraph: { - title: guide.title, - description: guide.description, - type: "article", - url: absoluteUrl(guide.slug), - images: [ - { - url: ogUrl.toString(), - width: 1200, - height: 630, - alt: guide.title, - }, - ], - }, - twitter: { - card: "summary_large_image", - title: guide.title, - description: guide.description, - images: [ogUrl.toString()], - }, - }; -} - -export async function generateStaticParams(): Promise< - GuidePageProps["params"][] -> { - return allGuides.map((guide) => ({ - slug: guide.slugAsParams.split("/"), - })); -} - -export default async function GuidePage({ params }: GuidePageProps) { - const guide = await getGuideFromParams(params); - - if (!guide) { - notFound(); - } - - const toc = await getTableOfContents(guide.body.raw); - - return ( -
-
- - -
-
- - - See all guides - -
-
-
-
- -
-
-
- ); -} diff --git a/apps/www/src/app/(docs)/guides/layout.tsx b/apps/www/src/app/(docs)/guides/layout.tsx deleted file mode 100644 index 190ec4e..0000000 --- a/apps/www/src/app/(docs)/guides/layout.tsx +++ /dev/null @@ -1,7 +0,0 @@ -interface GuidesLayoutProps { - children: React.ReactNode; -} - -export default function GuidesLayout({ children }: GuidesLayoutProps) { - return
{children}
; -} diff --git a/apps/www/src/app/(docs)/guides/page.tsx b/apps/www/src/app/(docs)/guides/page.tsx deleted file mode 100644 index 0c6a3d1..0000000 --- a/apps/www/src/app/(docs)/guides/page.tsx +++ /dev/null @@ -1,64 +0,0 @@ -import Link from "next/link"; -import { DocsPageHeader } from "@/components/docs/page-header"; -import { formatDate } from "@/lib/utils"; -import { allGuides } from "contentlayer/generated"; -import { compareDesc } from "date-fns"; - -export const metadata = { - title: "Guides", - description: - "This section includes end-to-end guides for developing Next.js 13 apps.", -}; - -export default function GuidesPage() { - const guides = allGuides - .filter((guide) => guide.published) - .sort((a, b) => { - return compareDesc(new Date(a.date), new Date(b.date)); - }); - - return ( -
- - {guides.length ? ( -
- {guides.map((guide) => ( -
- {guide.featured && ( - - Featured - - )} -
-
-

- {guide.title} -

- {guide.description && ( -

{guide.description}

- )} -
- {guide.date && ( -

- {formatDate(guide.date)} -

- )} -
- - View - -
- ))} -
- ) : ( -

No guides published.

- )} -
- ); -} diff --git a/apps/www/src/app/(docs)/layout.tsx b/apps/www/src/app/(docs)/layout.tsx deleted file mode 100644 index 04ac128..0000000 --- a/apps/www/src/app/(docs)/layout.tsx +++ /dev/null @@ -1,48 +0,0 @@ -import Link from "next/link"; -import { DocsSearch } from "@/components/docs/search"; -import { DocsSidebarNav } from "@/components/docs/sidebar-nav"; -import { NavBar } from "@/components/layout/navbar"; -import { SiteFooter } from "@/components/layout/site-footer"; -import { Icons } from "@/components/shared/icons"; -import { docsConfig } from "@/config/docs"; -import { siteConfig } from "@/config/site"; -import { getCurrentUser } from "@/lib/session"; - -interface DocsLayoutProps { - children: React.ReactNode; -} - -const rightHeader = () => ( -
-
- -
-
- -
- -
-); - -export default async function DocsLayout({ children }: DocsLayoutProps) { - const user = await getCurrentUser(); - - return ( -
- - - -
{children}
- -
- ); -} diff --git a/apps/www/src/app/(marketing)/[...slug]/page.tsx b/apps/www/src/app/(marketing)/[...slug]/page.tsx deleted file mode 100644 index 809d1d7..0000000 --- a/apps/www/src/app/(marketing)/[...slug]/page.tsx +++ /dev/null @@ -1,98 +0,0 @@ -import { notFound } from "next/navigation"; -import { Mdx } from "@/components/content/mdx-components"; -import { allPages } from "contentlayer/generated"; - -import "@/styles/mdx.css"; - -import type { Metadata } from "next"; -import { siteConfig } from "@/config/site"; -import { env } from "@/env"; -import { absoluteUrl } from "@/lib/utils"; - -interface PageProps { - params: { - slug: string[]; - }; -} - -async function getPageFromParams(params) { - const slug = params?.slug?.join("/"); - const page = allPages.find((page) => page.slugAsParams === slug); - - if (!page) { - null; - } - - return page; -} - -export async function generateMetadata({ - params, -}: PageProps): Promise { - const page = await getPageFromParams(params); - - if (!page) { - return {}; - } - - const url = env.NEXT_PUBLIC_APP_URL; - - const ogUrl = new URL(`${url}/api/og`); - ogUrl.searchParams.set("heading", page.title); - ogUrl.searchParams.set("type", siteConfig.name); - ogUrl.searchParams.set("mode", "light"); - - return { - title: page.title, - description: page.description, - openGraph: { - title: page.title, - description: page.description, - type: "article", - url: absoluteUrl(page.slug), - images: [ - { - url: ogUrl.toString(), - width: 1200, - height: 630, - alt: page.title, - }, - ], - }, - twitter: { - card: "summary_large_image", - title: page.title, - description: page.description, - images: [ogUrl.toString()], - }, - }; -} - -export async function generateStaticParams(): Promise { - return allPages.map((page) => ({ - slug: page.slugAsParams.split("/"), - })); -} - -export default async function PagePage({ params }: PageProps) { - const page = await getPageFromParams(params); - - if (!page) { - notFound(); - } - - return ( -
-
-

- {page.title} -

- {page.description && ( -

{page.description}

- )} -
-
- -
- ); -} diff --git a/apps/www/src/app/(marketing)/blog/[...slug]/page.tsx b/apps/www/src/app/(marketing)/blog/[...slug]/page.tsx deleted file mode 100644 index 41c5982..0000000 --- a/apps/www/src/app/(marketing)/blog/[...slug]/page.tsx +++ /dev/null @@ -1,170 +0,0 @@ -import { notFound } from "next/navigation"; -import { Mdx } from "@/components/content/mdx-components"; -import { allAuthors, allPosts } from "contentlayer/generated"; - -import "@/styles/mdx.css"; - -import type { Metadata } from "next"; -import Image from "next/image"; -import Link from "next/link"; -import { Icons } from "@/components/shared/icons"; -import { env } from "@/env"; -import { absoluteUrl, cn, formatDate } from "@/lib/utils"; -import Balancer from "react-wrap-balancer"; - -import { buttonVariants } from "@dingify/ui/components/button"; - -interface PostPageProps { - params: { - slug: string[]; - }; -} - -async function getPostFromParams(params) { - const slug = params?.slug?.join("/"); - const post = allPosts.find((post) => post.slugAsParams === slug); - - if (!post) { - null; - } - - return post; -} - -export async function generateMetadata({ - params, -}: PostPageProps): Promise { - const post = await getPostFromParams(params); - - if (!post) { - return {}; - } - - const url = env.NEXT_PUBLIC_APP_URL; - - const ogUrl = new URL(`${url}/api/og`); - ogUrl.searchParams.set("heading", post.title); - ogUrl.searchParams.set("type", "Blog Post"); - ogUrl.searchParams.set("mode", "dark"); - - return { - title: post.title, - description: post.description, - authors: post.authors.map((author) => ({ - name: author, - })), - openGraph: { - title: post.title, - description: post.description, - type: "article", - url: absoluteUrl(post.slug), - images: [ - { - url: ogUrl.toString(), - width: 1200, - height: 630, - alt: post.title, - }, - ], - }, - twitter: { - card: "summary_large_image", - title: post.title, - description: post.description, - images: [ogUrl.toString()], - }, - }; -} - -export async function generateStaticParams(): Promise< - PostPageProps["params"][] -> { - return allPosts.map((post) => ({ - slug: post.slugAsParams.split("/"), - })); -} - -export default async function PostPage({ params }: PostPageProps) { - const post = await getPostFromParams(params); - - if (!post) { - notFound(); - } - - const authors = post.authors.map((author) => - allAuthors.find(({ slug }) => slug === `/authors/${author}`) - ); - - return ( -
- - - See all posts - -
- {post.date && ( - - )} -

- {post.title} -

- {authors.length ? ( -
- {authors.map((author) => - author ? ( - - {author.title} -
-

{author.title}

-

- @{author.twitter} -

-
- - ) : null - )} -
- ) : null} -
- {post.image && ( - {post.title} - )} - -
-
- - - See all posts - -
-
- ); -} diff --git a/apps/www/src/app/(marketing)/blog/page.tsx b/apps/www/src/app/(marketing)/blog/page.tsx deleted file mode 100644 index 08a45d6..0000000 --- a/apps/www/src/app/(marketing)/blog/page.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import { BlogPosts } from "@/components/blog-posts"; -import { allPosts } from "contentlayer/generated"; -import { compareDesc } from "date-fns"; - -export const metadata = { - title: "Dingify Blog - Insights on Real-Time Monitoring & Analytics", - description: - "Explore the latest insights on real-time monitoring, data analytics, and journey tracking strategies in the Dingify blog. Stay ahead with innovative business analytics and industry trends.", -}; - -export default async function BlogPage() { - const posts = allPosts - .filter((post) => post.published) - .sort((a, b) => { - return compareDesc(new Date(a.date), new Date(b.date)); - }); - - return ( -
- -
- ); -} diff --git a/apps/www/src/app/sitemap.ts b/apps/www/src/app/sitemap.ts index 13a026e..38417b7 100644 --- a/apps/www/src/app/sitemap.ts +++ b/apps/www/src/app/sitemap.ts @@ -1,8 +1,7 @@ -import { MetadataRoute } from "next"; -import { allPages, allPosts } from "contentlayer/generated"; +import { MetadataRoute } from "next" export default async function sitemap(): Promise { - const domain = "dingify.io"; // Replace with your actual domain + const domain = "propdock.no" // Replace with your actual domain // Manually added static pages with today's date const staticPagesSitemap = [ @@ -15,22 +14,5 @@ export default async function sitemap(): Promise { lastModified: new Date("2023-11-28"), // Set to November 28, 2023 }, // Add other static pages here if necessary - ]; - - // // Sitemap for dynamic pages - // const pagesSitemap = allPages.map((page) => ({ - // url: `https://${domain}/${page.slug.replace(/^\/+/g, "")}`, // Remove leading - // // lastModified can be included if available - // })); - - // Sitemap for blog posts - const postsSitemap = allPosts - .filter((post) => post.published) - .map((post) => ({ - url: `https://${domain}/${post.slug.replace(/^\/+/g, "")}`, // Correct path and remove leading slashes - lastModified: new Date(post.date), - })); - - // Combine sitemaps - return [...staticPagesSitemap, ...postsSitemap]; + ] } diff --git a/apps/www/src/components/content/mdx-card.tsx b/apps/www/src/components/content/mdx-card.tsx deleted file mode 100644 index 5ec0ac6..0000000 --- a/apps/www/src/components/content/mdx-card.tsx +++ /dev/null @@ -1,37 +0,0 @@ -import Link from "next/link"; -import { cn } from "@/lib/utils"; - -interface CardProps extends React.HTMLAttributes { - href?: string; - disabled?: boolean; -} - -export function MdxCard({ - href, - className, - children, - disabled, - ...props -}: CardProps) { - return ( -
-
-
- {children} -
-
- {href && ( - - View - - )} -
- ); -} diff --git a/apps/www/src/components/content/mdx-components.tsx b/apps/www/src/components/content/mdx-components.tsx deleted file mode 100644 index e3173ad..0000000 --- a/apps/www/src/components/content/mdx-components.tsx +++ /dev/null @@ -1,168 +0,0 @@ -import type { ImageProps } from "next/image"; -import * as React from "react"; -import NextImage from "next/image"; -import { MdxCard } from "@/components/content/mdx-card"; -import { Callout } from "@/components/shared/callout"; -import { cn } from "@/lib/utils"; -import { useMDXComponent } from "next-contentlayer/hooks"; - -const components = { - h1: ({ className, ...props }) => ( -

- ), - h2: ({ className, ...props }) => ( -

- ), - h3: ({ className, ...props }) => ( -

- ), - h4: ({ className, ...props }) => ( -

- ), - h5: ({ className, ...props }) => ( -

- ), - h6: ({ className, ...props }) => ( -
- ), - a: ({ className, ...props }) => ( - - ), - p: ({ className, ...props }) => ( -

- ), - ul: ({ className, ...props }) => ( -

    - ), - ol: ({ className, ...props }) => ( -
      - ), - li: ({ className, ...props }) => ( -
    1. - ), - blockquote: ({ className, ...props }) => ( -
      *]:text-muted-foreground", - className - )} - {...props} - /> - ), - img: ({ - className, - alt, - ...props - }: React.ImgHTMLAttributes) => ( - // eslint-disable-next-line @next/next/no-img-element - {alt} - ), - hr: ({ ...props }) =>
      , - table: ({ className, ...props }: React.HTMLAttributes) => ( -
      - - - ), - tr: ({ className, ...props }: React.HTMLAttributes) => ( - - ), - th: ({ className, ...props }) => ( -
      - ), - td: ({ className, ...props }) => ( - - ), - pre: ({ className, ...props }) => ( -
      -  ),
      -  code: ({ className, ...props }) => (
      -    
      -  ),
      -  Image: (props: ImageProps) => ,
      -  Callout,
      -  Card: MdxCard,
      -};
      -
      -interface MdxProps {
      -  code: string;
      -}
      -
      -export function Mdx({ code }: MdxProps) {
      -  const Component = useMDXComponent(code);
      -
      -  return (
      -    
      - {/* @ts-expect-error */} - -
      - ); -} diff --git a/apps/www/src/components/content/templete-blog/deploying-next-apps.mdx b/apps/www/src/components/content/templete-blog/deploying-next-apps.mdx deleted file mode 100644 index 2599430..0000000 --- a/apps/www/src/components/content/templete-blog/deploying-next-apps.mdx +++ /dev/null @@ -1,219 +0,0 @@ ---- -title: Deploying Next.js Apps -description: How to deploy your Next.js apps on Vercel. -image: /images/blog/blog-post-3.jpg -date: "2023-01-02" -authors: - - shadcn ---- - - - The text below is from the [Tailwind - CSS](https://play.tailwindcss.com/uj1vGACRJA?layout=preview) docs. I copied it - here to test the markdown styles. **Tailwind is awesome. You should use it.** - - -Until now, trying to style an article, document, or blog post with Tailwind has been a tedious task that required a keen eye for typography and a lot of complex custom CSS. - -By default, Tailwind removes all of the default browser styling from paragraphs, headings, lists and more. This ends up being really useful for building application UIs because you spend less time undoing user-agent styles, but when you _really are_ just trying to style some content that came from a rich-text editor in a CMS or a markdown file, it can be surprising and unintuitive. - -We get lots of complaints about it actually, with people regularly asking us things like: - -> Why is Tailwind removing the default styles on my `h1` elements? How do I disable this? What do you mean I lose all the other base styles too? -> We hear you, but we're not convinced that simply disabling our base styles is what you really want. You don't want to have to remove annoying margins every time you use a `p` element in a piece of your dashboard UI. And I doubt you really want your blog posts to use the user-agent styles either — you want them to look _awesome_, not awful. - -The `@tailwindcss/typography` plugin is our attempt to give you what you _actually_ want, without any of the downsides of doing something stupid like disabling our base styles. - -It adds a new `prose` class that you can slap on any block of vanilla HTML content and turn it into a beautiful, well-formatted document: - -```html -
      -

      Garlic bread with cheese: What the science tells us

      -

      - For years parents have espoused the health benefits of eating garlic bread - with cheese to their children, with the food earning such an iconic status - in our culture that kids will often dress up as warm, cheesy loaf for - Halloween. -

      -

      - But a recent study shows that the celebrated appetizer may be linked to a - series of rabies cases springing up around the country. -

      -
      -``` - -For more information about how to use the plugin and the features it includes, [read the documentation](https://github.com/tailwindcss/typography/blob/master/README.md). - ---- - -## What to expect from here on out - -What follows from here is just a bunch of absolute nonsense I've written to dogfood the plugin itself. It includes every sensible typographic element I could think of, like **bold text**, unordered lists, ordered lists, code blocks, block quotes, _and even italics_. - -It's important to cover all of these use cases for a few reasons: - -1. We want everything to look good out of the box. -2. Really just the first reason, that's the whole point of the plugin. -3. Here's a third pretend reason though a list with three items looks more realistic than a list with two items. - -Now we're going to try out another header style. - -### Typography should be easy - -So that's a header for you — with any luck if we've done our job correctly that will look pretty reasonable. - -Something a wise person once told me about typography is: - -> Typography is pretty important if you don't want your stuff to look like trash. Make it good then it won't be bad. - -It's probably important that images look okay here by default as well: - -Image - -Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. - -Now I'm going to show you an example of an unordered list to make sure that looks good, too: - -- So here is the first item in this list. -- In this example we're keeping the items short. -- Later, we'll use longer, more complex list items. - -And that's the end of this section. - -## What if we stack headings? - -### We should make sure that looks good, too. - -Sometimes you have headings directly underneath each other. In those cases you often have to undo the top margin on the second heading because it usually looks better for the headings to be closer together than a paragraph followed by a heading should be. - -### When a heading comes after a paragraph … - -When a heading comes after a paragraph, we need a bit more space, like I already mentioned above. Now let's see what a more complex list would look like. - -- **I often do this thing where list items have headings.** - - For some reason I think this looks cool which is unfortunate because it's pretty annoying to get the styles right. - - I often have two or three paragraphs in these list items, too, so the hard part is getting the spacing between the paragraphs, list item heading, and separate list items to all make sense. Pretty tough honestly, you could make a strong argument that you just shouldn't write this way. - -- **Since this is a list, I need at least two items.** - - I explained what I'm doing already in the previous list item, but a list wouldn't be a list if it only had one item, and we really want this to look realistic. That's why I've added this second list item so I actually have something to look at when writing the styles. - -- **It's not a bad idea to add a third item either.** - - I think it probably would've been fine to just use two items but three is definitely not worse, and since I seem to be having no trouble making up arbitrary things to type, I might as well include it. - -After this sort of list I usually have a closing statement or paragraph, because it kinda looks weird jumping right to a heading. - -## Code should look okay by default. - -I think most people are going to use [highlight.js](https://highlightjs.org/) or [Prism](https://prismjs.com/) or something if they want to style their code blocks but it wouldn't hurt to make them look _okay_ out of the box, even with no syntax highlighting. - -Here's what a default `tailwind.config.js` file looks like at the time of writing: - -```js -module.exports = { - purge: [], - theme: { - extend: {}, - }, - variants: {}, - plugins: [], -}; -``` - -Hopefully that looks good enough to you. - -### What about nested lists? - -Nested lists basically always look bad which is why editors like Medium don't even let you do it, but I guess since some of you goofballs are going to do it we have to carry the burden of at least making it work. - -1. **Nested lists are rarely a good idea.** - - You might feel like you are being really "organized" or something but you are just creating a gross shape on the screen that is hard to read. - - Nested navigation in UIs is a bad idea too, keep things as flat as possible. - - Nesting tons of folders in your source code is also not helpful. -2. **Since we need to have more items, here's another one.** - - I'm not sure if we'll bother styling more than two levels deep. - - Two is already too much, three is guaranteed to be a bad idea. - - If you nest four levels deep you belong in prison. -3. **Two items isn't really a list, three is good though.** - - Again please don't nest lists if you want people to actually read your content. - - Nobody wants to look at this. - - I'm upset that we even have to bother styling this. - -The most annoying thing about lists in Markdown is that `
    2. ` elements aren't given a child `

      ` tag unless there are multiple paragraphs in the list item. That means I have to worry about styling that annoying situation too. - -- **For example, here's another nested list.** - - But this time with a second paragraph. - - - These list items won't have `

      ` tags - - Because they are only one line each - -- **But in this second top-level list item, they will.** - - This is especially annoying because of the spacing on this paragraph. - - - As you can see here, because I've added a second line, this list item now has a `

      ` tag. - - This is the second line I'm talking about by the way. - - - Finally here's another list item so it's more like a list. - -- A closing list item, but with no nested list, because why not? - -And finally a sentence to close off this section. - -## There are other elements we need to style - -I almost forgot to mention links, like [this link to the Tailwind CSS website](https://tailwindcss.com). We almost made them blue but that's so yesterday, so we went with dark gray, feels edgier. - -We even included table styles, check it out: - -| Wrestler | Origin | Finisher | -| ----------------------- | ------------ | ------------------ | -| Bret "The Hitman" Hart | Calgary, AB | Sharpshooter | -| Stone Cold Steve Austin | Austin, TX | Stone Cold Stunner | -| Randy Savage | Sarasota, FL | Elbow Drop | -| Vader | Boulder, CO | Vader Bomb | -| Razor Ramon | Chuluota, FL | Razor's Edge | - -We also need to make sure inline code looks good, like if I wanted to talk about `` elements or tell you the good news about `@tailwindcss/typography`. - -### Sometimes I even use `code` in headings - -Even though it's probably a bad idea, and historically I've had a hard time making it look good. This _"wrap the code blocks in backticks"_ trick works pretty well though really. - -Another thing I've done in the past is put a `code` tag inside of a link, like if I wanted to tell you about the [`tailwindcss/docs`](https://github.com/tailwindcss/docs) repository. I don't love that there is an underline below the backticks but it is absolutely not worth the madness it would require to avoid it. - -#### We haven't used an `h4` yet - -But now we have. Please don't use `h5` or `h6` in your content, Medium only supports two heading levels for a reason, you animals. I honestly considered using a `before` pseudo-element to scream at you if you use an `h5` or `h6`. - -We don't style them at all out of the box because `h4` elements are already so small that they are the same size as the body copy. What are we supposed to do with an `h5`, make it _smaller_ than the body copy? No thanks. - -### We still need to think about stacked headings though. - -#### Let's make sure we don't screw that up with `h4` elements, either. - -Phew, with any luck we have styled the headings above this text and they look pretty good. - -Let's add a closing paragraph here so things end with a decently sized block of text. I can't explain why I want things to end that way but I have to assume it's because I think things will look weird or unbalanced if there is a heading too close to the end of the document. - -What I've written here is probably long enough, but adding this final sentence can't hurt. - -## GitHub Flavored Markdown - -I've also added support for GitHub Flavored Mardown using `remark-gfm`. - -With `remark-gfm`, we get a few extra features in our markdown. Example: autolink literals. - -A link like www.example.com or https://example.com would automatically be converted into an `a` tag. - -This works for email links too: contact@example.com. diff --git a/apps/www/src/components/content/templete-blog/dynamic-routing-static-regeneration copy.mdx b/apps/www/src/components/content/templete-blog/dynamic-routing-static-regeneration copy.mdx deleted file mode 100644 index 5a0ac70..0000000 --- a/apps/www/src/components/content/templete-blog/dynamic-routing-static-regeneration copy.mdx +++ /dev/null @@ -1,219 +0,0 @@ ---- -title: Dynamic Routing and Static Regeneration -description: How to use incremental static regeneration using dynamic routes. -image: /images/blog/blog-post-2.jpg -date: "2023-03-04" -authors: - - codehagen ---- - - - The text below is from the [Tailwind - CSS](https://play.tailwindcss.com/uj1vGACRJA?layout=preview) docs. I copied it - here to test the markdown styles. **Tailwind is awesome. You should use it.** - - -Until now, trying to style an article, document, or blog post with Tailwind has been a tedious task that required a keen eye for typography and a lot of complex custom CSS. - -By default, Tailwind removes all of the default browser styling from paragraphs, headings, lists and more. This ends up being really useful for building application UIs because you spend less time undoing user-agent styles, but when you _really are_ just trying to style some content that came from a rich-text editor in a CMS or a markdown file, it can be surprising and unintuitive. - -We get lots of complaints about it actually, with people regularly asking us things like: - -> Why is Tailwind removing the default styles on my `h1` elements? How do I disable this? What do you mean I lose all the other base styles too? -> We hear you, but we're not convinced that simply disabling our base styles is what you really want. You don't want to have to remove annoying margins every time you use a `p` element in a piece of your dashboard UI. And I doubt you really want your blog posts to use the user-agent styles either — you want them to look _awesome_, not awful. - -The `@tailwindcss/typography` plugin is our attempt to give you what you _actually_ want, without any of the downsides of doing something stupid like disabling our base styles. - -It adds a new `prose` class that you can slap on any block of vanilla HTML content and turn it into a beautiful, well-formatted document: - -```html -

      -

      Garlic bread with cheese: What the science tells us

      -

      - For years parents have espoused the health benefits of eating garlic bread - with cheese to their children, with the food earning such an iconic status - in our culture that kids will often dress up as warm, cheesy loaf for - Halloween. -

      -

      - But a recent study shows that the celebrated appetizer may be linked to a - series of rabies cases springing up around the country. -

      -
      -``` - -For more information about how to use the plugin and the features it includes, [read the documentation](https://github.com/tailwindcss/typography/blob/master/README.md). - ---- - -## What to expect from here on out - -What follows from here is just a bunch of absolute nonsense I've written to dogfood the plugin itself. It includes every sensible typographic element I could think of, like **bold text**, unordered lists, ordered lists, code blocks, block quotes, _and even italics_. - -It's important to cover all of these use cases for a few reasons: - -1. We want everything to look good out of the box. -2. Really just the first reason, that's the whole point of the plugin. -3. Here's a third pretend reason though a list with three items looks more realistic than a list with two items. - -Now we're going to try out another header style. - -### Typography should be easy - -So that's a header for you — with any luck if we've done our job correctly that will look pretty reasonable. - -Something a wise person once told me about typography is: - -> Typography is pretty important if you don't want your stuff to look like trash. Make it good then it won't be bad. - -It's probably important that images look okay here by default as well: - -Image - -Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. - -Now I'm going to show you an example of an unordered list to make sure that looks good, too: - -- So here is the first item in this list. -- In this example we're keeping the items short. -- Later, we'll use longer, more complex list items. - -And that's the end of this section. - -## What if we stack headings? - -### We should make sure that looks good, too. - -Sometimes you have headings directly underneath each other. In those cases you often have to undo the top margin on the second heading because it usually looks better for the headings to be closer together than a paragraph followed by a heading should be. - -### When a heading comes after a paragraph … - -When a heading comes after a paragraph, we need a bit more space, like I already mentioned above. Now let's see what a more complex list would look like. - -- **I often do this thing where list items have headings.** - - For some reason I think this looks cool which is unfortunate because it's pretty annoying to get the styles right. - - I often have two or three paragraphs in these list items, too, so the hard part is getting the spacing between the paragraphs, list item heading, and separate list items to all make sense. Pretty tough honestly, you could make a strong argument that you just shouldn't write this way. - -- **Since this is a list, I need at least two items.** - - I explained what I'm doing already in the previous list item, but a list wouldn't be a list if it only had one item, and we really want this to look realistic. That's why I've added this second list item so I actually have something to look at when writing the styles. - -- **It's not a bad idea to add a third item either.** - - I think it probably would've been fine to just use two items but three is definitely not worse, and since I seem to be having no trouble making up arbitrary things to type, I might as well include it. - -After this sort of list I usually have a closing statement or paragraph, because it kinda looks weird jumping right to a heading. - -## Code should look okay by default. - -I think most people are going to use [highlight.js](https://highlightjs.org/) or [Prism](https://prismjs.com/) or something if they want to style their code blocks but it wouldn't hurt to make them look _okay_ out of the box, even with no syntax highlighting. - -Here's what a default `tailwind.config.js` file looks like at the time of writing: - -```js -module.exports = { - purge: [], - theme: { - extend: {}, - }, - variants: {}, - plugins: [], -}; -``` - -Hopefully that looks good enough to you. - -### What about nested lists? - -Nested lists basically always look bad which is why editors like Medium don't even let you do it, but I guess since some of you goofballs are going to do it we have to carry the burden of at least making it work. - -1. **Nested lists are rarely a good idea.** - - You might feel like you are being really "organized" or something but you are just creating a gross shape on the screen that is hard to read. - - Nested navigation in UIs is a bad idea too, keep things as flat as possible. - - Nesting tons of folders in your source code is also not helpful. -2. **Since we need to have more items, here's another one.** - - I'm not sure if we'll bother styling more than two levels deep. - - Two is already too much, three is guaranteed to be a bad idea. - - If you nest four levels deep you belong in prison. -3. **Two items isn't really a list, three is good though.** - - Again please don't nest lists if you want people to actually read your content. - - Nobody wants to look at this. - - I'm upset that we even have to bother styling this. - -The most annoying thing about lists in Markdown is that `
    3. ` elements aren't given a child `

      ` tag unless there are multiple paragraphs in the list item. That means I have to worry about styling that annoying situation too. - -- **For example, here's another nested list.** - - But this time with a second paragraph. - - - These list items won't have `

      ` tags - - Because they are only one line each - -- **But in this second top-level list item, they will.** - - This is especially annoying because of the spacing on this paragraph. - - - As you can see here, because I've added a second line, this list item now has a `

      ` tag. - - This is the second line I'm talking about by the way. - - - Finally here's another list item so it's more like a list. - -- A closing list item, but with no nested list, because why not? - -And finally a sentence to close off this section. - -## There are other elements we need to style - -I almost forgot to mention links, like [this link to the Tailwind CSS website](https://tailwindcss.com). We almost made them blue but that's so yesterday, so we went with dark gray, feels edgier. - -We even included table styles, check it out: - -| Wrestler | Origin | Finisher | -| ----------------------- | ------------ | ------------------ | -| Bret "The Hitman" Hart | Calgary, AB | Sharpshooter | -| Stone Cold Steve Austin | Austin, TX | Stone Cold Stunner | -| Randy Savage | Sarasota, FL | Elbow Drop | -| Vader | Boulder, CO | Vader Bomb | -| Razor Ramon | Chuluota, FL | Razor's Edge | - -We also need to make sure inline code looks good, like if I wanted to talk about `` elements or tell you the good news about `@tailwindcss/typography`. - -### Sometimes I even use `code` in headings - -Even though it's probably a bad idea, and historically I've had a hard time making it look good. This _"wrap the code blocks in backticks"_ trick works pretty well though really. - -Another thing I've done in the past is put a `code` tag inside of a link, like if I wanted to tell you about the [`tailwindcss/docs`](https://github.com/tailwindcss/docs) repository. I don't love that there is an underline below the backticks but it is absolutely not worth the madness it would require to avoid it. - -#### We haven't used an `h4` yet - -But now we have. Please don't use `h5` or `h6` in your content, Medium only supports two heading levels for a reason, you animals. I honestly considered using a `before` pseudo-element to scream at you if you use an `h5` or `h6`. - -We don't style them at all out of the box because `h4` elements are already so small that they are the same size as the body copy. What are we supposed to do with an `h5`, make it _smaller_ than the body copy? No thanks. - -### We still need to think about stacked headings though. - -#### Let's make sure we don't screw that up with `h4` elements, either. - -Phew, with any luck we have styled the headings above this text and they look pretty good. - -Let's add a closing paragraph here so things end with a decently sized block of text. I can't explain why I want things to end that way but I have to assume it's because I think things will look weird or unbalanced if there is a heading too close to the end of the document. - -What I've written here is probably long enough, but adding this final sentence can't hurt. - -## GitHub Flavored Markdown - -I've also added support for GitHub Flavored Mardown using `remark-gfm`. - -With `remark-gfm`, we get a few extra features in our markdown. Example: autolink literals. - -A link like www.example.com or https://example.com would automatically be converted into an `a` tag. - -This works for email links too: contact@example.com. diff --git a/apps/www/src/components/content/templete-blog/preview-mode-headless-cms.mdx b/apps/www/src/components/content/templete-blog/preview-mode-headless-cms.mdx deleted file mode 100644 index e90e247..0000000 --- a/apps/www/src/components/content/templete-blog/preview-mode-headless-cms.mdx +++ /dev/null @@ -1,219 +0,0 @@ ---- -title: Preview Mode for Headless CMS -description: How to implement preview mode in your headless CMS. -date: "2023-04-09" -image: /images/blog/blog-post-1.jpg -authors: - - shadcn ---- - - - The text below is from the [Tailwind - CSS](https://play.tailwindcss.com/uj1vGACRJA?layout=preview) docs. I copied it - here to test the markdown styles. **Tailwind is awesome. You should use it.** - - -Until now, trying to style an article, document, or blog post with Tailwind has been a tedious task that required a keen eye for typography and a lot of complex custom CSS. - -By default, Tailwind removes all of the default browser styling from paragraphs, headings, lists and more. This ends up being really useful for building application UIs because you spend less time undoing user-agent styles, but when you _really are_ just trying to style some content that came from a rich-text editor in a CMS or a markdown file, it can be surprising and unintuitive. - -We get lots of complaints about it actually, with people regularly asking us things like: - -> Why is Tailwind removing the default styles on my `h1` elements? How do I disable this? What do you mean I lose all the other base styles too? -> We hear you, but we're not convinced that simply disabling our base styles is what you really want. You don't want to have to remove annoying margins every time you use a `p` element in a piece of your dashboard UI. And I doubt you really want your blog posts to use the user-agent styles either — you want them to look _awesome_, not awful. - -The `@tailwindcss/typography` plugin is our attempt to give you what you _actually_ want, without any of the downsides of doing something stupid like disabling our base styles. - -It adds a new `prose` class that you can slap on any block of vanilla HTML content and turn it into a beautiful, well-formatted document: - -```html -

      -

      Garlic bread with cheese: What the science tells us

      -

      - For years parents have espoused the health benefits of eating garlic bread - with cheese to their children, with the food earning such an iconic status - in our culture that kids will often dress up as warm, cheesy loaf for - Halloween. -

      -

      - But a recent study shows that the celebrated appetizer may be linked to a - series of rabies cases springing up around the country. -

      -
      -``` - -For more information about how to use the plugin and the features it includes, [read the documentation](https://github.com/tailwindcss/typography/blob/master/README.md). - ---- - -## What to expect from here on out - -What follows from here is just a bunch of absolute nonsense I've written to dogfood the plugin itself. It includes every sensible typographic element I could think of, like **bold text**, unordered lists, ordered lists, code blocks, block quotes, _and even italics_. - -It's important to cover all of these use cases for a few reasons: - -1. We want everything to look good out of the box. -2. Really just the first reason, that's the whole point of the plugin. -3. Here's a third pretend reason though a list with three items looks more realistic than a list with two items. - -Now we're going to try out another header style. - -### Typography should be easy - -So that's a header for you — with any luck if we've done our job correctly that will look pretty reasonable. - -Something a wise person once told me about typography is: - -> Typography is pretty important if you don't want your stuff to look like trash. Make it good then it won't be bad. - -It's probably important that images look okay here by default as well: - -Image - -Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. - -Now I'm going to show you an example of an unordered list to make sure that looks good, too: - -- So here is the first item in this list. -- In this example we're keeping the items short. -- Later, we'll use longer, more complex list items. - -And that's the end of this section. - -## What if we stack headings? - -### We should make sure that looks good, too. - -Sometimes you have headings directly underneath each other. In those cases you often have to undo the top margin on the second heading because it usually looks better for the headings to be closer together than a paragraph followed by a heading should be. - -### When a heading comes after a paragraph … - -When a heading comes after a paragraph, we need a bit more space, like I already mentioned above. Now let's see what a more complex list would look like. - -- **I often do this thing where list items have headings.** - - For some reason I think this looks cool which is unfortunate because it's pretty annoying to get the styles right. - - I often have two or three paragraphs in these list items, too, so the hard part is getting the spacing between the paragraphs, list item heading, and separate list items to all make sense. Pretty tough honestly, you could make a strong argument that you just shouldn't write this way. - -- **Since this is a list, I need at least two items.** - - I explained what I'm doing already in the previous list item, but a list wouldn't be a list if it only had one item, and we really want this to look realistic. That's why I've added this second list item so I actually have something to look at when writing the styles. - -- **It's not a bad idea to add a third item either.** - - I think it probably would've been fine to just use two items but three is definitely not worse, and since I seem to be having no trouble making up arbitrary things to type, I might as well include it. - -After this sort of list I usually have a closing statement or paragraph, because it kinda looks weird jumping right to a heading. - -## Code should look okay by default. - -I think most people are going to use [highlight.js](https://highlightjs.org/) or [Prism](https://prismjs.com/) or something if they want to style their code blocks but it wouldn't hurt to make them look _okay_ out of the box, even with no syntax highlighting. - -Here's what a default `tailwind.config.js` file looks like at the time of writing: - -```js -module.exports = { - purge: [], - theme: { - extend: {}, - }, - variants: {}, - plugins: [], -}; -``` - -Hopefully that looks good enough to you. - -### What about nested lists? - -Nested lists basically always look bad which is why editors like Medium don't even let you do it, but I guess since some of you goofballs are going to do it we have to carry the burden of at least making it work. - -1. **Nested lists are rarely a good idea.** - - You might feel like you are being really "organized" or something but you are just creating a gross shape on the screen that is hard to read. - - Nested navigation in UIs is a bad idea too, keep things as flat as possible. - - Nesting tons of folders in your source code is also not helpful. -2. **Since we need to have more items, here's another one.** - - I'm not sure if we'll bother styling more than two levels deep. - - Two is already too much, three is guaranteed to be a bad idea. - - If you nest four levels deep you belong in prison. -3. **Two items isn't really a list, three is good though.** - - Again please don't nest lists if you want people to actually read your content. - - Nobody wants to look at this. - - I'm upset that we even have to bother styling this. - -The most annoying thing about lists in Markdown is that `
    4. ` elements aren't given a child `

      ` tag unless there are multiple paragraphs in the list item. That means I have to worry about styling that annoying situation too. - -- **For example, here's another nested list.** - - But this time with a second paragraph. - - - These list items won't have `

      ` tags - - Because they are only one line each - -- **But in this second top-level list item, they will.** - - This is especially annoying because of the spacing on this paragraph. - - - As you can see here, because I've added a second line, this list item now has a `

      ` tag. - - This is the second line I'm talking about by the way. - - - Finally here's another list item so it's more like a list. - -- A closing list item, but with no nested list, because why not? - -And finally a sentence to close off this section. - -## There are other elements we need to style - -I almost forgot to mention links, like [this link to the Tailwind CSS website](https://tailwindcss.com). We almost made them blue but that's so yesterday, so we went with dark gray, feels edgier. - -We even included table styles, check it out: - -| Wrestler | Origin | Finisher | -| ----------------------- | ------------ | ------------------ | -| Bret "The Hitman" Hart | Calgary, AB | Sharpshooter | -| Stone Cold Steve Austin | Austin, TX | Stone Cold Stunner | -| Randy Savage | Sarasota, FL | Elbow Drop | -| Vader | Boulder, CO | Vader Bomb | -| Razor Ramon | Chuluota, FL | Razor's Edge | - -We also need to make sure inline code looks good, like if I wanted to talk about `` elements or tell you the good news about `@tailwindcss/typography`. - -### Sometimes I even use `code` in headings - -Even though it's probably a bad idea, and historically I've had a hard time making it look good. This _"wrap the code blocks in backticks"_ trick works pretty well though really. - -Another thing I've done in the past is put a `code` tag inside of a link, like if I wanted to tell you about the [`tailwindcss/docs`](https://github.com/tailwindcss/docs) repository. I don't love that there is an underline below the backticks but it is absolutely not worth the madness it would require to avoid it. - -#### We haven't used an `h4` yet - -But now we have. Please don't use `h5` or `h6` in your content, Medium only supports two heading levels for a reason, you animals. I honestly considered using a `before` pseudo-element to scream at you if you use an `h5` or `h6`. - -We don't style them at all out of the box because `h4` elements are already so small that they are the same size as the body copy. What are we supposed to do with an `h5`, make it _smaller_ than the body copy? No thanks. - -### We still need to think about stacked headings though. - -#### Let's make sure we don't screw that up with `h4` elements, either. - -Phew, with any luck we have styled the headings above this text and they look pretty good. - -Let's add a closing paragraph here so things end with a decently sized block of text. I can't explain why I want things to end that way but I have to assume it's because I think things will look weird or unbalanced if there is a heading too close to the end of the document. - -What I've written here is probably long enough, but adding this final sentence can't hurt. - -## GitHub Flavored Markdown - -I've also added support for GitHub Flavored Mardown using `remark-gfm`. - -With `remark-gfm`, we get a few extra features in our markdown. Example: autolink literals. - -A link like www.example.com or https://example.com would automatically be converted into an `a` tag. - -This works for email links too: contact@example.com. diff --git a/apps/www/src/components/content/templete-blog/server-client-components.mdx b/apps/www/src/components/content/templete-blog/server-client-components.mdx deleted file mode 100644 index f71d58c..0000000 --- a/apps/www/src/components/content/templete-blog/server-client-components.mdx +++ /dev/null @@ -1,219 +0,0 @@ ---- -title: Server and Client Components -description: React Server Components allow developers to build applications that span the server and client. -image: /images/blog/blog-post-4.jpg -date: "2023-01-08" -authors: - - shadcn ---- - - - The text below is from the [Tailwind - CSS](https://play.tailwindcss.com/uj1vGACRJA?layout=preview) docs. I copied it - here to test the markdown styles. **Tailwind is awesome. You should use it.** - - -Until now, trying to style an article, document, or blog post with Tailwind has been a tedious task that required a keen eye for typography and a lot of complex custom CSS. - -By default, Tailwind removes all of the default browser styling from paragraphs, headings, lists and more. This ends up being really useful for building application UIs because you spend less time undoing user-agent styles, but when you _really are_ just trying to style some content that came from a rich-text editor in a CMS or a markdown file, it can be surprising and unintuitive. - -We get lots of complaints about it actually, with people regularly asking us things like: - -> Why is Tailwind removing the default styles on my `h1` elements? How do I disable this? What do you mean I lose all the other base styles too? -> We hear you, but we're not convinced that simply disabling our base styles is what you really want. You don't want to have to remove annoying margins every time you use a `p` element in a piece of your dashboard UI. And I doubt you really want your blog posts to use the user-agent styles either — you want them to look _awesome_, not awful. - -The `@tailwindcss/typography` plugin is our attempt to give you what you _actually_ want, without any of the downsides of doing something stupid like disabling our base styles. - -It adds a new `prose` class that you can slap on any block of vanilla HTML content and turn it into a beautiful, well-formatted document: - -```html -

      -

      Garlic bread with cheese: What the science tells us

      -

      - For years parents have espoused the health benefits of eating garlic bread - with cheese to their children, with the food earning such an iconic status - in our culture that kids will often dress up as warm, cheesy loaf for - Halloween. -

      -

      - But a recent study shows that the celebrated appetizer may be linked to a - series of rabies cases springing up around the country. -

      -
      -``` - -For more information about how to use the plugin and the features it includes, [read the documentation](https://github.com/tailwindcss/typography/blob/master/README.md). - ---- - -## What to expect from here on out - -What follows from here is just a bunch of absolute nonsense I've written to dogfood the plugin itself. It includes every sensible typographic element I could think of, like **bold text**, unordered lists, ordered lists, code blocks, block quotes, _and even italics_. - -It's important to cover all of these use cases for a few reasons: - -1. We want everything to look good out of the box. -2. Really just the first reason, that's the whole point of the plugin. -3. Here's a third pretend reason though a list with three items looks more realistic than a list with two items. - -Now we're going to try out another header style. - -### Typography should be easy - -So that's a header for you — with any luck if we've done our job correctly that will look pretty reasonable. - -Something a wise person once told me about typography is: - -> Typography is pretty important if you don't want your stuff to look like trash. Make it good then it won't be bad. - -It's probably important that images look okay here by default as well: - -Image - -Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. - -Now I'm going to show you an example of an unordered list to make sure that looks good, too: - -- So here is the first item in this list. -- In this example we're keeping the items short. -- Later, we'll use longer, more complex list items. - -And that's the end of this section. - -## What if we stack headings? - -### We should make sure that looks good, too. - -Sometimes you have headings directly underneath each other. In those cases you often have to undo the top margin on the second heading because it usually looks better for the headings to be closer together than a paragraph followed by a heading should be. - -### When a heading comes after a paragraph … - -When a heading comes after a paragraph, we need a bit more space, like I already mentioned above. Now let's see what a more complex list would look like. - -- **I often do this thing where list items have headings.** - - For some reason I think this looks cool which is unfortunate because it's pretty annoying to get the styles right. - - I often have two or three paragraphs in these list items, too, so the hard part is getting the spacing between the paragraphs, list item heading, and separate list items to all make sense. Pretty tough honestly, you could make a strong argument that you just shouldn't write this way. - -- **Since this is a list, I need at least two items.** - - I explained what I'm doing already in the previous list item, but a list wouldn't be a list if it only had one item, and we really want this to look realistic. That's why I've added this second list item so I actually have something to look at when writing the styles. - -- **It's not a bad idea to add a third item either.** - - I think it probably would've been fine to just use two items but three is definitely not worse, and since I seem to be having no trouble making up arbitrary things to type, I might as well include it. - -After this sort of list I usually have a closing statement or paragraph, because it kinda looks weird jumping right to a heading. - -## Code should look okay by default. - -I think most people are going to use [highlight.js](https://highlightjs.org/) or [Prism](https://prismjs.com/) or something if they want to style their code blocks but it wouldn't hurt to make them look _okay_ out of the box, even with no syntax highlighting. - -Here's what a default `tailwind.config.js` file looks like at the time of writing: - -```js -module.exports = { - purge: [], - theme: { - extend: {}, - }, - variants: {}, - plugins: [], -}; -``` - -Hopefully that looks good enough to you. - -### What about nested lists? - -Nested lists basically always look bad which is why editors like Medium don't even let you do it, but I guess since some of you goofballs are going to do it we have to carry the burden of at least making it work. - -1. **Nested lists are rarely a good idea.** - - You might feel like you are being really "organized" or something but you are just creating a gross shape on the screen that is hard to read. - - Nested navigation in UIs is a bad idea too, keep things as flat as possible. - - Nesting tons of folders in your source code is also not helpful. -2. **Since we need to have more items, here's another one.** - - I'm not sure if we'll bother styling more than two levels deep. - - Two is already too much, three is guaranteed to be a bad idea. - - If you nest four levels deep you belong in prison. -3. **Two items isn't really a list, three is good though.** - - Again please don't nest lists if you want people to actually read your content. - - Nobody wants to look at this. - - I'm upset that we even have to bother styling this. - -The most annoying thing about lists in Markdown is that `
    5. ` elements aren't given a child `

      ` tag unless there are multiple paragraphs in the list item. That means I have to worry about styling that annoying situation too. - -- **For example, here's another nested list.** - - But this time with a second paragraph. - - - These list items won't have `

      ` tags - - Because they are only one line each - -- **But in this second top-level list item, they will.** - - This is especially annoying because of the spacing on this paragraph. - - - As you can see here, because I've added a second line, this list item now has a `

      ` tag. - - This is the second line I'm talking about by the way. - - - Finally here's another list item so it's more like a list. - -- A closing list item, but with no nested list, because why not? - -And finally a sentence to close off this section. - -## There are other elements we need to style - -I almost forgot to mention links, like [this link to the Tailwind CSS website](https://tailwindcss.com). We almost made them blue but that's so yesterday, so we went with dark gray, feels edgier. - -We even included table styles, check it out: - -| Wrestler | Origin | Finisher | -| ----------------------- | ------------ | ------------------ | -| Bret "The Hitman" Hart | Calgary, AB | Sharpshooter | -| Stone Cold Steve Austin | Austin, TX | Stone Cold Stunner | -| Randy Savage | Sarasota, FL | Elbow Drop | -| Vader | Boulder, CO | Vader Bomb | -| Razor Ramon | Chuluota, FL | Razor's Edge | - -We also need to make sure inline code looks good, like if I wanted to talk about `` elements or tell you the good news about `@tailwindcss/typography`. - -### Sometimes I even use `code` in headings - -Even though it's probably a bad idea, and historically I've had a hard time making it look good. This _"wrap the code blocks in backticks"_ trick works pretty well though really. - -Another thing I've done in the past is put a `code` tag inside of a link, like if I wanted to tell you about the [`tailwindcss/docs`](https://github.com/tailwindcss/docs) repository. I don't love that there is an underline below the backticks but it is absolutely not worth the madness it would require to avoid it. - -#### We haven't used an `h4` yet - -But now we have. Please don't use `h5` or `h6` in your content, Medium only supports two heading levels for a reason, you animals. I honestly considered using a `before` pseudo-element to scream at you if you use an `h5` or `h6`. - -We don't style them at all out of the box because `h4` elements are already so small that they are the same size as the body copy. What are we supposed to do with an `h5`, make it _smaller_ than the body copy? No thanks. - -### We still need to think about stacked headings though. - -#### Let's make sure we don't screw that up with `h4` elements, either. - -Phew, with any luck we have styled the headings above this text and they look pretty good. - -Let's add a closing paragraph here so things end with a decently sized block of text. I can't explain why I want things to end that way but I have to assume it's because I think things will look weird or unbalanced if there is a heading too close to the end of the document. - -What I've written here is probably long enough, but adding this final sentence can't hurt. - -## GitHub Flavored Markdown - -I've also added support for GitHub Flavored Mardown using `remark-gfm`. - -With `remark-gfm`, we get a few extra features in our markdown. Example: autolink literals. - -A link like www.example.com or https://example.com would automatically be converted into an `a` tag. - -This works for email links too: contact@example.com. diff --git a/apps/www/src/components/docs/pager.tsx b/apps/www/src/components/docs/pager.tsx deleted file mode 100644 index b7f409c..0000000 --- a/apps/www/src/components/docs/pager.tsx +++ /dev/null @@ -1,64 +0,0 @@ -import type { Doc } from "contentlayer/generated"; -import Link from "next/link"; -import { Icons } from "@/components/shared/icons"; -import { docsConfig } from "@/config/docs"; -import { cn } from "@/lib/utils"; - -import { buttonVariants } from "@dingify/ui/components/button"; - -interface DocsPagerProps { - doc: Doc; -} - -export function DocsPager({ doc }: DocsPagerProps) { - const pager = getPagerForDoc(doc); - - if (!pager) { - return null; - } - - return ( -

      - {pager.prev && ( - - - {pager.prev.title} - - )} - {pager.next && ( - - {pager.next.title} - - - )} -
      - ); -} - -export function getPagerForDoc(doc: Doc) { - const flattenedLinks = [null, ...flatten(docsConfig.sidebarNav), null]; - const activeIndex = flattenedLinks.findIndex( - (link) => doc.slug === link?.href - ); - const prev = activeIndex !== 0 ? flattenedLinks[activeIndex - 1] : null; - const next = - activeIndex !== flattenedLinks.length - 1 - ? flattenedLinks[activeIndex + 1] - : null; - return { - prev, - next, - }; -} - -export function flatten(links: { items? }[]) { - return links.reduce((flat, link) => { - return flat.concat(link.items ? flatten(link.items) : link); - }, []); -} diff --git a/apps/www/src/config/docs.ts b/apps/www/src/config/docs.ts index 785b702..18356c4 100644 --- a/apps/www/src/config/docs.ts +++ b/apps/www/src/config/docs.ts @@ -1,4 +1,4 @@ -import { DocsConfig } from "@/types"; +import { DocsConfig } from "@/types" export const docsConfig: DocsConfig = { mainNav: [ @@ -103,4 +103,4 @@ export const docsConfig: DocsConfig = { ], }, ], -}; +} diff --git a/apps/www/src/content/authors/codehagen.mdx b/apps/www/src/content/authors/codehagen.mdx deleted file mode 100644 index 28fca2d..0000000 --- a/apps/www/src/content/authors/codehagen.mdx +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: Christer -avatar: /images/avatars/shadcn.png -twitter: codehagen ---- diff --git a/apps/www/src/content/authors/shadcn.mdx b/apps/www/src/content/authors/shadcn.mdx deleted file mode 100644 index 0883499..0000000 --- a/apps/www/src/content/authors/shadcn.mdx +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: shadcn -avatar: /images/avatars/shadcn.png -twitter: shadcn ---- diff --git a/apps/www/src/content/blog/how-propwrite-makes-listings-irresistible.mdx b/apps/www/src/content/blog/how-propwrite-makes-listings-irresistible.mdx deleted file mode 100644 index 4444fbe..0000000 --- a/apps/www/src/content/blog/how-propwrite-makes-listings-irresistible.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: "AI in Real Estate: How Propwrite Makes Listings Irresistible" -description: Explore the transformative AI features of Propwrite that elevate real estate listings to new heights. -image: /images/blog/blog-post-3.jpg -date: "2023-11-23" -authors: - - codehagen ---- - - - Discover the magic behind Propwrite's AI and how it turns ordinary listings - into captivating stories for potential buyers. - - -## Unveiling the Power of AI in Real Estate - -Propwrite's AI technology is redefining real estate listings, making them more than just a collection of features and photos. - -### AI-Enhanced Property Descriptions - -Our AI analyzes and enhances property details, weaving them into engaging narratives that resonate with buyers. - -#### Crafting the Perfect Narrative - -- **Data-Driven Storytelling:** Our AI uses data points to create stories that highlight the unique aspects of each property. -- **Tailored to Market Trends:** It dynamically adjusts to current market demands, ensuring your listing stands out. -- **Buyer-Centric Approach:** The AI crafts descriptions that appeal to the right audience, maximizing interest and engagement. - -##### Propwrite's AI at Work - -Here's a glimpse of how our AI transforms various aspects of a listing: - -| Aspect | AI Enhancement | -| ----------------- | ------------------------------------------------ | -| Property Features | Converts basic details into compelling stories | -| Market Insights | Adapts descriptions to current market trends | -| Buyer Preferences | Personalizes listings to attract the ideal buyer | - -Join the revolution in real estate with Propwrite. Embrace the future where AI drives success in every listing. - -For more insights or to join our community, reach out at [support@propwrite.com](mailto:support@propwrite.com) or connect with us on Discord [here](https://discord.gg/wadg6fNX). diff --git a/apps/www/src/content/blog/propwrite_aI_real_estate_blog_post.mdx b/apps/www/src/content/blog/propwrite_aI_real_estate_blog_post.mdx deleted file mode 100644 index e349109..0000000 --- a/apps/www/src/content/blog/propwrite_aI_real_estate_blog_post.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: "Boost Your Real Estate Business with Propwrite: The AI Advantage" -description: Discover how Propwrite leverages AI to revolutionize real estate, offering unparalleled efficiency and market insights. -image: /images/blog/blog-post-4.jpg -date: "2023-11-29" -authors: - - codehagen ---- - - - Explore the transformative power of AI in real estate with Propwrite and see - how it can elevate your business to new heights. - - -## The AI Revolution in Real Estate - -The real estate market is experiencing a seismic shift, thanks to advancements in AI technology. Propwrite is at the forefront of this revolution, offering cutting-edge solutions to modernize and enhance real estate operations. - -### Transforming Listings with AI - -With Propwrite, real estate listings are no longer just a set of images and descriptions. They are transformed into engaging narratives, each crafted to highlight the unique appeal of a property, thanks to our advanced AI algorithms. - -#### Leveraging AI for Market Insights - -- **Advanced Data Analysis:** Propwrite's AI dives deep into market data, providing valuable insights that can inform your strategy and help you stay ahead of the curve. -- **Trend Forecasting:** Our AI tools are designed to identify and adapt to emerging market trends, ensuring your listings are always relevant and appealing. -- **Efficient Operations:** AI streamlines various aspects of real estate operations, from client communications to scheduling, increasing overall efficiency. - -##### Propwrite: A Game-Changer for Real Estate Professionals - -Propwrite's AI-driven platform is more than just a tool; it's a game-changer for real estate professionals. By automating mundane tasks and offering deep market insights, Propwrite enables agents to focus on what they do best – selling properties. - -###### Connect with Propwrite Today - -Embrace the future of real estate with Propwrite. Join a growing community of professionals who are leveraging AI to transform their businesses. - -For more information or to join our community, contact us at [support@propwrite.com](mailto:support@propwrite.com) or connect on our Discord [here](https://discord.gg/wadg6fNX). diff --git a/apps/www/src/content/blog/welcome-to-propwrite.mdx b/apps/www/src/content/blog/welcome-to-propwrite.mdx deleted file mode 100644 index 775720a..0000000 --- a/apps/www/src/content/blog/welcome-to-propwrite.mdx +++ /dev/null @@ -1,81 +0,0 @@ ---- -title: Welcome to Propwrite -description: Explore how Propwrite's AI is transforming real estate by enhancing listings and operations. -image: /images/blog/blog-post-2.jpg -date: "2023-11-22" -authors: - - codehagen ---- - - - Christer is a real estate agent with a passion for coding. That's why he - created Propwrite - to make every real estate agent's job easier by letting AI - handle the heavy lifting of property listings. - - -Welcome to Propwrite, where AI meets real estate in an innovative blend that’s transforming the industry. - -## Why AI in Real Estate? - -AI is reshaping real estate by bringing a new level of efficiency and insight. It’s not just about automation; it’s about elevating the entire buying and selling experience. - -- AI doesn’t just process data; it uncovers opportunities. -- Think of it as a market whisperer, always staying ahead of trends. -- In short: Listings that not only list but also glisten. - -### Making Listings Stand Out with Propwrite - -Propwrite's AI-driven platform is more than just a tool; it's your partner in crafting listings that catch eyes and capture interest. With our AI, each property description becomes a compelling narrative, drawing potential buyers in from the first word. - -> "Our AI is like a real estate poet, creating listings that are not just informative but also inspiring," says Christer, the brain behind Propwrite. - -#### Streamlining Operations - -Propwrite goes beyond listings. It’s about orchestrating the entire real estate operation seamlessly. From scheduling showings to managing client relationships, our AI is your all-in-one solution for a more organized, efficient, and effective real estate business. - -##### Connect with Us and Join the Community - -The future of real estate is here with Propwrite. We're not just building a product; we're cultivating a community. Join us on this exciting journey to reshape the world of real estate. - -Interested in more insights and networking with like-minded professionals? Join our Discord community [here](--- -title: Welcome to Propwrite -description: Explore how Propwrite's AI is transforming real estate by enhancing listings and operations. -image: /images/blog/blog-post-2.jpg -date: "2023-11-11" -authors: - -- codehagen - ---- - - - Christer is a real estate agent with a passion for coding. That's why he - created Propwrite - to make every real estate agent's job easier by letting AI - handle the heavy lifting of property listings. - - -Welcome to Propwrite, where AI meets real estate in an innovative blend that’s transforming the industry. - -## Why AI in Real Estate? - -AI is reshaping real estate by bringing a new level of efficiency and insight. It’s not just about automation; it’s about elevating the entire buying and selling experience. - -- AI doesn’t just process data; it uncovers opportunities. -- Think of it as a market whisperer, always staying ahead of trends. -- In short: Listings that not only list but also glisten. - -### Making Listings Stand Out with Propwrite - -Propwrite's AI-driven platform is more than just a tool; it's your partner in crafting listings that catch eyes and capture interest. With our AI, each property description becomes a compelling narrative, drawing potential buyers in from the first word. - -> "Our AI is like a real estate poet, creating listings that are not just informative but also inspiring," says Christer, the brain behind Propwrite. - -#### Streamlining Operations - -PPropwrite isn't just revolutionizing listings; it's redefining the entire workflow of real estate operations. Our platform transforms the cumbersome tasks of managing a real estate business into a streamlined, intuitive process. - -##### Connect with Us and Join the Community - -The future of real estate is here with Propwrite. We're not just building a product; we're cultivating a community. Join us on this exciting journey to reshape the world of real estate. - -Interested in more insights and networking with like-minded professionals? Join our Discord community [here](https://discord.gg/wadg6fNX) and be a part of the real estate revolution. diff --git a/apps/www/src/content/docs/documentation/code-blocks.mdx b/apps/www/src/content/docs/documentation/code-blocks.mdx deleted file mode 100644 index 1bbe5a8..0000000 --- a/apps/www/src/content/docs/documentation/code-blocks.mdx +++ /dev/null @@ -1,73 +0,0 @@ ---- -title: Code Blocks -description: Advanced code blocks with highlighting, file names and more. ---- - -The code blocks on the documentation site and the blog are powered by [rehype-pretty-code](https://github.com/atomiks/rehype-pretty-code). The syntax highlighting is done using [shiki](https://github.com/shikijs/shiki). - -It has the following features: - -1. Beautiful code blocks with syntax highlighting. -2. Support for VS Code themes. -3. Works with hundreds of languages. -4. Line and word highlighting. -5. Support for line numbers. -6. Show code block titles using meta strings. - - - -Thanks to Shiki, highlighting is done at build time. No JavaScript is sent to the client for runtime highlighting. - - - -## Example - -```ts showLineNumbers title="next.config.js" {3} /appDir: true/ -import { withContentlayer } from "next-contentlayer"; - -/** @type {import('next').NextConfig} */ -const nextConfig = { - reactStrictMode: true, - images: { - domains: ["avatars.githubusercontent.com"], - }, - experimental: { - appDir: true, - serverComponentsExternalPackages: ["@prisma/client"], - }, -}; - -export default withContentlayer(nextConfig); -``` - -## Title - -````mdx -```ts title="path/to/file.ts" -// Code here -``` -```` - -## Line Highlight - -````mdx -```ts {1,3-6} -// Highlight line 1 and line 3 to 6 -``` -```` - -## Word Highlight - -````mdx -```ts /shadcn/ -// Highlight the word shadcn. -``` -```` - -## Line Numbers - -````mdx -```ts showLineNumbers -// This will show line numbers. -``` -```` diff --git a/apps/www/src/content/docs/documentation/components.mdx b/apps/www/src/content/docs/documentation/components.mdx deleted file mode 100644 index f56dbed..0000000 --- a/apps/www/src/content/docs/documentation/components.mdx +++ /dev/null @@ -1,157 +0,0 @@ ---- -title: Components -description: Use React components in Markdown using MDX. ---- - -The following components are available out of the box for use in Markdown. - -If you'd like to build and add your own custom components, see the [Custom Components](#custom-components) section below. - -## Built-in Components - -### 1. Callout - -```mdx - - -This is a default callout. You can embed **Markdown** inside a `callout`. - - -``` - - - -This is a default callout. You can embed **Markdown** inside a `callout`. - - - - - -This is a warning callout. It uses the props `type="warning"`. - - - - - -This is a danger callout. It uses the props `type="danger"`. - - - -### 2. Card - -```mdx - - -#### Heading - -You can use **markdown** inside cards. - - -``` - - - -#### Heading - -You can use **markdown** inside cards. - - - -You can also use HTML to embed cards in a grid. - -```mdx -
      - - #### Card One - You can use **markdown** inside cards. - - - - #### Card Two - You can also use `inline code` and code blocks. - -
      -``` - -
      - - #### Card One - You can use **markdown** inside cards. - - - - #### Card Two - You can also use `inline code` and code blocks. - -
      - ---- - -## Custom Components - -You can add your own custom components using the `components` props from `useMDXComponent`. - -```ts title="components/mdx.tsx" {2,6} -import { Callout } from "@/components/callout" -import { CustomComponent } from "@/components/custom" - -const components = { - Callout, - CustomComponent, -} - -export function Mdx({ code }) { - const Component = useMDXComponent(code) - - return ( -
      - -
      - ) -} -``` - -Once you've added your custom component, you can use it in MDX as follows: - -```js - -``` - ---- - -## HTML Elements - -You can overwrite HTML elements using the same technique above. - -```ts {4} -const components = { - Callout, - CustomComponent, - hr: ({ ...props }) =>
      , -} -``` - -This will overwrite the `
      ` tag or `---` in Mardown with the HTML output above. - ---- - -## Styling - -Tailwind CSS classes can be used inside MDX for styling. - -```mdx -

      This text will be red.

      -``` - -Make sure you have configured the path to your content in your `tailwind.config.js` file: - -```js title="tailwind.config.js" {6} -/** @type {import('tailwindcss').Config} */ -module.exports = { - content: [ - "./app/**/*.{ts,tsx}", - "./components/**/*.{ts,tsx}", - "./content/**/*.{md,mdx}", - ], -}; -``` diff --git a/apps/www/src/content/docs/documentation/index.mdx b/apps/www/src/content/docs/documentation/index.mdx deleted file mode 100644 index c3e6b1d..0000000 --- a/apps/www/src/content/docs/documentation/index.mdx +++ /dev/null @@ -1,60 +0,0 @@ ---- -title: Documentation -description: Build your documentation site using Contentlayer and MDX. ---- - -Taxonomy includes a documentation site built using [Contentlayer](https://contentlayer.dev) and [MDX](http://mdxjs.com). - -## Features - -It comes with the following features out of the box: - -1. Write content using MDX. -2. Transform and validate content using Contentlayer. -3. MDX components such as `` and ``. -4. Support for table of contents. -5. Custom navigation with prev and next pager. -6. Beautiful code blocks using `rehype-pretty-code`. -7. Syntax highlighting using `shiki`. -8. Built-in search (_in progress_). -9. Dark mode (_in progress_). - -## How is it built - -Click on a section below to learn how the documentation site built. - -
      - - - -### Contentlayer - -Learn how to use MDX with Contentlayer. - - - - - -### Components - -Using React components in Mardown. - - - - - -### Code Blocks - -Beautiful code blocks with syntax highlighting. - - - - - -### Style Guide - -View a sample page with all the styles. - - - -
      diff --git a/apps/www/src/content/docs/documentation/style-guide.mdx b/apps/www/src/content/docs/documentation/style-guide.mdx deleted file mode 100644 index 830af07..0000000 --- a/apps/www/src/content/docs/documentation/style-guide.mdx +++ /dev/null @@ -1,216 +0,0 @@ ---- -title: Style Guide -description: Testing the MDX style guide with Tailwind Typography ---- - - - -- The text below is from the [Tailwind CSS](https://play.tailwindcss.com/uj1vGACRJA?layout=preview) docs. I copied it here to test the markdown styles. **Tailwind is awesome. You should use it.** -- The CSS is from MDX sites I've built through the years. I copied this from [Nextra](https://github.com/shuding/nextra) and tweaked it a bit to fit the styles of this site. - - - -Until now, trying to style an article, document, or blog post with Tailwind has been a tedious task that required a keen eye for typography and a lot of complex custom CSS. - -By default, Tailwind removes all of the default browser styling from paragraphs, headings, lists and more. This ends up being really useful for building application UIs because you spend less time undoing user-agent styles, but when you _really are_ just trying to style some content that came from a rich-text editor in a CMS or a markdown file, it can be surprising and unintuitive. - -We get lots of complaints about it actually, with people regularly asking us things like: - -> Why is Tailwind removing the default styles on my `h1` elements? How do I disable this? What do you mean I lose all the other base styles too? -> We hear you, but we're not convinced that simply disabling our base styles is what you really want. You don't want to have to remove annoying margins every time you use a `p` element in a piece of your dashboard UI. And I doubt you really want your blog posts to use the user-agent styles either — you want them to look _awesome_, not awful. - -The `@tailwindcss/typography` plugin is our attempt to give you what you _actually_ want, without any of the downsides of doing something stupid like disabling our base styles. - -It adds a new `prose` class that you can slap on any block of vanilla HTML content and turn it into a beautiful, well-formatted document: - -```html -
      -

      Garlic bread with cheese: What the science tells us

      -

      - For years parents have espoused the health benefits of eating garlic bread - with cheese to their children, with the food earning such an iconic status - in our culture that kids will often dress up as warm, cheesy loaf for - Halloween. -

      -

      - But a recent study shows that the celebrated appetizer may be linked to a - series of rabies cases springing up around the country. -

      -
      -``` - -For more information about how to use the plugin and the features it includes, [read the documentation](https://github.com/tailwindcss/typography/blob/master/README.md). - ---- - -## What to expect from here on out - -What follows from here is just a bunch of absolute nonsense I've written to dogfood the plugin itself. It includes every sensible typographic element I could think of, like **bold text**, unordered lists, ordered lists, code blocks, block quotes, _and even italics_. - -It's important to cover all of these use cases for a few reasons: - -1. We want everything to look good out of the box. -2. Really just the first reason, that's the whole point of the plugin. -3. Here's a third pretend reason though a list with three items looks more realistic than a list with two items. - -Now we're going to try out another header style. - -### Typography should be easy - -So that's a header for you — with any luck if we've done our job correctly that will look pretty reasonable. - -Something a wise person once told me about typography is: - -> Typography is pretty important if you don't want your stuff to look like trash. Make it good then it won't be bad. - -It's probably important that images look okay here by default as well: - -Image - -Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. - -Now I'm going to show you an example of an unordered list to make sure that looks good, too: - -- So here is the first item in this list. -- In this example we're keeping the items short. -- Later, we'll use longer, more complex list items. - -And that's the end of this section. - -## What if we stack headings? - -### We should make sure that looks good, too. - -Sometimes you have headings directly underneath each other. In those cases you often have to undo the top margin on the second heading because it usually looks better for the headings to be closer together than a paragraph followed by a heading should be. - -### When a heading comes after a paragraph … - -When a heading comes after a paragraph, we need a bit more space, like I already mentioned above. Now let's see what a more complex list would look like. - -- **I often do this thing where list items have headings.** - - For some reason I think this looks cool which is unfortunate because it's pretty annoying to get the styles right. - - I often have two or three paragraphs in these list items, too, so the hard part is getting the spacing between the paragraphs, list item heading, and separate list items to all make sense. Pretty tough honestly, you could make a strong argument that you just shouldn't write this way. - -- **Since this is a list, I need at least two items.** - - I explained what I'm doing already in the previous list item, but a list wouldn't be a list if it only had one item, and we really want this to look realistic. That's why I've added this second list item so I actually have something to look at when writing the styles. - -- **It's not a bad idea to add a third item either.** - - I think it probably would've been fine to just use two items but three is definitely not worse, and since I seem to be having no trouble making up arbitrary things to type, I might as well include it. - -After this sort of list I usually have a closing statement or paragraph, because it kinda looks weird jumping right to a heading. - -## Code should look okay by default. - -I think most people are going to use [highlight.js](https://highlightjs.org/) or [Prism](https://prismjs.com/) or something if they want to style their code blocks but it wouldn't hurt to make them look _okay_ out of the box, even with no syntax highlighting. - -Here's what a default `tailwind.config.js` file looks like at the time of writing: - -```js -module.exports = { - purge: [], - theme: { - extend: {}, - }, - variants: {}, - plugins: [], -}; -``` - -Hopefully that looks good enough to you. - -### What about nested lists? - -Nested lists basically always look bad which is why editors like Medium don't even let you do it, but I guess since some of you goofballs are going to do it we have to carry the burden of at least making it work. - -1. **Nested lists are rarely a good idea.** - - You might feel like you are being really "organized" or something but you are just creating a gross shape on the screen that is hard to read. - - Nested navigation in UIs is a bad idea too, keep things as flat as possible. - - Nesting tons of folders in your source code is also not helpful. -2. **Since we need to have more items, here's another one.** - - I'm not sure if we'll bother styling more than two levels deep. - - Two is already too much, three is guaranteed to be a bad idea. - - If you nest four levels deep you belong in prison. -3. **Two items isn't really a list, three is good though.** - - Again please don't nest lists if you want people to actually read your content. - - Nobody wants to look at this. - - I'm upset that we even have to bother styling this. - -The most annoying thing about lists in Markdown is that `
    6. ` elements aren't given a child `

      ` tag unless there are multiple paragraphs in the list item. That means I have to worry about styling that annoying situation too. - -- **For example, here's another nested list.** - - But this time with a second paragraph. - - - These list items won't have `

      ` tags - - Because they are only one line each - -- **But in this second top-level list item, they will.** - - This is especially annoying because of the spacing on this paragraph. - - - As you can see here, because I've added a second line, this list item now has a `

      ` tag. - - This is the second line I'm talking about by the way. - - - Finally here's another list item so it's more like a list. - -- A closing list item, but with no nested list, because why not? - -And finally a sentence to close off this section. - -## There are other elements we need to style - -I almost forgot to mention links, like [this link to the Tailwind CSS website](https://tailwindcss.com). We almost made them blue but that's so yesterday, so we went with dark gray, feels edgier. - -We even included table styles, check it out: - -| Wrestler | Origin | Finisher | -| ----------------------- | ------------ | ------------------ | -| Bret "The Hitman" Hart | Calgary, AB | Sharpshooter | -| Stone Cold Steve Austin | Austin, TX | Stone Cold Stunner | -| Randy Savage | Sarasota, FL | Elbow Drop | -| Vader | Boulder, CO | Vader Bomb | -| Razor Ramon | Chuluota, FL | Razor's Edge | - -We also need to make sure inline code looks good, like if I wanted to talk about `` elements or tell you the good news about `@tailwindcss/typography`. - -### Sometimes I even use `code` in headings - -Even though it's probably a bad idea, and historically I've had a hard time making it look good. This _"wrap the code blocks in backticks"_ trick works pretty well though really. - -Another thing I've done in the past is put a `code` tag inside of a link, like if I wanted to tell you about the [`tailwindcss/docs`](https://github.com/tailwindcss/docs) repository. I don't love that there is an underline below the backticks but it is absolutely not worth the madness it would require to avoid it. - -#### We haven't used an `h4` yet - -But now we have. Please don't use `h5` or `h6` in your content, Medium only supports two heading levels for a reason, you animals. I honestly considered using a `before` pseudo-element to scream at you if you use an `h5` or `h6`. - -We don't style them at all out of the box because `h4` elements are already so small that they are the same size as the body copy. What are we supposed to do with an `h5`, make it _smaller_ than the body copy? No thanks. - -### We still need to think about stacked headings though. - -#### Let's make sure we don't screw that up with `h4` elements, either. - -Phew, with any luck we have styled the headings above this text and they look pretty good. - -Let's add a closing paragraph here so things end with a decently sized block of text. I can't explain why I want things to end that way but I have to assume it's because I think things will look weird or unbalanced if there is a heading too close to the end of the document. - -What I've written here is probably long enough, but adding this final sentence can't hurt. - -## GitHub Flavored Markdown - -I've also added support for GitHub Flavored Mardown using `remark-gfm`. - -With `remark-gfm`, we get a few extra features in our markdown. Example: autolink literals. - -A link like www.example.com or https://example.com would automatically be converted into an `a` tag. - -This works for email links too: contact@example.com. diff --git a/apps/www/src/content/docs/in-progress.mdx b/apps/www/src/content/docs/in-progress.mdx deleted file mode 100644 index c48c938..0000000 --- a/apps/www/src/content/docs/in-progress.mdx +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: Not Implemented -description: This page is in progress. ---- - - - -This site is a work in progress. If you see dummy text on a page, it means I'm still working on it. You can follow updates on Twitter [@shadcn](https://twitter.com/shadcn). - - diff --git a/apps/www/src/content/docs/index.mdx b/apps/www/src/content/docs/index.mdx deleted file mode 100644 index 8f12d68..0000000 --- a/apps/www/src/content/docs/index.mdx +++ /dev/null @@ -1,54 +0,0 @@ ---- -title: Documentation -description: Welcome to the Taxonomy documentation. ---- - -This is the documentation for the Taxonomy site. - -This is an example of a doc site built using [ContentLayer](/docs/documentation/contentlayer) and MDX. - - - -This site is a work in progress. If you see dummy text on a page, it means I'm still working on it. You can follow updates on Twitter [@shadcn](https://twitter.com/shadcn). - - - -## Features - -Select a feature below to learn more about it. - -

      - - - -### Documentation - -This documentation site built using Contentlayer. - - - - - -### Marketing - -The marketing site with landing pages. - - - - - -### App - -The dashboard with auth and subscriptions. - - - - - -### Blog - -The blog built using Contentlayer and MDX. - - - -
      diff --git a/apps/www/src/content/guides/build-blog-using-contentlayer-mdx.mdx b/apps/www/src/content/guides/build-blog-using-contentlayer-mdx.mdx deleted file mode 100644 index d9c0bc5..0000000 --- a/apps/www/src/content/guides/build-blog-using-contentlayer-mdx.mdx +++ /dev/null @@ -1,222 +0,0 @@ ---- -title: Build a blog using ContentLayer and MDX. -description: Learn how to use ContentLayer to build a blog with Next.js -date: 2022-11-18 ---- - - - -This site is a work in progress. If you see dummy text on a page, it means I'm still working on it. You can follow updates on Twitter [@shadcn](https://twitter.com/shadcn). - - - - - The text below is from the [Tailwind - CSS](https://play.tailwindcss.com/uj1vGACRJA?layout=preview) docs. I copied it - here to test the markdown styles. **Tailwind is awesome. You should use it.** - - -Until now, trying to style an article, document, or blog post with Tailwind has been a tedious task that required a keen eye for typography and a lot of complex custom CSS. - -By default, Tailwind removes all of the default browser styling from paragraphs, headings, lists and more. This ends up being really useful for building application UIs because you spend less time undoing user-agent styles, but when you _really are_ just trying to style some content that came from a rich-text editor in a CMS or a markdown file, it can be surprising and unintuitive. - -We get lots of complaints about it actually, with people regularly asking us things like: - -> Why is Tailwind removing the default styles on my `h1` elements? How do I disable this? What do you mean I lose all the other base styles too? -> We hear you, but we're not convinced that simply disabling our base styles is what you really want. You don't want to have to remove annoying margins every time you use a `p` element in a piece of your dashboard UI. And I doubt you really want your blog posts to use the user-agent styles either — you want them to look _awesome_, not awful. - -The `@tailwindcss/typography` plugin is our attempt to give you what you _actually_ want, without any of the downsides of doing something stupid like disabling our base styles. - -It adds a new `prose` class that you can slap on any block of vanilla HTML content and turn it into a beautiful, well-formatted document: - -```html -
      -

      Garlic bread with cheese: What the science tells us

      -

      - For years parents have espoused the health benefits of eating garlic bread - with cheese to their children, with the food earning such an iconic status - in our culture that kids will often dress up as warm, cheesy loaf for - Halloween. -

      -

      - But a recent study shows that the celebrated appetizer may be linked to a - series of rabies cases springing up around the country. -

      -
      -``` - -For more information about how to use the plugin and the features it includes, [read the documentation](https://github.com/tailwindcss/typography/blob/master/README.md). - ---- - -## What to expect from here on out - -What follows from here is just a bunch of absolute nonsense I've written to dogfood the plugin itself. It includes every sensible typographic element I could think of, like **bold text**, unordered lists, ordered lists, code blocks, block quotes, _and even italics_. - -It's important to cover all of these use cases for a few reasons: - -1. We want everything to look good out of the box. -2. Really just the first reason, that's the whole point of the plugin. -3. Here's a third pretend reason though a list with three items looks more realistic than a list with two items. - -Now we're going to try out another header style. - -### Typography should be easy - -So that's a header for you — with any luck if we've done our job correctly that will look pretty reasonable. - -Something a wise person once told me about typography is: - -> Typography is pretty important if you don't want your stuff to look like trash. Make it good then it won't be bad. - -It's probably important that images look okay here by default as well: - -Image - -Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. - -Now I'm going to show you an example of an unordered list to make sure that looks good, too: - -- So here is the first item in this list. -- In this example we're keeping the items short. -- Later, we'll use longer, more complex list items. - -And that's the end of this section. - -## What if we stack headings? - -### We should make sure that looks good, too. - -Sometimes you have headings directly underneath each other. In those cases you often have to undo the top margin on the second heading because it usually looks better for the headings to be closer together than a paragraph followed by a heading should be. - -### When a heading comes after a paragraph … - -When a heading comes after a paragraph, we need a bit more space, like I already mentioned above. Now let's see what a more complex list would look like. - -- **I often do this thing where list items have headings.** - - For some reason I think this looks cool which is unfortunate because it's pretty annoying to get the styles right. - - I often have two or three paragraphs in these list items, too, so the hard part is getting the spacing between the paragraphs, list item heading, and separate list items to all make sense. Pretty tough honestly, you could make a strong argument that you just shouldn't write this way. - -- **Since this is a list, I need at least two items.** - - I explained what I'm doing already in the previous list item, but a list wouldn't be a list if it only had one item, and we really want this to look realistic. That's why I've added this second list item so I actually have something to look at when writing the styles. - -- **It's not a bad idea to add a third item either.** - - I think it probably would've been fine to just use two items but three is definitely not worse, and since I seem to be having no trouble making up arbitrary things to type, I might as well include it. - -After this sort of list I usually have a closing statement or paragraph, because it kinda looks weird jumping right to a heading. - -## Code should look okay by default. - -I think most people are going to use [highlight.js](https://highlightjs.org/) or [Prism](https://prismjs.com/) or something if they want to style their code blocks but it wouldn't hurt to make them look _okay_ out of the box, even with no syntax highlighting. - -Here's what a default `tailwind.config.js` file looks like at the time of writing: - -```js -module.exports = { - purge: [], - theme: { - extend: {}, - }, - variants: {}, - plugins: [], -}; -``` - -Hopefully that looks good enough to you. - -### What about nested lists? - -Nested lists basically always look bad which is why editors like Medium don't even let you do it, but I guess since some of you goofballs are going to do it we have to carry the burden of at least making it work. - -1. **Nested lists are rarely a good idea.** - - You might feel like you are being really "organized" or something but you are just creating a gross shape on the screen that is hard to read. - - Nested navigation in UIs is a bad idea too, keep things as flat as possible. - - Nesting tons of folders in your source code is also not helpful. -2. **Since we need to have more items, here's another one.** - - I'm not sure if we'll bother styling more than two levels deep. - - Two is already too much, three is guaranteed to be a bad idea. - - If you nest four levels deep you belong in prison. -3. **Two items isn't really a list, three is good though.** - - Again please don't nest lists if you want people to actually read your content. - - Nobody wants to look at this. - - I'm upset that we even have to bother styling this. - -The most annoying thing about lists in Markdown is that `
    7. ` elements aren't given a child `

      ` tag unless there are multiple paragraphs in the list item. That means I have to worry about styling that annoying situation too. - -- **For example, here's another nested list.** - - But this time with a second paragraph. - - - These list items won't have `

      ` tags - - Because they are only one line each - -- **But in this second top-level list item, they will.** - - This is especially annoying because of the spacing on this paragraph. - - - As you can see here, because I've added a second line, this list item now has a `

      ` tag. - - This is the second line I'm talking about by the way. - - - Finally here's another list item so it's more like a list. - -- A closing list item, but with no nested list, because why not? - -And finally a sentence to close off this section. - -## There are other elements we need to style - -I almost forgot to mention links, like [this link to the Tailwind CSS website](https://tailwindcss.com). We almost made them blue but that's so yesterday, so we went with dark gray, feels edgier. - -We even included table styles, check it out: - -| Wrestler | Origin | Finisher | -| ----------------------- | ------------ | ------------------ | -| Bret "The Hitman" Hart | Calgary, AB | Sharpshooter | -| Stone Cold Steve Austin | Austin, TX | Stone Cold Stunner | -| Randy Savage | Sarasota, FL | Elbow Drop | -| Vader | Boulder, CO | Vader Bomb | -| Razor Ramon | Chuluota, FL | Razor's Edge | - -We also need to make sure inline code looks good, like if I wanted to talk about `` elements or tell you the good news about `@tailwindcss/typography`. - -### Sometimes I even use `code` in headings - -Even though it's probably a bad idea, and historically I've had a hard time making it look good. This _"wrap the code blocks in backticks"_ trick works pretty well though really. - -Another thing I've done in the past is put a `code` tag inside of a link, like if I wanted to tell you about the [`tailwindcss/docs`](https://github.com/tailwindcss/docs) repository. I don't love that there is an underline below the backticks but it is absolutely not worth the madness it would require to avoid it. - -#### We haven't used an `h4` yet - -But now we have. Please don't use `h5` or `h6` in your content, Medium only supports two heading levels for a reason, you animals. I honestly considered using a `before` pseudo-element to scream at you if you use an `h5` or `h6`. - -We don't style them at all out of the box because `h4` elements are already so small that they are the same size as the body copy. What are we supposed to do with an `h5`, make it _smaller_ than the body copy? No thanks. - -### We still need to think about stacked headings though. - -#### Let's make sure we don't screw that up with `h4` elements, either. - -Phew, with any luck we have styled the headings above this text and they look pretty good. - -Let's add a closing paragraph here so things end with a decently sized block of text. I can't explain why I want things to end that way but I have to assume it's because I think things will look weird or unbalanced if there is a heading too close to the end of the document. - -What I've written here is probably long enough, but adding this final sentence can't hurt. - -## GitHub Flavored Markdown - -I've also added support for GitHub Flavored Mardown using `remark-gfm`. - -With `remark-gfm`, we get a few extra features in our markdown. Example: autolink literals. - -A link like www.example.com or https://example.com would automatically be converted into an `a` tag. - -This works for email links too: contact@example.com. diff --git a/apps/www/src/content/guides/using-next-auth-next-13.mdx b/apps/www/src/content/guides/using-next-auth-next-13.mdx deleted file mode 100644 index 956776d..0000000 --- a/apps/www/src/content/guides/using-next-auth-next-13.mdx +++ /dev/null @@ -1,222 +0,0 @@ ---- -title: Using NextAuth.js with Next.13 -description: How to use NextAuth.js in server components. -date: 2022-11-23 ---- - - - -This site is a work in progress. If you see dummy text on a page, it means I'm still working on it. You can follow updates on Twitter [@shadcn](https://twitter.com/shadcn). - - - - - The text below is from the [Tailwind - CSS](https://play.tailwindcss.com/uj1vGACRJA?layout=preview) docs. I copied it - here to test the markdown styles. **Tailwind is awesome. You should use it.** - - -Until now, trying to style an article, document, or blog post with Tailwind has been a tedious task that required a keen eye for typography and a lot of complex custom CSS. - -By default, Tailwind removes all of the default browser styling from paragraphs, headings, lists and more. This ends up being really useful for building application UIs because you spend less time undoing user-agent styles, but when you _really are_ just trying to style some content that came from a rich-text editor in a CMS or a markdown file, it can be surprising and unintuitive. - -We get lots of complaints about it actually, with people regularly asking us things like: - -> Why is Tailwind removing the default styles on my `h1` elements? How do I disable this? What do you mean I lose all the other base styles too? -> We hear you, but we're not convinced that simply disabling our base styles is what you really want. You don't want to have to remove annoying margins every time you use a `p` element in a piece of your dashboard UI. And I doubt you really want your blog posts to use the user-agent styles either — you want them to look _awesome_, not awful. - -The `@tailwindcss/typography` plugin is our attempt to give you what you _actually_ want, without any of the downsides of doing something stupid like disabling our base styles. - -It adds a new `prose` class that you can slap on any block of vanilla HTML content and turn it into a beautiful, well-formatted document: - -```html -

      -

      Garlic bread with cheese: What the science tells us

      -

      - For years parents have espoused the health benefits of eating garlic bread - with cheese to their children, with the food earning such an iconic status - in our culture that kids will often dress up as warm, cheesy loaf for - Halloween. -

      -

      - But a recent study shows that the celebrated appetizer may be linked to a - series of rabies cases springing up around the country. -

      -
      -``` - -For more information about how to use the plugin and the features it includes, [read the documentation](https://github.com/tailwindcss/typography/blob/master/README.md). - ---- - -## What to expect from here on out - -What follows from here is just a bunch of absolute nonsense I've written to dogfood the plugin itself. It includes every sensible typographic element I could think of, like **bold text**, unordered lists, ordered lists, code blocks, block quotes, _and even italics_. - -It's important to cover all of these use cases for a few reasons: - -1. We want everything to look good out of the box. -2. Really just the first reason, that's the whole point of the plugin. -3. Here's a third pretend reason though a list with three items looks more realistic than a list with two items. - -Now we're going to try out another header style. - -### Typography should be easy - -So that's a header for you — with any luck if we've done our job correctly that will look pretty reasonable. - -Something a wise person once told me about typography is: - -> Typography is pretty important if you don't want your stuff to look like trash. Make it good then it won't be bad. - -It's probably important that images look okay here by default as well: - -Image - -Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. - -Now I'm going to show you an example of an unordered list to make sure that looks good, too: - -- So here is the first item in this list. -- In this example we're keeping the items short. -- Later, we'll use longer, more complex list items. - -And that's the end of this section. - -## What if we stack headings? - -### We should make sure that looks good, too. - -Sometimes you have headings directly underneath each other. In those cases you often have to undo the top margin on the second heading because it usually looks better for the headings to be closer together than a paragraph followed by a heading should be. - -### When a heading comes after a paragraph … - -When a heading comes after a paragraph, we need a bit more space, like I already mentioned above. Now let's see what a more complex list would look like. - -- **I often do this thing where list items have headings.** - - For some reason I think this looks cool which is unfortunate because it's pretty annoying to get the styles right. - - I often have two or three paragraphs in these list items, too, so the hard part is getting the spacing between the paragraphs, list item heading, and separate list items to all make sense. Pretty tough honestly, you could make a strong argument that you just shouldn't write this way. - -- **Since this is a list, I need at least two items.** - - I explained what I'm doing already in the previous list item, but a list wouldn't be a list if it only had one item, and we really want this to look realistic. That's why I've added this second list item so I actually have something to look at when writing the styles. - -- **It's not a bad idea to add a third item either.** - - I think it probably would've been fine to just use two items but three is definitely not worse, and since I seem to be having no trouble making up arbitrary things to type, I might as well include it. - -After this sort of list I usually have a closing statement or paragraph, because it kinda looks weird jumping right to a heading. - -## Code should look okay by default. - -I think most people are going to use [highlight.js](https://highlightjs.org/) or [Prism](https://prismjs.com/) or something if they want to style their code blocks but it wouldn't hurt to make them look _okay_ out of the box, even with no syntax highlighting. - -Here's what a default `tailwind.config.js` file looks like at the time of writing: - -```js -module.exports = { - purge: [], - theme: { - extend: {}, - }, - variants: {}, - plugins: [], -}; -``` - -Hopefully that looks good enough to you. - -### What about nested lists? - -Nested lists basically always look bad which is why editors like Medium don't even let you do it, but I guess since some of you goofballs are going to do it we have to carry the burden of at least making it work. - -1. **Nested lists are rarely a good idea.** - - You might feel like you are being really "organized" or something but you are just creating a gross shape on the screen that is hard to read. - - Nested navigation in UIs is a bad idea too, keep things as flat as possible. - - Nesting tons of folders in your source code is also not helpful. -2. **Since we need to have more items, here's another one.** - - I'm not sure if we'll bother styling more than two levels deep. - - Two is already too much, three is guaranteed to be a bad idea. - - If you nest four levels deep you belong in prison. -3. **Two items isn't really a list, three is good though.** - - Again please don't nest lists if you want people to actually read your content. - - Nobody wants to look at this. - - I'm upset that we even have to bother styling this. - -The most annoying thing about lists in Markdown is that `
    8. ` elements aren't given a child `

      ` tag unless there are multiple paragraphs in the list item. That means I have to worry about styling that annoying situation too. - -- **For example, here's another nested list.** - - But this time with a second paragraph. - - - These list items won't have `

      ` tags - - Because they are only one line each - -- **But in this second top-level list item, they will.** - - This is especially annoying because of the spacing on this paragraph. - - - As you can see here, because I've added a second line, this list item now has a `

      ` tag. - - This is the second line I'm talking about by the way. - - - Finally here's another list item so it's more like a list. - -- A closing list item, but with no nested list, because why not? - -And finally a sentence to close off this section. - -## There are other elements we need to style - -I almost forgot to mention links, like [this link to the Tailwind CSS website](https://tailwindcss.com). We almost made them blue but that's so yesterday, so we went with dark gray, feels edgier. - -We even included table styles, check it out: - -| Wrestler | Origin | Finisher | -| ----------------------- | ------------ | ------------------ | -| Bret "The Hitman" Hart | Calgary, AB | Sharpshooter | -| Stone Cold Steve Austin | Austin, TX | Stone Cold Stunner | -| Randy Savage | Sarasota, FL | Elbow Drop | -| Vader | Boulder, CO | Vader Bomb | -| Razor Ramon | Chuluota, FL | Razor's Edge | - -We also need to make sure inline code looks good, like if I wanted to talk about `` elements or tell you the good news about `@tailwindcss/typography`. - -### Sometimes I even use `code` in headings - -Even though it's probably a bad idea, and historically I've had a hard time making it look good. This _"wrap the code blocks in backticks"_ trick works pretty well though really. - -Another thing I've done in the past is put a `code` tag inside of a link, like if I wanted to tell you about the [`tailwindcss/docs`](https://github.com/tailwindcss/docs) repository. I don't love that there is an underline below the backticks but it is absolutely not worth the madness it would require to avoid it. - -#### We haven't used an `h4` yet - -But now we have. Please don't use `h5` or `h6` in your content, Medium only supports two heading levels for a reason, you animals. I honestly considered using a `before` pseudo-element to scream at you if you use an `h5` or `h6`. - -We don't style them at all out of the box because `h4` elements are already so small that they are the same size as the body copy. What are we supposed to do with an `h5`, make it _smaller_ than the body copy? No thanks. - -### We still need to think about stacked headings though. - -#### Let's make sure we don't screw that up with `h4` elements, either. - -Phew, with any luck we have styled the headings above this text and they look pretty good. - -Let's add a closing paragraph here so things end with a decently sized block of text. I can't explain why I want things to end that way but I have to assume it's because I think things will look weird or unbalanced if there is a heading too close to the end of the document. - -What I've written here is probably long enough, but adding this final sentence can't hurt. - -## GitHub Flavored Markdown - -I've also added support for GitHub Flavored Mardown using `remark-gfm`. - -With `remark-gfm`, we get a few extra features in our markdown. Example: autolink literals. - -A link like www.example.com or https://example.com would automatically be converted into an `a` tag. - -This works for email links too: contact@example.com. diff --git a/apps/www/src/content/pages/privacy.mdx b/apps/www/src/content/pages/privacy.mdx deleted file mode 100644 index 6390468..0000000 --- a/apps/www/src/content/pages/privacy.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: Privacy -description: The Privacy Policy for Propwrite ---- - -# Privacy Policy - -At Propwrite, we are committed to protecting your privacy and ensuring that your personal information is handled in a safe and responsible manner. This Privacy Policy outlines how we collect, use, store, and protect the information you provide us when using our services. - -## Consent - -By using our website and services, you agree to the collection and use of information in accordance with this policy. If you do not agree with our policies and practices, please do not use our website. - -## Information We Collect - -We collect several types of information from and about users of our website, including: - -- **Personal Data**: This may include, but is not limited to, your name, email address, postal address, phone number, and other identifiers by which you may be contacted online or offline. -- **Usage Data**: We may also collect information on how the website is accessed and used. This data may include your computer's Internet Protocol address (IP address), browser type, browser version, the pages you visit, the time and date of your visit, the time spent on those pages, and other diagnostic data. - -## How We Use Your Information - -We use the information we collect about you or that you provide to us, including any personal data, for various purposes, including to: - -- Provide and maintain our website. -- Notify you about changes to our website or any products or services we offer or provide through it. -- Allow you to participate in interactive features on our website. -- Provide customer support. -- Gather analysis or valuable information so that we can improve our website. -- Monitor the usage of our website. -- Detect, prevent and address technical issues. - -## Data Security - -We have implemented measures designed to secure your personal information from accidental loss and from unauthorized access, use, alteration, and disclosure. However, the transmission of information via the internet is not completely secure. Although we do our best to protect your personal information, we cannot guarantee the security of your personal information transmitted to our website. - -## Changes to Our Privacy Policy - -We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page. We will let you know via email and/or a prominent notice on our website, prior to the change becoming effective. - -## Contact Information - -To ask questions or comment about this Privacy Policy and our privacy practices, contact us at: [your contact information or email]. - -Last updated: 28.11.2023 diff --git a/apps/www/src/content/pages/terms.mdx b/apps/www/src/content/pages/terms.mdx deleted file mode 100644 index e53263c..0000000 --- a/apps/www/src/content/pages/terms.mdx +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: Terms & Conditions -description: Read our terms and conditions. ---- - -Lorem ipsumMagna fermentum iaculis eu non diam. Vitae purus faucibus ornare suspendisse sed nisi lacus sed. In nibh mauris cursus mattis molestie a iaculis at. Enim sit amet venenatis urna. Eget sit amet tellus cras adipiscing. - -## Legal Notices - -Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Volutpat sed cras ornare arcu. Nibh ipsum consequat nisl vel pretium lectus quam id leo. A arcu cursus vitae congue. Amet justo donec enim diam. Vel pharetra vel turpis nunc eget lorem. Gravida quis blandit turpis cursus in. Semper auctor neque vitae tempus. Elementum facilisis leo vel fringilla est ullamcorper eget nulla. Imperdiet nulla malesuada pellentesque elit eget. - -Felis donec et odio pellentesque diam volutpat commodo sed. - -Tortor consequat id porta nibh. Fames ac turpis egestas maecenas pharetra convallis posuere morbi leo. Scelerisque fermentum dui faucibus in. Tortor posuere ac ut consequat semper viverra. - -## Warranty Disclaimer - -Tellus in hac habitasse platea dictumst vestibulum. Faucibus in ornare quam viverra. Viverra aliquet eget sit amet tellus cras adipiscing. Erat nam at lectus urna duis convallis convallis tellus. Bibendum est ultricies integer quis auctor elit sed vulputate. - -Nisl condimentum id venenatis a condimentum vitae. Ac auctor augue mauris augue neque gravida in fermentum. Arcu felis bibendum ut tristique. Tempor commodo ullamcorper a lacus vestibulum sed arcu non. - -## General - -Magna fermentum iaculis eu non diam. Vitae purus faucibus ornare suspendisse sed nisi lacus sed. In nibh mauris cursus mattis molestie a iaculis at. Enim sit amet venenatis urna. Eget sit amet tellus cras adipiscing. - -Sed lectus vestibulum mattis ullamcorper velit. Id diam vel quam elementum pulvinar. In iaculis nunc sed augue lacus viverra. In hendrerit gravida rutrum quisque non tellus. Nisl purus in mollis nunc. - -## Disclaimer - -Amet justo donec enim diam. In hendrerit gravida rutrum quisque non. Hac habitasse platea dictumst quisque sagittis purus sit. Faucibus ornare suspendisse sed nisi lacus. Nulla porttitor massa id neque aliquam vestibulum. Ante in nibh mauris cursus mattis molestie a. Mi tempus imperdiet nulla malesuada. diff --git a/apps/www/tsconfig.json b/apps/www/tsconfig.json index 56fb116..672e384 100644 --- a/apps/www/tsconfig.json +++ b/apps/www/tsconfig.json @@ -6,7 +6,6 @@ "baseUrl": ".", "paths": { "@/*": ["./src/*"], - "contentlayer/generated": ["./.contentlayer/generated"] }, "plugins": [{ "name": "next" }], "tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json", @@ -15,5 +14,4 @@ "useUnknownInCatchVariables": false // TODO: Resolve errors when setting this to 'true' }, "include": ["src", ".next/types/**/*.ts"], - "exclude": ["node_modules", ".contentlayer/generated"] } From 45292417b1f63138444a52140016053c5d3ff540 Mon Sep 17 00:00:00 2001 From: meglerhagen Date: Mon, 29 Jul 2024 15:30:37 +0200 Subject: [PATCH 2/6] removed resend --- apps/www/package.json | 2 - .../actions/Dingify/send-onboarding-email.ts | 37 -------- apps/www/src/lib/auth.ts | 95 +++++++++---------- apps/www/src/lib/email.ts | 11 ++- 4 files changed, 54 insertions(+), 91 deletions(-) delete mode 100644 apps/www/src/actions/Dingify/send-onboarding-email.ts diff --git a/apps/www/package.json b/apps/www/package.json index d6f4b19..94adff2 100644 --- a/apps/www/package.json +++ b/apps/www/package.json @@ -24,7 +24,6 @@ "@nivo/funnel": "^0.86.0", "@nivo/line": "^0.86.0", "@react-email/button": "0.0.11", - "@react-email/components": "0.0.7", "@react-email/html": "0.0.6", "@t3-oss/env-nextjs": "^0.9.2", "@tanstack/react-table": "^8.10.7", @@ -67,7 +66,6 @@ "react-textarea-autosize": "^8.5.3", "react-wrap-balancer": "^1.1.0", "recharts": "^2.12.7", - "resend": "^1.1.0", "sharp": "^0.32.6", "shiki": "^0.14.5", "stripe": "^14.2.0", diff --git a/apps/www/src/actions/Dingify/send-onboarding-email.ts b/apps/www/src/actions/Dingify/send-onboarding-email.ts deleted file mode 100644 index 9ce7e42..0000000 --- a/apps/www/src/actions/Dingify/send-onboarding-email.ts +++ /dev/null @@ -1,37 +0,0 @@ -"use server"; - -// src/utils/sendOnboardingEmail.ts -import WelcomeEmail from "@/emails/welcome-email"; - -import { prisma } from "@/lib/db"; -import { resend } from "@/lib/email"; - -// import { prisma } from "@dingify/db"; - -async function sendOnboardingEmail(email: string, name: string) { - try { - const emailResult = await resend.emails.send({ - from: "Dingify ", - to: email, - subject: "Unlock the Future of Real Estate with Dingify!", - react: WelcomeEmail({ - name: name || "Valued User", - email: email, - }), - headers: { - "X-Entity-Ref-ID": new Date().getTime() + "", - }, - }); - - // Update the onboardingEmailSent flag for the user - await prisma.user.update({ - where: { email }, - data: { onboardingEmailSent: true }, - }); - } catch (error) { - console.error("Error sending onboarding email:", error); - throw new Error("Failed to send onboarding email.", error); - } -} - -export default sendOnboardingEmail; diff --git a/apps/www/src/lib/auth.ts b/apps/www/src/lib/auth.ts index a36f1a4..3ed43bc 100644 --- a/apps/www/src/lib/auth.ts +++ b/apps/www/src/lib/auth.ts @@ -1,15 +1,13 @@ -import type { NextAuthOptions } from "next-auth"; -import sendOnboardingEmail from "@/actions/Dingify/send-onboarding-email"; -import MagicLinkEmail from "@/emails/magic-link-email"; -import { PrismaAdapter } from "@next-auth/prisma-adapter"; -import EmailProvider from "next-auth/providers/email"; -import GoogleProvider from "next-auth/providers/google"; +import type { NextAuthOptions } from "next-auth" +import MagicLinkEmail from "@/emails/magic-link-email" +import { PrismaAdapter } from "@next-auth/prisma-adapter" +import EmailProvider from "next-auth/providers/email" +import GoogleProvider from "next-auth/providers/google" -import { env } from "@/env"; -import { siteConfig } from "@/config/site"; +import { env } from "@/env" +import { siteConfig } from "@/config/site" -import { prisma } from "./db"; -import { resend } from "./email"; +import { prisma } from "./db" export const authOptions: NextAuthOptions = { adapter: PrismaAdapter(prisma), @@ -34,35 +32,34 @@ export const authOptions: NextAuthOptions = { name: true, emailVerified: true, }, - }); + }) - const userVerified = user?.emailVerified ? true : false; + const userVerified = user?.emailVerified ? true : false const authSubject = userVerified ? `Sign-in link for ${siteConfig.name}` - : "Activate your account"; + : "Activate your account" try { - const result = await resend.emails.send({ - from: "Propwrite App ", - to: - process.env.NODE_ENV === "development" - ? "delivered@resend.dev" - : identifier, - subject: authSubject, - react: MagicLinkEmail({ - firstName: user?.name!, - actionUrl: url, - mailType: userVerified ? "login" : "register", - siteName: siteConfig.name, - }), - headers: { - "X-Entity-Ref-ID": new Date().getTime() + "", - }, - }); - - console.log(result); + // const result = await resend.emails.send({ + // from: "Propwrite App ", + // to: + // process.env.NODE_ENV === "development" + // ? "delivered@resend.dev" + // : identifier, + // subject: authSubject, + // react: MagicLinkEmail({ + // firstName: user?.name!, + // actionUrl: url, + // mailType: userVerified ? "login" : "register", + // siteName: siteConfig.name, + // }), + // headers: { + // "X-Entity-Ref-ID": new Date().getTime() + "", + // }, + // }); + // console.log(result); } catch (error) { - throw new Error("Failed to send verification email."); + throw new Error("Failed to send verification email.") } }, }), @@ -70,45 +67,45 @@ export const authOptions: NextAuthOptions = { callbacks: { async session({ token, session }) { if (token) { - session.user.id = token.id; - session.user.name = token.name; - session.user.email = token.email; - session.user.image = token.picture; + session.user.id = token.id + session.user.name = token.name + session.user.email = token.email + session.user.image = token.picture } - return session; + return session }, async jwt({ token, user }) { const dbUser = await prisma.user.findFirst({ where: { email: token.email, }, - }); + }) if (dbUser && !dbUser.onboardingEmailSent) { if (dbUser.email && dbUser.name) { - await sendOnboardingEmail(dbUser.email, dbUser.name); + await sendOnboardingEmail(dbUser.email, dbUser.name) await prisma.user.update({ where: { email: dbUser.email }, data: { onboardingEmailSent: true }, - }); + }) - console.log(`Onboarding email sent to ${dbUser.email}`); + console.log(`Onboarding email sent to ${dbUser.email}`) } else { console.log( `User email or name is null for user with email: ${token.email}`, - ); + ) } } if (!dbUser) { if (user) { - token.id = user.id!; - token.email = user.email!; - token.name = user.name!; + token.id = user.id! + token.email = user.email! + token.name = user.name! } - return token; + return token } return { @@ -116,9 +113,9 @@ export const authOptions: NextAuthOptions = { name: dbUser.name, email: dbUser.email, picture: dbUser.image, - }; + } }, }, // debug: process.env.NODE_ENV !== "production" // if you want to see the debug logs in the console -}; +} diff --git a/apps/www/src/lib/email.ts b/apps/www/src/lib/email.ts index 10be544..c70d93b 100644 --- a/apps/www/src/lib/email.ts +++ b/apps/www/src/lib/email.ts @@ -1,4 +1,9 @@ -import { env } from "@/env"; -import { Resend } from "resend"; +// import { env } from "@/env"; +// import { Resend } from "resend"; -export const resend = new Resend(env.RESEND_API_KEY); +// export const resend = new Resend(env.RESEND_API_KEY); + +export const sendEmail = async () => { + console.log("Email sending functionality not implemented") + // Implement your email sending logic here in the future +} From d584b419236957b065e7a3c94f1a20899a2005a2 Mon Sep 17 00:00:00 2001 From: meglerhagen Date: Mon, 29 Jul 2024 19:05:37 +0200 Subject: [PATCH 3/6] content-collection imported --- .../cache/content-collection-config.mjs | 27 +++++++++ ...53e8e4e9678c3926ca7aca090bf0576cd359.cache | 1 + .../.content-collections/cache/mapping.json | 1 + .../.content-collections/generated/allDocs.js | 57 +++++++++++++++++++ .../generated/allMetas.js | 1 + .../.content-collections/generated/index.d.ts | 10 ++++ .../.content-collections/generated/index.js | 6 ++ apps/www/content-collections.ts | 26 +++++++++ apps/www/next.config.js | 4 +- apps/www/package.json | 10 +++- .../src/app/(docs)/docs/[...slug]/page.tsx | 17 ++++++ apps/www/src/app/(docs)/docs/page.tsx | 25 ++++++++ apps/www/src/app/source.ts | 8 +++ .../src/components/content/mdx-components.tsx | 39 +++++++++++++ apps/www/src/content/docs/sample.mdx | 14 +++++ apps/www/tsconfig.json | 3 +- 16 files changed, 246 insertions(+), 3 deletions(-) create mode 100644 apps/www/.content-collections/cache/content-collection-config.mjs create mode 100644 apps/www/.content-collections/cache/docs/sample/373c0aa717d59dfdc79b41cef8de53e8e4e9678c3926ca7aca090bf0576cd359.cache create mode 100644 apps/www/.content-collections/cache/mapping.json create mode 100644 apps/www/.content-collections/generated/allDocs.js create mode 100644 apps/www/.content-collections/generated/allMetas.js create mode 100644 apps/www/.content-collections/generated/index.d.ts create mode 100644 apps/www/.content-collections/generated/index.js create mode 100644 apps/www/content-collections.ts create mode 100644 apps/www/src/app/(docs)/docs/[...slug]/page.tsx create mode 100644 apps/www/src/app/(docs)/docs/page.tsx create mode 100644 apps/www/src/app/source.ts create mode 100644 apps/www/src/components/content/mdx-components.tsx create mode 100644 apps/www/src/content/docs/sample.mdx diff --git a/apps/www/.content-collections/cache/content-collection-config.mjs b/apps/www/.content-collections/cache/content-collection-config.mjs new file mode 100644 index 0000000..8252345 --- /dev/null +++ b/apps/www/.content-collections/cache/content-collection-config.mjs @@ -0,0 +1,27 @@ +// content-collections.ts +import { defineCollection, defineConfig } from "@content-collections/core"; +import { + createMetaSchema, + createDocSchema, + transformMDX +} from "@fumadocs/content-collections/configuration"; +var docs = defineCollection({ + name: "docs", + directory: "src/content/docs", + include: "**/*.mdx", + schema: createDocSchema, + transform: transformMDX +}); +var metas = defineCollection({ + name: "meta", + directory: "src/content/docs", + include: "**/meta.json", + parser: "json", + schema: createMetaSchema +}); +var content_collections_default = defineConfig({ + collections: [docs, metas] +}); +export { + content_collections_default as default +}; diff --git a/apps/www/.content-collections/cache/docs/sample/373c0aa717d59dfdc79b41cef8de53e8e4e9678c3926ca7aca090bf0576cd359.cache b/apps/www/.content-collections/cache/docs/sample/373c0aa717d59dfdc79b41cef8de53e8e4e9678c3926ca7aca090bf0576cd359.cache new file mode 100644 index 0000000..1ef6026 --- /dev/null +++ b/apps/www/.content-collections/cache/docs/sample/373c0aa717d59dfdc79b41cef8de53e8e4e9678c3926ca7aca090bf0576cd359.cache @@ -0,0 +1 @@ +{"content":"# Welcome to Sample Documentation\n\nThis is a basic MDX file to test if Content Collections is working correctly.\n\n## Features\n\n- Easy to use\n- Supports Markdown syntax\n- Can include React components","title":"Sample Documentation","description":"This is a sample MDX file for testing Content Collections","_meta":{"filePath":"sample.mdx","fileName":"sample.mdx","directory":".","extension":"mdx","path":"sample"},"toc":[{"title":"Welcome to Sample Documentation","url":"#welcome-to-sample-documentation","depth":1},{"title":"Features","url":"#features","depth":2}],"structuredData":{"contents":[{"heading":"welcome-to-sample-documentation","content":"This is a basic MDX file to test if Content Collections is working correctly."},{"heading":"features","content":"Easy to use"},{"heading":"features","content":"Supports Markdown syntax"},{"heading":"features","content":"Can include React components"}],"headings":[{"id":"welcome-to-sample-documentation","content":"Welcome to Sample Documentation"},{"id":"features","content":"Features"}]},"body":"var Component=(()=>{var h=Object.create;var c=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var p=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,f=Object.prototype.hasOwnProperty;var _=(e,n)=>()=>(n||e((n={exports:{}}).exports,n),n.exports),j=(e,n)=>{for(var o in n)c(e,o,{get:n[o],enumerable:!0})},r=(e,n,o,l)=>{if(n&&typeof n==\"object\"||typeof n==\"function\")for(let i of p(n))!f.call(e,i)&&i!==o&&c(e,i,{get:()=>n[i],enumerable:!(l=m(n,i))||l.enumerable});return e};var C=(e,n,o)=>(o=e!=null?h(x(e)):{},r(n||!e||!e.__esModule?c(o,\"default\",{value:e,enumerable:!0}):o,e)),M=e=>r(c({},\"__esModule\",{value:!0}),e);var a=_((D,s)=>{s.exports=_jsx_runtime});var w={};j(w,{default:()=>d});var t=C(a());function u(e){let n={h1:\"h1\",h2:\"h2\",li:\"li\",p:\"p\",ul:\"ul\",...e.components};return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(n.h1,{id:\"welcome-to-sample-documentation\",children:\"Welcome to Sample Documentation\"}),`\n`,(0,t.jsx)(n.p,{children:\"This is a basic MDX file to test if Content Collections is working correctly.\"}),`\n`,(0,t.jsx)(n.h2,{id:\"features\",children:\"Features\"}),`\n`,(0,t.jsxs)(n.ul,{children:[`\n`,(0,t.jsx)(n.li,{children:\"Easy to use\"}),`\n`,(0,t.jsx)(n.li,{children:\"Supports Markdown syntax\"}),`\n`,(0,t.jsx)(n.li,{children:\"Can include React components\"}),`\n`]})]})}function d(e={}){let{wrapper:n}=e.components||{};return n?(0,t.jsx)(n,{...e,children:(0,t.jsx)(u,{...e})}):u(e)}return M(w);})();\n;return Component;"} \ No newline at end of file diff --git a/apps/www/.content-collections/cache/mapping.json b/apps/www/.content-collections/cache/mapping.json new file mode 100644 index 0000000..3ace88c --- /dev/null +++ b/apps/www/.content-collections/cache/mapping.json @@ -0,0 +1 @@ +{"docs":{"sample":["373c0aa717d59dfdc79b41cef8de53e8e4e9678c3926ca7aca090bf0576cd359"]}} \ No newline at end of file diff --git a/apps/www/.content-collections/generated/allDocs.js b/apps/www/.content-collections/generated/allDocs.js new file mode 100644 index 0000000..eb68f3d --- /dev/null +++ b/apps/www/.content-collections/generated/allDocs.js @@ -0,0 +1,57 @@ +export default [ + { + "content": "# Welcome to Sample Documentation\n\nThis is a basic MDX file to test if Content Collections is working correctly.\n\n## Features\n\n- Easy to use\n- Supports Markdown syntax\n- Can include React components", + "title": "Sample Documentation", + "description": "This is a sample MDX file for testing Content Collections", + "_meta": { + "filePath": "sample.mdx", + "fileName": "sample.mdx", + "directory": ".", + "extension": "mdx", + "path": "sample" + }, + "toc": [ + { + "title": "Welcome to Sample Documentation", + "url": "#welcome-to-sample-documentation", + "depth": 1 + }, + { + "title": "Features", + "url": "#features", + "depth": 2 + } + ], + "structuredData": { + "contents": [ + { + "heading": "welcome-to-sample-documentation", + "content": "This is a basic MDX file to test if Content Collections is working correctly." + }, + { + "heading": "features", + "content": "Easy to use" + }, + { + "heading": "features", + "content": "Supports Markdown syntax" + }, + { + "heading": "features", + "content": "Can include React components" + } + ], + "headings": [ + { + "id": "welcome-to-sample-documentation", + "content": "Welcome to Sample Documentation" + }, + { + "id": "features", + "content": "Features" + } + ] + }, + "body": "var Component=(()=>{var h=Object.create;var c=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var p=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,f=Object.prototype.hasOwnProperty;var _=(e,n)=>()=>(n||e((n={exports:{}}).exports,n),n.exports),j=(e,n)=>{for(var o in n)c(e,o,{get:n[o],enumerable:!0})},r=(e,n,o,l)=>{if(n&&typeof n==\"object\"||typeof n==\"function\")for(let i of p(n))!f.call(e,i)&&i!==o&&c(e,i,{get:()=>n[i],enumerable:!(l=m(n,i))||l.enumerable});return e};var C=(e,n,o)=>(o=e!=null?h(x(e)):{},r(n||!e||!e.__esModule?c(o,\"default\",{value:e,enumerable:!0}):o,e)),M=e=>r(c({},\"__esModule\",{value:!0}),e);var a=_((D,s)=>{s.exports=_jsx_runtime});var w={};j(w,{default:()=>d});var t=C(a());function u(e){let n={h1:\"h1\",h2:\"h2\",li:\"li\",p:\"p\",ul:\"ul\",...e.components};return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(n.h1,{id:\"welcome-to-sample-documentation\",children:\"Welcome to Sample Documentation\"}),`\n`,(0,t.jsx)(n.p,{children:\"This is a basic MDX file to test if Content Collections is working correctly.\"}),`\n`,(0,t.jsx)(n.h2,{id:\"features\",children:\"Features\"}),`\n`,(0,t.jsxs)(n.ul,{children:[`\n`,(0,t.jsx)(n.li,{children:\"Easy to use\"}),`\n`,(0,t.jsx)(n.li,{children:\"Supports Markdown syntax\"}),`\n`,(0,t.jsx)(n.li,{children:\"Can include React components\"}),`\n`]})]})}function d(e={}){let{wrapper:n}=e.components||{};return n?(0,t.jsx)(n,{...e,children:(0,t.jsx)(u,{...e})}):u(e)}return M(w);})();\n;return Component;" + } +]; \ No newline at end of file diff --git a/apps/www/.content-collections/generated/allMetas.js b/apps/www/.content-collections/generated/allMetas.js new file mode 100644 index 0000000..109fa8b --- /dev/null +++ b/apps/www/.content-collections/generated/allMetas.js @@ -0,0 +1 @@ +export default []; \ No newline at end of file diff --git a/apps/www/.content-collections/generated/index.d.ts b/apps/www/.content-collections/generated/index.d.ts new file mode 100644 index 0000000..a4bb328 --- /dev/null +++ b/apps/www/.content-collections/generated/index.d.ts @@ -0,0 +1,10 @@ +import configuration from "../../content-collections.ts"; +import { GetTypeByName } from "@content-collections/core"; + +export type Doc = GetTypeByName; +export declare const allDocs: Array; + +export type Meta = GetTypeByName; +export declare const allMetas: Array; + +export {}; diff --git a/apps/www/.content-collections/generated/index.js b/apps/www/.content-collections/generated/index.js new file mode 100644 index 0000000..641fd6e --- /dev/null +++ b/apps/www/.content-collections/generated/index.js @@ -0,0 +1,6 @@ +// generated by content-collections at Mon Jul 29 2024 15:49:27 GMT+0200 (Central European Summer Time) + +import allDocs from "./allDocs.js"; +import allMetas from "./allMetas.js"; + +export { allDocs, allMetas }; diff --git a/apps/www/content-collections.ts b/apps/www/content-collections.ts new file mode 100644 index 0000000..c22ff22 --- /dev/null +++ b/apps/www/content-collections.ts @@ -0,0 +1,26 @@ +import { defineCollection, defineConfig } from '@content-collections/core'; +import { + createMetaSchema, + createDocSchema, + transformMDX, +} from '@fumadocs/content-collections/configuration'; + +const docs = defineCollection({ + name: 'docs', + directory: 'src/content/docs', + include: '**/*.mdx', + schema: createDocSchema, + transform: transformMDX, +}); + +const metas = defineCollection({ + name: 'meta', + directory: 'src/content/docs', + include: '**/meta.json', + parser: 'json', + schema: createMetaSchema, +}); + +export default defineConfig({ + collections: [docs, metas], +}); \ No newline at end of file diff --git a/apps/www/next.config.js b/apps/www/next.config.js index f56ffe3..f3bfccf 100644 --- a/apps/www/next.config.js +++ b/apps/www/next.config.js @@ -1,3 +1,5 @@ +import { withContentCollections } from '@content-collections/next'; + /** @type {import("next").NextConfig} */ const config = { reactStrictMode: true, @@ -23,4 +25,4 @@ const config = { typescript: { ignoreBuildErrors: true }, }; -export default config; \ No newline at end of file +export default withContentCollections(config); \ No newline at end of file diff --git a/apps/www/package.json b/apps/www/package.json index 94adff2..0c02250 100644 --- a/apps/www/package.json +++ b/apps/www/package.json @@ -11,11 +11,16 @@ "lint": "eslint ./src", "start": "pnpm with-env next start", "typecheck": "tsc --noEmit", - "with-env": "dotenv -e ../../.env --" + "with-env": "dotenv -e ../../.env --", + "content-collections": "content-collections-build" }, "dependencies": { + "@content-collections/core": "^0.6.4", + "@content-collections/mdx": "^0.1.3", + "@content-collections/next": "^0.2.0", "@dingify/db": "workspace:*", "@dingify/ui": "workspace:*", + "@fumadocs/content-collections": "^1.1.0", "@headlessui/react": "^1.7.17", "@heroicons/react": "^2.0.18", "@hookform/resolvers": "^3.3.2", @@ -42,11 +47,14 @@ "concurrently": "^8.2.2", "date-fns": "^2.30.0", "framer-motion": "^11.0.14", + "fumadocs-core": "^13.0.1", + "fumadocs-mdx": "^9.0.0", "leaflet": "^1.9.4", "lucide-react": "^0.292.0", "ms": "^2.1.3", "next": "^14.2.4", "next-auth": "4.24.4", + "next-mdx-remote": "^5.0.0", "next-themes": "^0.2.1", "nodemailer": "^6.9.7", "openai": "^4.16.1", diff --git a/apps/www/src/app/(docs)/docs/[...slug]/page.tsx b/apps/www/src/app/(docs)/docs/[...slug]/page.tsx new file mode 100644 index 0000000..b10fcc4 --- /dev/null +++ b/apps/www/src/app/(docs)/docs/[...slug]/page.tsx @@ -0,0 +1,17 @@ +import { MDXComponent } from "@/components/content/mdx-components" +import { getPage } from "@/app/source" + +export default function DocPage({ params }: { params: { slug: string[] } }) { + const page = getPage(params.slug) + + if (!page) { + return

      Page not found
      + } + + return ( +
      +

      {page.data.title}

      + +
      + ) +} diff --git a/apps/www/src/app/(docs)/docs/page.tsx b/apps/www/src/app/(docs)/docs/page.tsx new file mode 100644 index 0000000..ebe9a94 --- /dev/null +++ b/apps/www/src/app/(docs)/docs/page.tsx @@ -0,0 +1,25 @@ +import Link from "next/link" + +import { getPages } from "@/app/source" + +export default function DocsLandingPage() { + const pages = getPages() + + return ( +
      +

      Documentation

      +
        + {pages.map((page) => ( +
      • + + {page.data.title} + +
      • + ))} +
      +
      + ) +} diff --git a/apps/www/src/app/source.ts b/apps/www/src/app/source.ts new file mode 100644 index 0000000..ef05ef8 --- /dev/null +++ b/apps/www/src/app/source.ts @@ -0,0 +1,8 @@ +import { createMDXSource } from "@fumadocs/content-collections" +import { allDocs, allMetas } from "content-collections" +import { loader } from "fumadocs-core/source" + +export const { getPage, getPages, pageTree } = loader({ + baseUrl: "/docs", + source: createMDXSource(allDocs, allMetas), +}) diff --git a/apps/www/src/components/content/mdx-components.tsx b/apps/www/src/components/content/mdx-components.tsx new file mode 100644 index 0000000..9c5f325 --- /dev/null +++ b/apps/www/src/components/content/mdx-components.tsx @@ -0,0 +1,39 @@ +import Link from "next/link" +import { compileMDX, MDXRemote } from "next-mdx-remote/rsc" + +const components = { + h1: (props: any) => ( +

      + ), + h2: (props: any) => ( +

      + ), + h3: (props: any) => ( +

      + ), + p: (props: any) =>

      , + ul: (props: any) =>

        , + ol: (props: any) =>
          , + li: (props: any) =>
        1. , + a: (props: any) => ( + + ), + code: (props: any) => ( + + ), + pre: (props: any) => ( +
          +  ),
          +}
          +
          +export async function MDXComponent({ code }: { code: string }) {
          +  const { content } = await compileMDX({
          +    source: code,
          +    components,
          +    options: {
          +      parseFrontmatter: true,
          +    },
          +  })
          +
          +  return content
          +}
          diff --git a/apps/www/src/content/docs/sample.mdx b/apps/www/src/content/docs/sample.mdx
          new file mode 100644
          index 0000000..7db5432
          --- /dev/null
          +++ b/apps/www/src/content/docs/sample.mdx
          @@ -0,0 +1,14 @@
          +---
          +title: Sample Documentation
          +description: This is a sample MDX file for testing Content Collections
          +---
          +
          +# Welcome to Sample Documentation
          +
          +This is a basic MDX file to test if Content Collections is working correctly.
          +
          +## Features
          +
          +- Easy to use
          +- Supports Markdown syntax
          +- Can include React components
          \ No newline at end of file
          diff --git a/apps/www/tsconfig.json b/apps/www/tsconfig.json
          index 672e384..9bb32a1 100644
          --- a/apps/www/tsconfig.json
          +++ b/apps/www/tsconfig.json
          @@ -6,6 +6,7 @@
               "baseUrl": ".",
               "paths": {
                 "@/*": ["./src/*"],
          +      "content-collections": ["./.content-collections/generated"]
               },
               "plugins": [{ "name": "next" }],
               "tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json",
          @@ -13,5 +14,5 @@
               "noImplicitAny": false, // TODO: Resolve errors when setting this to 'true'
               "useUnknownInCatchVariables": false // TODO: Resolve errors when setting this to 'true'
             },
          -  "include": ["src", ".next/types/**/*.ts"],
          +  "include": ["src", ".next/types/**/*.ts", "content-collections.ts"],
           }
          
          From d5e778af1d0af08c5b21546a08e1dc978fe68d46 Mon Sep 17 00:00:00 2001
          From: meglerhagen 
          Date: Mon, 29 Jul 2024 19:14:47 +0200
          Subject: [PATCH 4/6] done with removal
          
          ---
           apps/www/.content-collections/generated/index.js | 2 +-
           1 file changed, 1 insertion(+), 1 deletion(-)
          
          diff --git a/apps/www/.content-collections/generated/index.js b/apps/www/.content-collections/generated/index.js
          index 641fd6e..312279e 100644
          --- a/apps/www/.content-collections/generated/index.js
          +++ b/apps/www/.content-collections/generated/index.js
          @@ -1,4 +1,4 @@
          -// generated by content-collections at Mon Jul 29 2024 15:49:27 GMT+0200 (Central European Summer Time)
          +// generated by content-collections at Mon Jul 29 2024 19:05:27 GMT+0200 (Central European Summer Time)
           
           import allDocs from "./allDocs.js";
           import allMetas from "./allMetas.js";
          
          From 084664f3d78102c387ab9c50b544e865b433fa44 Mon Sep 17 00:00:00 2001
          From: meglerhagen 
          Date: Mon, 29 Jul 2024 19:15:15 +0200
          Subject: [PATCH 5/6] update
          
          ---
           pnpm-lock.yaml | 2683 ++++++++++++++++++++++--------------------------
           1 file changed, 1229 insertions(+), 1454 deletions(-)
          
          diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
          index 00821e2..d603fca 100644
          --- a/pnpm-lock.yaml
          +++ b/pnpm-lock.yaml
          @@ -60,12 +60,24 @@ importers:
           
             apps/www:
               dependencies:
          +      '@content-collections/core':
          +        specifier: ^0.6.4
          +        version: 0.6.4(typescript@5.4.5)
          +      '@content-collections/mdx':
          +        specifier: ^0.1.3
          +        version: 0.1.3(@content-collections/core@0.6.4)(react-dom@18.2.0)(react@18.2.0)
          +      '@content-collections/next':
          +        specifier: ^0.2.0
          +        version: 0.2.0(@content-collections/core@0.6.4)(next@14.2.4)
                 '@dingify/db':
                   specifier: workspace:*
                   version: link:../../packages/db
                 '@dingify/ui':
                   specifier: workspace:*
                   version: link:../../packages/ui
          +      '@fumadocs/content-collections':
          +        specifier: ^1.1.0
          +        version: 1.1.0(@content-collections/core@0.6.4)(@content-collections/mdx@0.1.3)(fumadocs-core@13.0.1)
                 '@headlessui/react':
                   specifier: ^1.7.17
                   version: 1.7.19(react-dom@18.2.0)(react@18.2.0)
          @@ -90,9 +102,6 @@ importers:
                 '@react-email/button':
                   specifier: 0.0.11
                   version: 0.0.11(react@18.2.0)
          -      '@react-email/components':
          -        specifier: 0.0.7
          -        version: 0.0.7
                 '@react-email/html':
                   specifier: 0.0.6
                   version: 0.0.6(react@18.2.0)
          @@ -141,15 +150,18 @@ importers:
                 concurrently:
                   specifier: ^8.2.2
                   version: 8.2.2
          -      contentlayer:
          -        specifier: ^0.3.4
          -        version: 0.3.4(esbuild@0.21.4)
                 date-fns:
                   specifier: ^2.30.0
                   version: 2.30.0
                 framer-motion:
                   specifier: ^11.0.14
                   version: 11.2.10(react-dom@18.2.0)(react@18.2.0)
          +      fumadocs-core:
          +        specifier: ^13.0.1
          +        version: 13.0.1(@types/react@18.3.3)(next@14.2.4)(react-dom@18.2.0)(react@18.2.0)
          +      fumadocs-mdx:
          +        specifier: ^9.0.0
          +        version: 9.0.0(fumadocs-core@13.0.1)(next@14.2.4)
                 leaflet:
                   specifier: ^1.9.4
                   version: 1.9.4
          @@ -161,13 +173,13 @@ importers:
                   version: 2.1.3
                 next:
                   specifier: ^14.2.4
          -        version: 14.2.4(@opentelemetry/api@1.8.0)(react-dom@18.2.0)(react@18.2.0)
          +        version: 14.2.4(react-dom@18.2.0)(react@18.2.0)
                 next-auth:
                   specifier: 4.24.4
                   version: 4.24.4(next@14.2.4)(nodemailer@6.9.13)(react-dom@18.2.0)(react@18.2.0)
          -      next-contentlayer:
          -        specifier: ^0.3.4
          -        version: 0.3.4(contentlayer@0.3.4)(esbuild@0.21.4)(next@14.2.4)(react-dom@18.2.0)(react@18.2.0)
          +      next-mdx-remote:
          +        specifier: ^5.0.0
          +        version: 5.0.0(@types/react@18.3.3)(react@18.2.0)
                 next-themes:
                   specifier: ^0.2.1
                   version: 0.2.1(next@14.2.4)(react-dom@18.2.0)(react@18.2.0)
          @@ -225,9 +237,6 @@ importers:
                 recharts:
                   specifier: ^2.12.7
                   version: 2.12.7(react-dom@18.2.0)(react@18.2.0)
          -      resend:
          -        specifier: ^1.1.0
          -        version: 1.1.0
                 sharp:
                   specifier: ^0.32.6
                   version: 0.32.6
          @@ -1045,121 +1054,58 @@ packages:
                 chalk: 4.1.2
               dev: true
           
          -  /@contentlayer/cli@0.3.4(esbuild@0.21.4):
          -    resolution: {integrity: sha512-vNDwgLuhYNu+m70NZ3XK9kexKNguuxPXg7Yvzj3B34cEilQjjzSrcTY/i+AIQm9V7uT5GGshx9ukzPf+SmoszQ==}
          -    dependencies:
          -      '@contentlayer/core': 0.3.4(esbuild@0.21.4)
          -      '@contentlayer/utils': 0.3.4
          -      clipanion: 3.2.1(typanion@3.14.0)
          -      typanion: 3.14.0
          -    transitivePeerDependencies:
          -      - '@effect-ts/otel-node'
          -      - esbuild
          -      - markdown-wasm
          -      - supports-color
          -    dev: false
          -
          -  /@contentlayer/client@0.3.4(esbuild@0.21.4):
          -    resolution: {integrity: sha512-QSlLyc3y4PtdC5lFw0L4wTZUH8BQnv2nk37hNCsPAqGf+dRO7TLAzdc+2/mVIRgK+vSH+pSOzjLsQpFxxXRTZA==}
          -    dependencies:
          -      '@contentlayer/core': 0.3.4(esbuild@0.21.4)
          -    transitivePeerDependencies:
          -      - '@effect-ts/otel-node'
          -      - esbuild
          -      - markdown-wasm
          -      - supports-color
          -    dev: false
          -
          -  /@contentlayer/core@0.3.4(esbuild@0.21.4):
          -    resolution: {integrity: sha512-o68oBLwfYZ+2vtgfk1lgHxOl3LoxvRNiUfeQ8IWFWy/L4wnIkKIqLZX01zlRE5IzYM+ZMMN5V0cKQlO7DsyR9g==}
          +  /@content-collections/core@0.6.4(typescript@5.4.5):
          +    resolution: {integrity: sha512-Hn76c2ZR/IhNwdSkmOlDnmCGWFAuFhLtVOXgptTrSOnjFPGCBz6caDDdG9B5yg9zvdSBO9KesztU6bsvDwJQrg==}
               peerDependencies:
          -      esbuild: 0.17.x || 0.18.x
          -      markdown-wasm: 1.x
          -    peerDependenciesMeta:
          -      esbuild:
          -        optional: true
          -      markdown-wasm:
          -        optional: true
          -    dependencies:
          -      '@contentlayer/utils': 0.3.4
          -      camel-case: 4.1.2
          -      comment-json: 4.2.3
          -      esbuild: 0.21.4
          -      gray-matter: 4.0.3
          -      mdx-bundler: 9.2.1(esbuild@0.21.4)
          -      rehype-stringify: 9.0.4
          -      remark-frontmatter: 4.0.1
          -      remark-parse: 10.0.2
          -      remark-rehype: 10.1.0
          -      source-map-support: 0.5.21
          -      type-fest: 3.13.1
          -      unified: 10.1.2
          -    transitivePeerDependencies:
          -      - '@effect-ts/otel-node'
          -      - supports-color
          -    dev: false
          -
          -  /@contentlayer/source-files@0.3.4(esbuild@0.21.4):
          -    resolution: {integrity: sha512-4njyn0OFPu7WY4tAjMxiJgWOKeiHuBOGdQ36EYE03iij/pPPRbiWbL+cmLccYXUFEW58mDwpqROZZm6pnxjRDQ==}
          +      typescript: ^5.0.2
               dependencies:
          -      '@contentlayer/core': 0.3.4(esbuild@0.21.4)
          -      '@contentlayer/utils': 0.3.4
          -      chokidar: 3.6.0
          +      '@parcel/watcher': 2.4.1
          +      camelcase: 8.0.0
          +      esbuild: 0.21.5
                 fast-glob: 3.3.2
                 gray-matter: 4.0.3
          -      imagescript: 1.3.0
                 micromatch: 4.0.7
          -      ts-pattern: 4.3.0
          -      unified: 10.1.2
          -      yaml: 2.4.3
          +      pluralize: 8.0.0
          +      serialize-javascript: 6.0.2
          +      typescript: 5.4.5
          +      yaml: 2.5.0
                 zod: 3.23.8
          -    transitivePeerDependencies:
          -      - '@effect-ts/otel-node'
          -      - esbuild
          -      - markdown-wasm
          -      - supports-color
               dev: false
           
          -  /@contentlayer/source-remote-files@0.3.4(esbuild@0.21.4):
          -    resolution: {integrity: sha512-cyiv4sNUySZvR0uAKlM+kSAELzNd2h2QT1R2e41dRKbwOUVxeLfmGiLugr0aVac6Q3xYcD99dbHyR1xWPV+w9w==}
          +  /@content-collections/integrations@0.1.1(@content-collections/core@0.6.4):
          +    resolution: {integrity: sha512-doJ/PZ79+bhmj2dne6qvAkH4XYMm3NjjP54jq6oDE7Gk6pGUrHW5+wXkc6WHYg/8i1iJZAl0iNShaJn4r23g2g==}
          +    peerDependencies:
          +      '@content-collections/core': 0.x
          +    dependencies:
          +      '@content-collections/core': 0.6.4(typescript@5.4.5)
          +    dev: false
          +
          +  /@content-collections/mdx@0.1.3(@content-collections/core@0.6.4)(react-dom@18.2.0)(react@18.2.0):
          +    resolution: {integrity: sha512-YnZVCppJsA3FgPMtctyL3RqcrLFbGWoi3D8xfDSdx9Yuu9HdIQjgAhrLo+XNQLngTeHaRUBNJfwhYEfAxV84PA==}
          +    peerDependencies:
          +      '@content-collections/core': 0.x
          +      react: ^18.0.0
          +      react-dom: ^18.2.0
               dependencies:
          -      '@contentlayer/core': 0.3.4(esbuild@0.21.4)
          -      '@contentlayer/source-files': 0.3.4(esbuild@0.21.4)
          -      '@contentlayer/utils': 0.3.4
          +      '@content-collections/core': 0.6.4(typescript@5.4.5)
          +      esbuild: 0.19.12
          +      mdx-bundler: 10.0.2(esbuild@0.19.12)
          +      react: 18.2.0
          +      react-dom: 18.2.0(react@18.2.0)
          +      unified: 11.0.4
               transitivePeerDependencies:
          -      - '@effect-ts/otel-node'
          -      - esbuild
          -      - markdown-wasm
                 - supports-color
               dev: false
           
          -  /@contentlayer/utils@0.3.4:
          -    resolution: {integrity: sha512-ZWWOhbUWYQ2QHoLIlcUnEo7X4ZbwcyFPuzVQWWMkK43BxCveyQtZwBIzfyx54sqVzi0GUmKP8bHzsLQT0QxaLQ==}
          +  /@content-collections/next@0.2.0(@content-collections/core@0.6.4)(next@14.2.4):
          +    resolution: {integrity: sha512-ZGHs+iO7k/L2SUx5qRg2rU3Les09Clk02/0VY1bFzO8mSIeA0T6Ze3Usap3QLbJ9EsgKvN+Jn08PHJA6o/31bQ==}
               peerDependencies:
          -      '@effect-ts/otel-node': '*'
          -    peerDependenciesMeta:
          -      '@effect-ts/otel-node':
          -        optional: true
          -    dependencies:
          -      '@effect-ts/core': 0.60.5
          -      '@effect-ts/otel': 0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.8.0)(@opentelemetry/core@1.24.1)(@opentelemetry/sdk-trace-base@1.24.1)
          -      '@effect-ts/otel-exporter-trace-otlp-grpc': 0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.8.0)(@opentelemetry/core@1.24.1)(@opentelemetry/exporter-trace-otlp-grpc@0.39.1)(@opentelemetry/sdk-trace-base@1.24.1)
          -      '@effect-ts/otel-sdk-trace-node': 0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.8.0)(@opentelemetry/core@1.24.1)(@opentelemetry/sdk-trace-base@1.24.1)(@opentelemetry/sdk-trace-node@1.24.1)
          -      '@js-temporal/polyfill': 0.4.4
          -      '@opentelemetry/api': 1.8.0
          -      '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/exporter-trace-otlp-grpc': 0.39.1(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/resources': 1.24.1(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/sdk-trace-base': 1.24.1(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/sdk-trace-node': 1.24.1(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/semantic-conventions': 1.24.1
          -      chokidar: 3.6.0
          -      hash-wasm: 4.11.0
          -      inflection: 2.0.1
          -      memfs: 3.5.3
          -      oo-ascii-tree: 1.99.0
          -      ts-pattern: 4.3.0
          -      type-fest: 3.13.1
          +      '@content-collections/core': 0.x
          +      next: ^12 || ^13 || ^14 || ^15
          +    dependencies:
          +      '@content-collections/core': 0.6.4(typescript@5.4.5)
          +      '@content-collections/integrations': 0.1.1(@content-collections/core@0.6.4)
          +      next: 14.2.4(react-dom@18.2.0)(react@18.2.0)
               dev: false
           
             /@cspotcode/source-map-support@0.8.1:
          @@ -1169,64 +1115,6 @@ packages:
                 '@jridgewell/trace-mapping': 0.3.9
               dev: true
           
          -  /@effect-ts/core@0.60.5:
          -    resolution: {integrity: sha512-qi1WrtJA90XLMnj2hnUszW9Sx4dXP03ZJtCc5DiUBIOhF4Vw7plfb65/bdBySPoC9s7zy995TdUX1XBSxUkl5w==}
          -    dependencies:
          -      '@effect-ts/system': 0.57.5
          -    dev: false
          -
          -  /@effect-ts/otel-exporter-trace-otlp-grpc@0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.8.0)(@opentelemetry/core@1.24.1)(@opentelemetry/exporter-trace-otlp-grpc@0.39.1)(@opentelemetry/sdk-trace-base@1.24.1):
          -    resolution: {integrity: sha512-47gAg0O2pW5Jlo86jfzjdkwL5a7Bzb+Kj5WTmdu4CxYRfWn9ytKjuuYIfsNDW8neuhdKzn+P5wCddgEh0glYyQ==}
          -    peerDependencies:
          -      '@effect-ts/core': ^0.60.2
          -      '@opentelemetry/api': ^1.4.0
          -      '@opentelemetry/core': ^1.13.0
          -      '@opentelemetry/exporter-trace-otlp-grpc': ^0.39.0
          -      '@opentelemetry/sdk-trace-base': ^1.13.0
          -    dependencies:
          -      '@effect-ts/core': 0.60.5
          -      '@effect-ts/otel': 0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.8.0)(@opentelemetry/core@1.24.1)(@opentelemetry/sdk-trace-base@1.24.1)
          -      '@opentelemetry/api': 1.8.0
          -      '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/exporter-trace-otlp-grpc': 0.39.1(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/sdk-trace-base': 1.24.1(@opentelemetry/api@1.8.0)
          -    dev: false
          -
          -  /@effect-ts/otel-sdk-trace-node@0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.8.0)(@opentelemetry/core@1.24.1)(@opentelemetry/sdk-trace-base@1.24.1)(@opentelemetry/sdk-trace-node@1.24.1):
          -    resolution: {integrity: sha512-a2sF0ylmn8xOJs8fNeT/spJ1gUcsksAJCALxo9WOfuTCMtTwMVtVhCKEPEeQoL7wFqU+JgPkVdP91+FJ/Rkeow==}
          -    peerDependencies:
          -      '@effect-ts/core': ^0.60.2
          -      '@opentelemetry/api': ^1.4.0
          -      '@opentelemetry/core': ^1.13.0
          -      '@opentelemetry/sdk-trace-base': ^1.13.0
          -      '@opentelemetry/sdk-trace-node': ^1.13.0
          -    dependencies:
          -      '@effect-ts/core': 0.60.5
          -      '@effect-ts/otel': 0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.8.0)(@opentelemetry/core@1.24.1)(@opentelemetry/sdk-trace-base@1.24.1)
          -      '@opentelemetry/api': 1.8.0
          -      '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/sdk-trace-base': 1.24.1(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/sdk-trace-node': 1.24.1(@opentelemetry/api@1.8.0)
          -    dev: false
          -
          -  /@effect-ts/otel@0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.8.0)(@opentelemetry/core@1.24.1)(@opentelemetry/sdk-trace-base@1.24.1):
          -    resolution: {integrity: sha512-AmZJHl7t0+Peh7Yb2+hqn6r9+rd9/UfeA4AMV9h0YGTdOyouyFfD3wzWlxnAUzAQ4Lrod4kC7Noruret4EpqpA==}
          -    peerDependencies:
          -      '@effect-ts/core': ^0.60.2
          -      '@opentelemetry/api': ^1.4.0
          -      '@opentelemetry/core': ^1.13.0
          -      '@opentelemetry/sdk-trace-base': ^1.13.0
          -    dependencies:
          -      '@effect-ts/core': 0.60.5
          -      '@opentelemetry/api': 1.8.0
          -      '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/sdk-trace-base': 1.24.1(@opentelemetry/api@1.8.0)
          -    dev: false
          -
          -  /@effect-ts/system@0.57.5:
          -    resolution: {integrity: sha512-/crHGujo0xnuHIYNc1VgP0HGJGFSoSqq88JFXe6FmFyXPpWt8Xu39LyLg7rchsxfXFeEdA9CrIZvLV5eswXV5g==}
          -    dev: false
          -
             /@esbuild-plugins/node-globals-polyfill@0.2.3(esbuild@0.17.19):
               resolution: {integrity: sha512-r3MIryXDeXDOZh7ih1l/yE9ZLORCd5e8vWg02azWRGj5SPTuoh69A2AIyn0Z31V/kHBfZ4HgWJ+OK3GTTwLmnw==}
               peerDependencies:
          @@ -1245,22 +1133,31 @@ packages:
                 rollup-plugin-node-polyfills: 0.2.1
               dev: true
           
          -  /@esbuild-plugins/node-resolve@0.1.4(esbuild@0.21.4):
          -    resolution: {integrity: sha512-haFQ0qhxEpqtWWY0kx1Y5oE3sMyO1PcoSiWEPrAw6tm/ZOOLXjSs6Q+v1v9eyuVF0nNt50YEvrcrvENmyoMv5g==}
          +  /@esbuild-plugins/node-resolve@0.2.2(esbuild@0.19.12):
          +    resolution: {integrity: sha512-+t5FdX3ATQlb53UFDBRb4nqjYBz492bIrnVWvpQHpzZlu9BQL5HasMZhqc409ygUwOWCXZhrWr6NyZ6T6Y+cxw==}
               peerDependencies:
                 esbuild: '*'
               dependencies:
                 '@types/resolve': 1.20.6
                 debug: 4.3.5
          -      esbuild: 0.21.4
          +      esbuild: 0.19.12
                 escape-string-regexp: 4.0.0
                 resolve: 1.22.8
               transitivePeerDependencies:
                 - supports-color
               dev: false
           
          -  /@esbuild/aix-ppc64@0.21.4:
          -    resolution: {integrity: sha512-Zrm+B33R4LWPLjDEVnEqt2+SLTATlru1q/xYKVn8oVTbiRBGmK2VIMoIYGJDGyftnGaC788IuzGFAlb7IQ0Y8A==}
          +  /@esbuild/aix-ppc64@0.19.12:
          +    resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==}
          +    engines: {node: '>=12'}
          +    cpu: [ppc64]
          +    os: [aix]
          +    requiresBuild: true
          +    dev: false
          +    optional: true
          +
          +  /@esbuild/aix-ppc64@0.21.5:
          +    resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
               engines: {node: '>=12'}
               cpu: [ppc64]
               os: [aix]
          @@ -1286,8 +1183,17 @@ packages:
               dev: true
               optional: true
           
          -  /@esbuild/android-arm64@0.21.4:
          -    resolution: {integrity: sha512-fYFnz+ObClJ3dNiITySBUx+oNalYUT18/AryMxfovLkYWbutXsct3Wz2ZWAcGGppp+RVVX5FiXeLYGi97umisA==}
          +  /@esbuild/android-arm64@0.19.12:
          +    resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==}
          +    engines: {node: '>=12'}
          +    cpu: [arm64]
          +    os: [android]
          +    requiresBuild: true
          +    dev: false
          +    optional: true
          +
          +  /@esbuild/android-arm64@0.21.5:
          +    resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
               engines: {node: '>=12'}
               cpu: [arm64]
               os: [android]
          @@ -1313,8 +1219,17 @@ packages:
               dev: true
               optional: true
           
          -  /@esbuild/android-arm@0.21.4:
          -    resolution: {integrity: sha512-E7H/yTd8kGQfY4z9t3nRPk/hrhaCajfA3YSQSBrst8B+3uTcgsi8N+ZWYCaeIDsiVs6m65JPCaQN/DxBRclF3A==}
          +  /@esbuild/android-arm@0.19.12:
          +    resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==}
          +    engines: {node: '>=12'}
          +    cpu: [arm]
          +    os: [android]
          +    requiresBuild: true
          +    dev: false
          +    optional: true
          +
          +  /@esbuild/android-arm@0.21.5:
          +    resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
               engines: {node: '>=12'}
               cpu: [arm]
               os: [android]
          @@ -1340,8 +1255,17 @@ packages:
               dev: true
               optional: true
           
          -  /@esbuild/android-x64@0.21.4:
          -    resolution: {integrity: sha512-mDqmlge3hFbEPbCWxp4fM6hqq7aZfLEHZAKGP9viq9wMUBVQx202aDIfc3l+d2cKhUJM741VrCXEzRFhPDKH3Q==}
          +  /@esbuild/android-x64@0.19.12:
          +    resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==}
          +    engines: {node: '>=12'}
          +    cpu: [x64]
          +    os: [android]
          +    requiresBuild: true
          +    dev: false
          +    optional: true
          +
          +  /@esbuild/android-x64@0.21.5:
          +    resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
               engines: {node: '>=12'}
               cpu: [x64]
               os: [android]
          @@ -1367,8 +1291,17 @@ packages:
               dev: true
               optional: true
           
          -  /@esbuild/darwin-arm64@0.21.4:
          -    resolution: {integrity: sha512-72eaIrDZDSiWqpmCzVaBD58c8ea8cw/U0fq/PPOTqE3c53D0xVMRt2ooIABZ6/wj99Y+h4ksT/+I+srCDLU9TA==}
          +  /@esbuild/darwin-arm64@0.19.12:
          +    resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==}
          +    engines: {node: '>=12'}
          +    cpu: [arm64]
          +    os: [darwin]
          +    requiresBuild: true
          +    dev: false
          +    optional: true
          +
          +  /@esbuild/darwin-arm64@0.21.5:
          +    resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
               engines: {node: '>=12'}
               cpu: [arm64]
               os: [darwin]
          @@ -1394,8 +1327,17 @@ packages:
               dev: true
               optional: true
           
          -  /@esbuild/darwin-x64@0.21.4:
          -    resolution: {integrity: sha512-uBsuwRMehGmw1JC7Vecu/upOjTsMhgahmDkWhGLWxIgUn2x/Y4tIwUZngsmVb6XyPSTXJYS4YiASKPcm9Zitag==}
          +  /@esbuild/darwin-x64@0.19.12:
          +    resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==}
          +    engines: {node: '>=12'}
          +    cpu: [x64]
          +    os: [darwin]
          +    requiresBuild: true
          +    dev: false
          +    optional: true
          +
          +  /@esbuild/darwin-x64@0.21.5:
          +    resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
               engines: {node: '>=12'}
               cpu: [x64]
               os: [darwin]
          @@ -1421,8 +1363,17 @@ packages:
               dev: true
               optional: true
           
          -  /@esbuild/freebsd-arm64@0.21.4:
          -    resolution: {integrity: sha512-8JfuSC6YMSAEIZIWNL3GtdUT5NhUA/CMUCpZdDRolUXNAXEE/Vbpe6qlGLpfThtY5NwXq8Hi4nJy4YfPh+TwAg==}
          +  /@esbuild/freebsd-arm64@0.19.12:
          +    resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==}
          +    engines: {node: '>=12'}
          +    cpu: [arm64]
          +    os: [freebsd]
          +    requiresBuild: true
          +    dev: false
          +    optional: true
          +
          +  /@esbuild/freebsd-arm64@0.21.5:
          +    resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
               engines: {node: '>=12'}
               cpu: [arm64]
               os: [freebsd]
          @@ -1448,8 +1399,17 @@ packages:
               dev: true
               optional: true
           
          -  /@esbuild/freebsd-x64@0.21.4:
          -    resolution: {integrity: sha512-8d9y9eQhxv4ef7JmXny7591P/PYsDFc4+STaxC1GBv0tMyCdyWfXu2jBuqRsyhY8uL2HU8uPyscgE2KxCY9imQ==}
          +  /@esbuild/freebsd-x64@0.19.12:
          +    resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==}
          +    engines: {node: '>=12'}
          +    cpu: [x64]
          +    os: [freebsd]
          +    requiresBuild: true
          +    dev: false
          +    optional: true
          +
          +  /@esbuild/freebsd-x64@0.21.5:
          +    resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
               engines: {node: '>=12'}
               cpu: [x64]
               os: [freebsd]
          @@ -1475,8 +1435,17 @@ packages:
               dev: true
               optional: true
           
          -  /@esbuild/linux-arm64@0.21.4:
          -    resolution: {integrity: sha512-/GLD2orjNU50v9PcxNpYZi+y8dJ7e7/LhQukN3S4jNDXCKkyyiyAz9zDw3siZ7Eh1tRcnCHAo/WcqKMzmi4eMQ==}
          +  /@esbuild/linux-arm64@0.19.12:
          +    resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==}
          +    engines: {node: '>=12'}
          +    cpu: [arm64]
          +    os: [linux]
          +    requiresBuild: true
          +    dev: false
          +    optional: true
          +
          +  /@esbuild/linux-arm64@0.21.5:
          +    resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
               engines: {node: '>=12'}
               cpu: [arm64]
               os: [linux]
          @@ -1502,8 +1471,17 @@ packages:
               dev: true
               optional: true
           
          -  /@esbuild/linux-arm@0.21.4:
          -    resolution: {integrity: sha512-2rqFFefpYmpMs+FWjkzSgXg5vViocqpq5a1PSRgT0AvSgxoXmGF17qfGAzKedg6wAwyM7UltrKVo9kxaJLMF/g==}
          +  /@esbuild/linux-arm@0.19.12:
          +    resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==}
          +    engines: {node: '>=12'}
          +    cpu: [arm]
          +    os: [linux]
          +    requiresBuild: true
          +    dev: false
          +    optional: true
          +
          +  /@esbuild/linux-arm@0.21.5:
          +    resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
               engines: {node: '>=12'}
               cpu: [arm]
               os: [linux]
          @@ -1529,8 +1507,17 @@ packages:
               dev: true
               optional: true
           
          -  /@esbuild/linux-ia32@0.21.4:
          -    resolution: {integrity: sha512-pNftBl7m/tFG3t2m/tSjuYeWIffzwAZT9m08+9DPLizxVOsUl8DdFzn9HvJrTQwe3wvJnwTdl92AonY36w/25g==}
          +  /@esbuild/linux-ia32@0.19.12:
          +    resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==}
          +    engines: {node: '>=12'}
          +    cpu: [ia32]
          +    os: [linux]
          +    requiresBuild: true
          +    dev: false
          +    optional: true
          +
          +  /@esbuild/linux-ia32@0.21.5:
          +    resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
               engines: {node: '>=12'}
               cpu: [ia32]
               os: [linux]
          @@ -1556,8 +1543,17 @@ packages:
               dev: true
               optional: true
           
          -  /@esbuild/linux-loong64@0.21.4:
          -    resolution: {integrity: sha512-cSD2gzCK5LuVX+hszzXQzlWya6c7hilO71L9h4KHwqI4qeqZ57bAtkgcC2YioXjsbfAv4lPn3qe3b00Zt+jIfQ==}
          +  /@esbuild/linux-loong64@0.19.12:
          +    resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==}
          +    engines: {node: '>=12'}
          +    cpu: [loong64]
          +    os: [linux]
          +    requiresBuild: true
          +    dev: false
          +    optional: true
          +
          +  /@esbuild/linux-loong64@0.21.5:
          +    resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
               engines: {node: '>=12'}
               cpu: [loong64]
               os: [linux]
          @@ -1583,8 +1579,17 @@ packages:
               dev: true
               optional: true
           
          -  /@esbuild/linux-mips64el@0.21.4:
          -    resolution: {integrity: sha512-qtzAd3BJh7UdbiXCrg6npWLYU0YpufsV9XlufKhMhYMJGJCdfX/G6+PNd0+v877X1JG5VmjBLUiFB0o8EUSicA==}
          +  /@esbuild/linux-mips64el@0.19.12:
          +    resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==}
          +    engines: {node: '>=12'}
          +    cpu: [mips64el]
          +    os: [linux]
          +    requiresBuild: true
          +    dev: false
          +    optional: true
          +
          +  /@esbuild/linux-mips64el@0.21.5:
          +    resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
               engines: {node: '>=12'}
               cpu: [mips64el]
               os: [linux]
          @@ -1610,8 +1615,17 @@ packages:
               dev: true
               optional: true
           
          -  /@esbuild/linux-ppc64@0.21.4:
          -    resolution: {integrity: sha512-yB8AYzOTaL0D5+2a4xEy7OVvbcypvDR05MsB/VVPVA7nL4hc5w5Dyd/ddnayStDgJE59fAgNEOdLhBxjfx5+dg==}
          +  /@esbuild/linux-ppc64@0.19.12:
          +    resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==}
          +    engines: {node: '>=12'}
          +    cpu: [ppc64]
          +    os: [linux]
          +    requiresBuild: true
          +    dev: false
          +    optional: true
          +
          +  /@esbuild/linux-ppc64@0.21.5:
          +    resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
               engines: {node: '>=12'}
               cpu: [ppc64]
               os: [linux]
          @@ -1637,8 +1651,17 @@ packages:
               dev: true
               optional: true
           
          -  /@esbuild/linux-riscv64@0.21.4:
          -    resolution: {integrity: sha512-Y5AgOuVzPjQdgU59ramLoqSSiXddu7F3F+LI5hYy/d1UHN7K5oLzYBDZe23QmQJ9PIVUXwOdKJ/jZahPdxzm9w==}
          +  /@esbuild/linux-riscv64@0.19.12:
          +    resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==}
          +    engines: {node: '>=12'}
          +    cpu: [riscv64]
          +    os: [linux]
          +    requiresBuild: true
          +    dev: false
          +    optional: true
          +
          +  /@esbuild/linux-riscv64@0.21.5:
          +    resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
               engines: {node: '>=12'}
               cpu: [riscv64]
               os: [linux]
          @@ -1664,8 +1687,17 @@ packages:
               dev: true
               optional: true
           
          -  /@esbuild/linux-s390x@0.21.4:
          -    resolution: {integrity: sha512-Iqc/l/FFwtt8FoTK9riYv9zQNms7B8u+vAI/rxKuN10HgQIXaPzKZc479lZ0x6+vKVQbu55GdpYpeNWzjOhgbA==}
          +  /@esbuild/linux-s390x@0.19.12:
          +    resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==}
          +    engines: {node: '>=12'}
          +    cpu: [s390x]
          +    os: [linux]
          +    requiresBuild: true
          +    dev: false
          +    optional: true
          +
          +  /@esbuild/linux-s390x@0.21.5:
          +    resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
               engines: {node: '>=12'}
               cpu: [s390x]
               os: [linux]
          @@ -1691,8 +1723,17 @@ packages:
               dev: true
               optional: true
           
          -  /@esbuild/linux-x64@0.21.4:
          -    resolution: {integrity: sha512-Td9jv782UMAFsuLZINfUpoF5mZIbAj+jv1YVtE58rFtfvoKRiKSkRGQfHTgKamLVT/fO7203bHa3wU122V/Bdg==}
          +  /@esbuild/linux-x64@0.19.12:
          +    resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==}
          +    engines: {node: '>=12'}
          +    cpu: [x64]
          +    os: [linux]
          +    requiresBuild: true
          +    dev: false
          +    optional: true
          +
          +  /@esbuild/linux-x64@0.21.5:
          +    resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
               engines: {node: '>=12'}
               cpu: [x64]
               os: [linux]
          @@ -1718,8 +1759,17 @@ packages:
               dev: true
               optional: true
           
          -  /@esbuild/netbsd-x64@0.21.4:
          -    resolution: {integrity: sha512-Awn38oSXxsPMQxaV0Ipb7W/gxZtk5Tx3+W+rAPdZkyEhQ6968r9NvtkjhnhbEgWXYbgV+JEONJ6PcdBS+nlcpA==}
          +  /@esbuild/netbsd-x64@0.19.12:
          +    resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==}
          +    engines: {node: '>=12'}
          +    cpu: [x64]
          +    os: [netbsd]
          +    requiresBuild: true
          +    dev: false
          +    optional: true
          +
          +  /@esbuild/netbsd-x64@0.21.5:
          +    resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
               engines: {node: '>=12'}
               cpu: [x64]
               os: [netbsd]
          @@ -1745,8 +1795,17 @@ packages:
               dev: true
               optional: true
           
          -  /@esbuild/openbsd-x64@0.21.4:
          -    resolution: {integrity: sha512-IsUmQeCY0aU374R82fxIPu6vkOybWIMc3hVGZ3ChRwL9hA1TwY+tS0lgFWV5+F1+1ssuvvXt3HFqe8roCip8Hg==}
          +  /@esbuild/openbsd-x64@0.19.12:
          +    resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==}
          +    engines: {node: '>=12'}
          +    cpu: [x64]
          +    os: [openbsd]
          +    requiresBuild: true
          +    dev: false
          +    optional: true
          +
          +  /@esbuild/openbsd-x64@0.21.5:
          +    resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
               engines: {node: '>=12'}
               cpu: [x64]
               os: [openbsd]
          @@ -1772,8 +1831,17 @@ packages:
               dev: true
               optional: true
           
          -  /@esbuild/sunos-x64@0.21.4:
          -    resolution: {integrity: sha512-hsKhgZ4teLUaDA6FG/QIu2q0rI6I36tZVfM4DBZv3BG0mkMIdEnMbhc4xwLvLJSS22uWmaVkFkqWgIS0gPIm+A==}
          +  /@esbuild/sunos-x64@0.19.12:
          +    resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==}
          +    engines: {node: '>=12'}
          +    cpu: [x64]
          +    os: [sunos]
          +    requiresBuild: true
          +    dev: false
          +    optional: true
          +
          +  /@esbuild/sunos-x64@0.21.5:
          +    resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
               engines: {node: '>=12'}
               cpu: [x64]
               os: [sunos]
          @@ -1799,8 +1867,17 @@ packages:
               dev: true
               optional: true
           
          -  /@esbuild/win32-arm64@0.21.4:
          -    resolution: {integrity: sha512-UUfMgMoXPoA/bvGUNfUBFLCh0gt9dxZYIx9W4rfJr7+hKe5jxxHmfOK8YSH4qsHLLN4Ck8JZ+v7Q5fIm1huErg==}
          +  /@esbuild/win32-arm64@0.19.12:
          +    resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==}
          +    engines: {node: '>=12'}
          +    cpu: [arm64]
          +    os: [win32]
          +    requiresBuild: true
          +    dev: false
          +    optional: true
          +
          +  /@esbuild/win32-arm64@0.21.5:
          +    resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
               engines: {node: '>=12'}
               cpu: [arm64]
               os: [win32]
          @@ -1826,8 +1903,17 @@ packages:
               dev: true
               optional: true
           
          -  /@esbuild/win32-ia32@0.21.4:
          -    resolution: {integrity: sha512-yIxbspZb5kGCAHWm8dexALQ9en1IYDfErzjSEq1KzXFniHv019VT3mNtTK7t8qdy4TwT6QYHI9sEZabONHg+aw==}
          +  /@esbuild/win32-ia32@0.19.12:
          +    resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==}
          +    engines: {node: '>=12'}
          +    cpu: [ia32]
          +    os: [win32]
          +    requiresBuild: true
          +    dev: false
          +    optional: true
          +
          +  /@esbuild/win32-ia32@0.21.5:
          +    resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
               engines: {node: '>=12'}
               cpu: [ia32]
               os: [win32]
          @@ -1853,8 +1939,17 @@ packages:
               dev: true
               optional: true
           
          -  /@esbuild/win32-x64@0.21.4:
          -    resolution: {integrity: sha512-sywLRD3UK/qRJt0oBwdpYLBibk7KiRfbswmWRDabuncQYSlf8aLEEUor/oP6KRz8KEG+HoiVLBhPRD5JWjS8Sg==}
          +  /@esbuild/win32-x64@0.19.12:
          +    resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==}
          +    engines: {node: '>=12'}
          +    cpu: [x64]
          +    os: [win32]
          +    requiresBuild: true
          +    dev: false
          +    optional: true
          +
          +  /@esbuild/win32-x64@0.21.5:
          +    resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
               engines: {node: '>=12'}
               cpu: [x64]
               os: [win32]
          @@ -1978,23 +2073,23 @@ packages:
               resolution: {integrity: sha512-J4yDIIthosAsRZ5CPYP/jQvUAQtlZTTD/4suA08/FEnlxqW3sKS9iAhgsa9VYLZ6vDHn/ixJgIqRQPotoBjxIw==}
               dev: false
           
          -  /@grpc/grpc-js@1.10.8:
          -    resolution: {integrity: sha512-vYVqYzHicDqyKB+NQhAc54I1QWCBLCrYG6unqOIcBTHx+7x8C9lcoLj3KVJXs2VB4lUbpWY+Kk9NipcbXYWmvg==}
          -    engines: {node: '>=12.10.0'}
          +  /@formatjs/intl-localematcher@0.5.4:
          +    resolution: {integrity: sha512-zTwEpWOzZ2CiKcB93BLngUX59hQkuZjT2+SAQEscSm52peDW/getsawMcWF1rGRpMCX6D7nSJA3CzJ8gn13N/g==}
               dependencies:
          -      '@grpc/proto-loader': 0.7.13
          -      '@js-sdsl/ordered-map': 4.4.2
          +      tslib: 2.6.3
               dev: false
           
          -  /@grpc/proto-loader@0.7.13:
          -    resolution: {integrity: sha512-AiXO/bfe9bmxBjxxtYxFAXGZvMaN5s8kO+jBHAJCON8rJoB5YS/D6X7ZNc6XQkuHNmyl4CYaMI1fJ/Gn27RGGw==}
          -    engines: {node: '>=6'}
          -    hasBin: true
          +  /@fumadocs/content-collections@1.1.0(@content-collections/core@0.6.4)(@content-collections/mdx@0.1.3)(fumadocs-core@13.0.1):
          +    resolution: {integrity: sha512-DlVZGC58gQrARx3uffMp1sBWqal0SEvHkpiAQXCB/5V15yeZtzFnQ46JVgnIIZA0/Dl69lxsF6T91omfPKo1sQ==}
          +    peerDependencies:
          +      '@content-collections/core': 0.x.x
          +      '@content-collections/mdx': 0.x.x
          +      fumadocs-core: 12.x.x
               dependencies:
          -      lodash.camelcase: 4.3.0
          -      long: 5.2.3
          -      protobufjs: 7.3.0
          -      yargs: 17.7.2
          +      '@content-collections/core': 0.6.4(typescript@5.4.5)
          +      '@content-collections/mdx': 0.1.3(@content-collections/core@0.6.4)(react-dom@18.2.0)(react@18.2.0)
          +      fumadocs-core: 13.0.1(@types/react@18.3.3)(next@14.2.4)(react-dom@18.2.0)(react@18.2.0)
          +      rehype-img-size: 1.0.1
               dev: false
           
             /@headlessui/react@1.7.19(react-dom@18.2.0)(react@18.2.0):
          @@ -2137,18 +2232,6 @@ packages:
                 '@jridgewell/sourcemap-codec': 1.4.15
               dev: true
           
          -  /@js-sdsl/ordered-map@4.4.2:
          -    resolution: {integrity: sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw==}
          -    dev: false
          -
          -  /@js-temporal/polyfill@0.4.4:
          -    resolution: {integrity: sha512-2X6bvghJ/JAoZO52lbgyAPFj8uCflhTo2g7nkFzEQdXd/D8rEeD4HtmTEpmtGCva260fcd66YNXBOYdnmHqSOg==}
          -    engines: {node: '>=12'}
          -    dependencies:
          -      jsbi: 4.3.0
          -      tslib: 2.6.3
          -    dev: false
          -
             /@manypkg/find-root@2.2.1:
               resolution: {integrity: sha512-34NlypD5mmTY65cFAK7QPgY5Tzt0qXR4ZRXdg97xAlkiLuwXUPBEXy5Hsqzd+7S2acsLxUz6Cs50rlDZQr4xUA==}
               engines: {node: '>=14.18.0'}
          @@ -2168,45 +2251,63 @@ packages:
                 read-yaml-file: 1.1.0
               dev: false
           
          -  /@mdx-js/esbuild@2.3.0(esbuild@0.21.4):
          -    resolution: {integrity: sha512-r/vsqsM0E+U4Wr0DK+0EfmABE/eg+8ITW4DjvYdh3ve/tK2safaqHArNnaqbOk1DjYGrhxtoXoGaM3BY8fGBTA==}
          +  /@mdx-js/esbuild@3.0.1(esbuild@0.19.12):
          +    resolution: {integrity: sha512-+KZbCKcRjFtRD6qzD+c70Vq/VPVt5LHFsOshNcsdcONkaLTCSjmM7/uj71i3BcP+170f+P4DwVEMtqR/k0t5aw==}
               peerDependencies:
          -      esbuild: '>=0.11.0'
          +      esbuild: '>=0.14.0'
               dependencies:
          -      '@mdx-js/mdx': 2.3.0
          -      esbuild: 0.21.4
          -      node-fetch: 3.3.2
          -      vfile: 5.3.7
          +      '@mdx-js/mdx': 3.0.1
          +      '@types/unist': 3.0.2
          +      esbuild: 0.19.12
          +      vfile: 6.0.1
          +      vfile-message: 4.0.2
               transitivePeerDependencies:
                 - supports-color
               dev: false
           
          -  /@mdx-js/mdx@2.3.0:
          -    resolution: {integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==}
          +  /@mdx-js/mdx@3.0.1:
          +    resolution: {integrity: sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA==}
               dependencies:
          +      '@types/estree': 1.0.5
                 '@types/estree-jsx': 1.0.5
          +      '@types/hast': 3.0.4
                 '@types/mdx': 2.0.13
          -      estree-util-build-jsx: 2.2.2
          -      estree-util-is-identifier-name: 2.1.0
          -      estree-util-to-js: 1.2.0
          +      collapse-white-space: 2.1.0
          +      devlop: 1.1.0
          +      estree-util-build-jsx: 3.0.1
          +      estree-util-is-identifier-name: 3.0.0
          +      estree-util-to-js: 2.0.0
                 estree-walker: 3.0.3
          -      hast-util-to-estree: 2.3.3
          -      markdown-extensions: 1.1.1
          +      hast-util-to-estree: 3.1.0
          +      hast-util-to-jsx-runtime: 2.3.0
          +      markdown-extensions: 2.0.0
                 periscopic: 3.1.0
          -      remark-mdx: 2.3.0
          -      remark-parse: 10.0.2
          -      remark-rehype: 10.1.0
          -      unified: 10.1.2
          -      unist-util-position-from-estree: 1.1.2
          -      unist-util-stringify-position: 3.0.3
          -      unist-util-visit: 4.1.2
          -      vfile: 5.3.7
          +      remark-mdx: 3.0.1
          +      remark-parse: 11.0.0
          +      remark-rehype: 11.1.0
          +      source-map: 0.7.4
          +      unified: 11.0.4
          +      unist-util-position-from-estree: 2.0.0
          +      unist-util-stringify-position: 4.0.0
          +      unist-util-visit: 5.0.0
          +      vfile: 6.0.1
               transitivePeerDependencies:
                 - supports-color
               dev: false
           
          -  /@neondatabase/serverless@0.9.3:
          -    resolution: {integrity: sha512-6ZBK8asl2Z3+ADEaELvbaVVGVlmY1oAzkxxZfpmXPKFuJhbDN+5fU3zYBamsahS/Ch1zE+CVWB3R+8QEI2LMSw==}
          +  /@mdx-js/react@3.0.1(@types/react@18.3.3)(react@18.2.0):
          +    resolution: {integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==}
          +    peerDependencies:
          +      '@types/react': '>=16'
          +      react: '>=16'
          +    dependencies:
          +      '@types/mdx': 2.0.13
          +      '@types/react': 18.3.3
          +      react: 18.2.0
          +    dev: false
          +
          +  /@neondatabase/serverless@0.9.3:
          +    resolution: {integrity: sha512-6ZBK8asl2Z3+ADEaELvbaVVGVlmY1oAzkxxZfpmXPKFuJhbDN+5fU3zYBamsahS/Ch1zE+CVWB3R+8QEI2LMSw==}
               dependencies:
                 '@types/pg': 8.11.6
               dev: false
          @@ -2731,218 +2832,139 @@ packages:
               resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==}
               dev: false
           
          -  /@opentelemetry/api-logs@0.39.1:
          -    resolution: {integrity: sha512-9BJ8lMcOzEN0lu+Qji801y707oFO4xT3db6cosPvl+k7ItUHKN5ofWqtSbM9gbt1H4JJ/4/2TVrqI9Rq7hNv6Q==}
          -    engines: {node: '>=14'}
          -    dependencies:
          -      '@opentelemetry/api': 1.8.0
          -    dev: false
          -
          -  /@opentelemetry/api@1.8.0:
          -    resolution: {integrity: sha512-I/s6F7yKUDdtMsoBWXJe8Qz40Tui5vsuKCWJEWVL+5q9sSWRzzx6v2KeNsOBEwd94j0eWkpWCH4yB6rZg9Mf0w==}
          -    engines: {node: '>=8.0.0'}
          -    dev: false
          -
          -  /@opentelemetry/context-async-hooks@1.24.1(@opentelemetry/api@1.8.0):
          -    resolution: {integrity: sha512-R5r6DO4kgEOVBxFXhXjwospLQkv+sYxwCfjvoZBe7Zm6KKXAV9kDSJhi/D1BweowdZmO+sdbENLs374gER8hpQ==}
          -    engines: {node: '>=14'}
          -    peerDependencies:
          -      '@opentelemetry/api': '>=1.0.0 <1.9.0'
          -    dependencies:
          -      '@opentelemetry/api': 1.8.0
          -    dev: false
          -
          -  /@opentelemetry/core@1.13.0(@opentelemetry/api@1.8.0):
          -    resolution: {integrity: sha512-2dBX3Sj99H96uwJKvc2w9NOiNgbvAO6mOFJFramNkKfS9O4Um+VWgpnlAazoYjT6kUJ1MP70KQ5ngD4ed+4NUw==}
          -    engines: {node: '>=14'}
          -    peerDependencies:
          -      '@opentelemetry/api': '>=1.0.0 <1.5.0'
          -    dependencies:
          -      '@opentelemetry/api': 1.8.0
          -      '@opentelemetry/semantic-conventions': 1.13.0
          -    dev: false
          -
          -  /@opentelemetry/core@1.24.1(@opentelemetry/api@1.8.0):
          -    resolution: {integrity: sha512-wMSGfsdmibI88K9wB498zXY04yThPexo8jvwNNlm542HZB7XrrMRBbAyKJqG8qDRJwIBdBrPMi4V9ZPW/sqrcg==}
          -    engines: {node: '>=14'}
          -    peerDependencies:
          -      '@opentelemetry/api': '>=1.0.0 <1.9.0'
          -    dependencies:
          -      '@opentelemetry/api': 1.8.0
          -      '@opentelemetry/semantic-conventions': 1.24.1
          +  /@panva/hkdf@1.1.1:
          +    resolution: {integrity: sha512-dhPeilub1NuIG0X5Kvhh9lH4iW3ZsHlnzwgwbOlgwQ2wG1IqFzsgHqmKPk3WzsdWAeaxKJxgM0+W433RmN45GA==}
               dev: false
           
          -  /@opentelemetry/exporter-trace-otlp-grpc@0.39.1(@opentelemetry/api@1.8.0):
          -    resolution: {integrity: sha512-l5RhLKx6U+yuLhMrtgavTDthX50E1mZM3/SSySC7OPZiArFHV/b/9x9jxAzrOgIQUDxyj4N0V9aLKSA2t7Qzxg==}
          -    engines: {node: '>=14'}
          -    peerDependencies:
          -      '@opentelemetry/api': ^1.0.0
          -    dependencies:
          -      '@grpc/grpc-js': 1.10.8
          -      '@opentelemetry/api': 1.8.0
          -      '@opentelemetry/core': 1.13.0(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/otlp-grpc-exporter-base': 0.39.1(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/otlp-transformer': 0.39.1(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/resources': 1.13.0(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/sdk-trace-base': 1.13.0(@opentelemetry/api@1.8.0)
          +  /@parcel/watcher-android-arm64@2.4.1:
          +    resolution: {integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==}
          +    engines: {node: '>= 10.0.0'}
          +    cpu: [arm64]
          +    os: [android]
          +    requiresBuild: true
               dev: false
          +    optional: true
           
          -  /@opentelemetry/otlp-exporter-base@0.39.1(@opentelemetry/api@1.8.0):
          -    resolution: {integrity: sha512-Pv5X8fbi6jD/RJBePyn7MnCSuE6MbPB6dl+7YYBWJ5RcMGYMwvLXjd4h2jWsPV2TSUg38H/RoSP0aXvQ06Y7iw==}
          -    engines: {node: '>=14'}
          -    peerDependencies:
          -      '@opentelemetry/api': ^1.0.0
          -    dependencies:
          -      '@opentelemetry/api': 1.8.0
          -      '@opentelemetry/core': 1.13.0(@opentelemetry/api@1.8.0)
          +  /@parcel/watcher-darwin-arm64@2.4.1:
          +    resolution: {integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==}
          +    engines: {node: '>= 10.0.0'}
          +    cpu: [arm64]
          +    os: [darwin]
          +    requiresBuild: true
               dev: false
          +    optional: true
           
          -  /@opentelemetry/otlp-grpc-exporter-base@0.39.1(@opentelemetry/api@1.8.0):
          -    resolution: {integrity: sha512-u3ErFRQqQFKjjIMuwLWxz/tLPYInfmiAmSy//fGSCzCh2ZdJgqQjMOAxBgqFtCF2xFL+OmMhyuC2ThMzceGRWA==}
          -    engines: {node: '>=14'}
          -    peerDependencies:
          -      '@opentelemetry/api': ^1.0.0
          -    dependencies:
          -      '@grpc/grpc-js': 1.10.8
          -      '@opentelemetry/api': 1.8.0
          -      '@opentelemetry/core': 1.13.0(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/otlp-exporter-base': 0.39.1(@opentelemetry/api@1.8.0)
          -      protobufjs: 7.3.0
          +  /@parcel/watcher-darwin-x64@2.4.1:
          +    resolution: {integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==}
          +    engines: {node: '>= 10.0.0'}
          +    cpu: [x64]
          +    os: [darwin]
          +    requiresBuild: true
               dev: false
          +    optional: true
           
          -  /@opentelemetry/otlp-transformer@0.39.1(@opentelemetry/api@1.8.0):
          -    resolution: {integrity: sha512-0hgVnXXz5efI382B/24NxD4b6Zxlh7nxCdJkxkdmQMbn0yRiwoq/ZT+QG8eUL6JNzsBAV1WJlF5aJNsL8skHvw==}
          -    engines: {node: '>=14'}
          -    peerDependencies:
          -      '@opentelemetry/api': '>=1.3.0 <1.5.0'
          -    dependencies:
          -      '@opentelemetry/api': 1.8.0
          -      '@opentelemetry/api-logs': 0.39.1
          -      '@opentelemetry/core': 1.13.0(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/resources': 1.13.0(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/sdk-logs': 0.39.1(@opentelemetry/api-logs@0.39.1)(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/sdk-metrics': 1.13.0(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/sdk-trace-base': 1.13.0(@opentelemetry/api@1.8.0)
          +  /@parcel/watcher-freebsd-x64@2.4.1:
          +    resolution: {integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==}
          +    engines: {node: '>= 10.0.0'}
          +    cpu: [x64]
          +    os: [freebsd]
          +    requiresBuild: true
               dev: false
          +    optional: true
           
          -  /@opentelemetry/propagator-b3@1.24.1(@opentelemetry/api@1.8.0):
          -    resolution: {integrity: sha512-nda97ZwhpZKyUJTXqQuKzNhPMUgMLunbbGWn8kroBwegn+nh6OhtyGkrVQsQLNdVKJl0KeB5z0ZgeWszrYhwFw==}
          -    engines: {node: '>=14'}
          -    peerDependencies:
          -      '@opentelemetry/api': '>=1.0.0 <1.9.0'
          -    dependencies:
          -      '@opentelemetry/api': 1.8.0
          -      '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.8.0)
          +  /@parcel/watcher-linux-arm-glibc@2.4.1:
          +    resolution: {integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==}
          +    engines: {node: '>= 10.0.0'}
          +    cpu: [arm]
          +    os: [linux]
          +    requiresBuild: true
               dev: false
          +    optional: true
           
          -  /@opentelemetry/propagator-jaeger@1.24.1(@opentelemetry/api@1.8.0):
          -    resolution: {integrity: sha512-7bRBJn3FG1l195A1m+xXRHvgzAOBsfmRi9uZ5Da18oTh7BLmNDiA8+kpk51FpTsU1PCikPVpRDNPhKVB6lyzZg==}
          -    engines: {node: '>=14'}
          -    peerDependencies:
          -      '@opentelemetry/api': '>=1.0.0 <1.9.0'
          -    dependencies:
          -      '@opentelemetry/api': 1.8.0
          -      '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.8.0)
          +  /@parcel/watcher-linux-arm64-glibc@2.4.1:
          +    resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==}
          +    engines: {node: '>= 10.0.0'}
          +    cpu: [arm64]
          +    os: [linux]
          +    requiresBuild: true
               dev: false
          +    optional: true
           
          -  /@opentelemetry/resources@1.13.0(@opentelemetry/api@1.8.0):
          -    resolution: {integrity: sha512-euqjOkiN6xhjE//0vQYGvbStxoD/WWQRhDiO0OTLlnLBO9Yw2Gd/VoSx2H+svsebjzYk5OxLuREBmcdw6rbUNg==}
          -    engines: {node: '>=14'}
          -    peerDependencies:
          -      '@opentelemetry/api': '>=1.0.0 <1.5.0'
          -    dependencies:
          -      '@opentelemetry/api': 1.8.0
          -      '@opentelemetry/core': 1.13.0(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/semantic-conventions': 1.13.0
          +  /@parcel/watcher-linux-arm64-musl@2.4.1:
          +    resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==}
          +    engines: {node: '>= 10.0.0'}
          +    cpu: [arm64]
          +    os: [linux]
          +    requiresBuild: true
               dev: false
          +    optional: true
           
          -  /@opentelemetry/resources@1.24.1(@opentelemetry/api@1.8.0):
          -    resolution: {integrity: sha512-cyv0MwAaPF7O86x5hk3NNgenMObeejZFLJJDVuSeSMIsknlsj3oOZzRv3qSzlwYomXsICfBeFFlxwHQte5mGXQ==}
          -    engines: {node: '>=14'}
          -    peerDependencies:
          -      '@opentelemetry/api': '>=1.0.0 <1.9.0'
          -    dependencies:
          -      '@opentelemetry/api': 1.8.0
          -      '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/semantic-conventions': 1.24.1
          +  /@parcel/watcher-linux-x64-glibc@2.4.1:
          +    resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==}
          +    engines: {node: '>= 10.0.0'}
          +    cpu: [x64]
          +    os: [linux]
          +    requiresBuild: true
               dev: false
          +    optional: true
           
          -  /@opentelemetry/sdk-logs@0.39.1(@opentelemetry/api-logs@0.39.1)(@opentelemetry/api@1.8.0):
          -    resolution: {integrity: sha512-/gmgKfZ1ZVFporKuwsewqIyvaUIGpv76JZ7lBpHQQPb37IMpaXO6pdqFI4ebHAWfNIm3akMyhmdtzivcgF3lgw==}
          -    engines: {node: '>=14'}
          -    peerDependencies:
          -      '@opentelemetry/api': '>=1.4.0 <1.5.0'
          -      '@opentelemetry/api-logs': '>=0.38.0'
          -    dependencies:
          -      '@opentelemetry/api': 1.8.0
          -      '@opentelemetry/api-logs': 0.39.1
          -      '@opentelemetry/core': 1.13.0(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/resources': 1.13.0(@opentelemetry/api@1.8.0)
          +  /@parcel/watcher-linux-x64-musl@2.4.1:
          +    resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==}
          +    engines: {node: '>= 10.0.0'}
          +    cpu: [x64]
          +    os: [linux]
          +    requiresBuild: true
               dev: false
          +    optional: true
           
          -  /@opentelemetry/sdk-metrics@1.13.0(@opentelemetry/api@1.8.0):
          -    resolution: {integrity: sha512-MOjZX6AnSOqLliCcZUrb+DQKjAWXBiGeICGbHAGe5w0BB18PJIeIo995lO5JSaFfHpmUMgJButTPfJJD27W3Vg==}
          -    engines: {node: '>=14'}
          -    peerDependencies:
          -      '@opentelemetry/api': '>=1.3.0 <1.5.0'
          -    dependencies:
          -      '@opentelemetry/api': 1.8.0
          -      '@opentelemetry/core': 1.13.0(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/resources': 1.13.0(@opentelemetry/api@1.8.0)
          -      lodash.merge: 4.6.2
          +  /@parcel/watcher-win32-arm64@2.4.1:
          +    resolution: {integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==}
          +    engines: {node: '>= 10.0.0'}
          +    cpu: [arm64]
          +    os: [win32]
          +    requiresBuild: true
               dev: false
          +    optional: true
           
          -  /@opentelemetry/sdk-trace-base@1.13.0(@opentelemetry/api@1.8.0):
          -    resolution: {integrity: sha512-moTiQtc0uPR1hQLt6gLDJH9IIkeBhgRb71OKjNHZPE1VF45fHtD6nBDi5J/DkTHTwYP5X3kBJLa3xN7ub6J4eg==}
          -    engines: {node: '>=14'}
          -    peerDependencies:
          -      '@opentelemetry/api': '>=1.0.0 <1.5.0'
          -    dependencies:
          -      '@opentelemetry/api': 1.8.0
          -      '@opentelemetry/core': 1.13.0(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/resources': 1.13.0(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/semantic-conventions': 1.13.0
          +  /@parcel/watcher-win32-ia32@2.4.1:
          +    resolution: {integrity: sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==}
          +    engines: {node: '>= 10.0.0'}
          +    cpu: [ia32]
          +    os: [win32]
          +    requiresBuild: true
               dev: false
          +    optional: true
           
          -  /@opentelemetry/sdk-trace-base@1.24.1(@opentelemetry/api@1.8.0):
          -    resolution: {integrity: sha512-zz+N423IcySgjihl2NfjBf0qw1RWe11XIAWVrTNOSSI6dtSPJiVom2zipFB2AEEtJWpv0Iz6DY6+TjnyTV5pWg==}
          -    engines: {node: '>=14'}
          -    peerDependencies:
          -      '@opentelemetry/api': '>=1.0.0 <1.9.0'
          -    dependencies:
          -      '@opentelemetry/api': 1.8.0
          -      '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/resources': 1.24.1(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/semantic-conventions': 1.24.1
          +  /@parcel/watcher-win32-x64@2.4.1:
          +    resolution: {integrity: sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==}
          +    engines: {node: '>= 10.0.0'}
          +    cpu: [x64]
          +    os: [win32]
          +    requiresBuild: true
               dev: false
          +    optional: true
           
          -  /@opentelemetry/sdk-trace-node@1.24.1(@opentelemetry/api@1.8.0):
          -    resolution: {integrity: sha512-/FZX8uWaGIAwsDhqI8VvQ+qWtfMNlXjaFYGc+vmxgdRFppCSSIRwrPyIhJO1qx61okyYhoyxVEZAfoiNxrfJCg==}
          -    engines: {node: '>=14'}
          -    peerDependencies:
          -      '@opentelemetry/api': '>=1.0.0 <1.9.0'
          +  /@parcel/watcher@2.4.1:
          +    resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==}
          +    engines: {node: '>= 10.0.0'}
               dependencies:
          -      '@opentelemetry/api': 1.8.0
          -      '@opentelemetry/context-async-hooks': 1.24.1(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/propagator-b3': 1.24.1(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/propagator-jaeger': 1.24.1(@opentelemetry/api@1.8.0)
          -      '@opentelemetry/sdk-trace-base': 1.24.1(@opentelemetry/api@1.8.0)
          -      semver: 7.6.2
          -    dev: false
          -
          -  /@opentelemetry/semantic-conventions@1.13.0:
          -    resolution: {integrity: sha512-LMGqfSZkaMQXqewO0o1wvWr/2fQdCh4a3Sqlxka/UsJCe0cfLulh6x2aqnKLnsrSGiCq5rSCwvINd152i0nCqw==}
          -    engines: {node: '>=14'}
          -    dev: false
          -
          -  /@opentelemetry/semantic-conventions@1.24.1:
          -    resolution: {integrity: sha512-VkliWlS4/+GHLLW7J/rVBA00uXus1SWvwFvcUDxDwmFxYfg/2VI6ekwdXS28cjI8Qz2ky2BzG8OUHo+WeYIWqw==}
          -    engines: {node: '>=14'}
          -    dev: false
          -
          -  /@panva/hkdf@1.1.1:
          -    resolution: {integrity: sha512-dhPeilub1NuIG0X5Kvhh9lH4iW3ZsHlnzwgwbOlgwQ2wG1IqFzsgHqmKPk3WzsdWAeaxKJxgM0+W433RmN45GA==}
          +      detect-libc: 1.0.3
          +      is-glob: 4.0.3
          +      micromatch: 4.0.7
          +      node-addon-api: 7.1.1
          +    optionalDependencies:
          +      '@parcel/watcher-android-arm64': 2.4.1
          +      '@parcel/watcher-darwin-arm64': 2.4.1
          +      '@parcel/watcher-darwin-x64': 2.4.1
          +      '@parcel/watcher-freebsd-x64': 2.4.1
          +      '@parcel/watcher-linux-arm-glibc': 2.4.1
          +      '@parcel/watcher-linux-arm64-glibc': 2.4.1
          +      '@parcel/watcher-linux-arm64-musl': 2.4.1
          +      '@parcel/watcher-linux-x64-glibc': 2.4.1
          +      '@parcel/watcher-linux-x64-musl': 2.4.1
          +      '@parcel/watcher-win32-arm64': 2.4.1
          +      '@parcel/watcher-win32-ia32': 2.4.1
          +      '@parcel/watcher-win32-x64': 2.4.1
               dev: false
           
             /@pkgjs/parseargs@0.11.0:
          @@ -3011,49 +3033,6 @@ packages:
               dependencies:
                 '@prisma/debug': 5.15.0
           
          -  /@protobufjs/aspromise@1.1.2:
          -    resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==}
          -    dev: false
          -
          -  /@protobufjs/base64@1.1.2:
          -    resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==}
          -    dev: false
          -
          -  /@protobufjs/codegen@2.0.4:
          -    resolution: {integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==}
          -    dev: false
          -
          -  /@protobufjs/eventemitter@1.1.0:
          -    resolution: {integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==}
          -    dev: false
          -
          -  /@protobufjs/fetch@1.1.0:
          -    resolution: {integrity: sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==}
          -    dependencies:
          -      '@protobufjs/aspromise': 1.1.2
          -      '@protobufjs/inquire': 1.1.0
          -    dev: false
          -
          -  /@protobufjs/float@1.0.2:
          -    resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==}
          -    dev: false
          -
          -  /@protobufjs/inquire@1.1.0:
          -    resolution: {integrity: sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==}
          -    dev: false
          -
          -  /@protobufjs/path@1.1.2:
          -    resolution: {integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==}
          -    dev: false
          -
          -  /@protobufjs/pool@1.1.0:
          -    resolution: {integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==}
          -    dev: false
          -
          -  /@protobufjs/utf8@1.1.0:
          -    resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==}
          -    dev: false
          -
             /@radix-ui/number@1.0.1:
               resolution: {integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==}
               dependencies:
          @@ -4441,12 +4420,6 @@ packages:
                 '@babel/runtime': 7.24.6
               dev: false
           
          -  /@react-email/body@0.0.2:
          -    resolution: {integrity: sha512-SqZrZdxZlH7viwnrLvrMnVzOKpiofVAtho09bmm2siDzy0VMDGItXRzUPLcpg9vcbVJCHZRCIKoNXqA+PtokzQ==}
          -    dependencies:
          -      react: 18.2.0
          -    dev: false
          -
             /@react-email/button@0.0.11(react@18.2.0):
               resolution: {integrity: sha512-mB5ySfZifwE5ybtIWwXGbmKk1uKkH4655gftL4+mMxZAZCkINVa2KXTi5pO+xZhMtJI9xtAsikOrOEU1gTDoww==}
               engines: {node: '>=18.0.0'}
          @@ -4456,240 +4429,121 @@ packages:
                 react: 18.2.0
               dev: false
           
          -  /@react-email/button@0.0.9:
          -    resolution: {integrity: sha512-eYWQ1X4RFlkKYYSPgSrT6rk98wuLOieEAGENrp9j37t1v/1C+jMmBu0UjZvwHsHWdbOMRjbVDFeMI/+MxWKSEg==}
          -    engines: {node: '>=16.0.0'}
          +  /@react-email/html@0.0.6(react@18.2.0):
          +    resolution: {integrity: sha512-8Fo20VOqxqc087gGEPjT8uos06fTXIC8NSoiJxpiwAkwiKtQnQH/jOdoLv6XaWh5Zt2clj1uokaoklnaM5rY1w==}
          +    engines: {node: '>=18.0.0'}
          +    peerDependencies:
          +      react: 18.2.0
               dependencies:
                 react: 18.2.0
               dev: false
           
          -  /@react-email/column@0.0.7:
          -    resolution: {integrity: sha512-B29wVXyIcuVprgGpLkR23waPh/twlqmugZQsCKk05JlMCQ80/Puv4Lgj4dRsIJzgyTLMwG6xq17+Uxc5iGfuaQ==}
          +  /@react-email/render@0.0.6:
          +    resolution: {integrity: sha512-6zs7WZbd37TcPT1OmMPH/kcBpv0QSi+k3om7LyDnbdIcrbwOO/OstVwUaa/6zgvDvnq9Y2wOosbru7j5kUrW9A==}
               engines: {node: '>=16.0.0'}
               dependencies:
          +      html-to-text: 9.0.3
          +      pretty: 2.0.0
                 react: 18.2.0
          +      react-dom: 18.2.0(react@18.2.0)
               dev: false
           
          -  /@react-email/components@0.0.7:
          -    resolution: {integrity: sha512-GpRKV8E7EvK9OPf61f5Z8hliB3p0hTot8tslmEUVCTtX7tdL0wM2YEcZiDWU4PJcudJ/QWHJ7Y5wGzNEARcooA==}
          -    engines: {node: '>=16.0.0'}
          +  /@react-leaflet/core@2.1.0(leaflet@1.9.4)(react-dom@18.2.0)(react@18.2.0):
          +    resolution: {integrity: sha512-Qk7Pfu8BSarKGqILj4x7bCSZ1pjuAPZ+qmRwH5S7mDS91VSbVVsJSrW4qA+GPrro8t69gFYVMWb1Zc4yFmPiVg==}
          +    peerDependencies:
          +      leaflet: ^1.9.0
          +      react: ^18.0.0
          +      react-dom: ^18.0.0
               dependencies:
          -      '@react-email/body': 0.0.2
          -      '@react-email/button': 0.0.9
          -      '@react-email/column': 0.0.7
          -      '@react-email/container': 0.0.8
          -      '@react-email/font': 0.0.2
          -      '@react-email/head': 0.0.5
          -      '@react-email/heading': 0.0.8
          -      '@react-email/hr': 0.0.5
          -      '@react-email/html': 0.0.4
          -      '@react-email/img': 0.0.5
          -      '@react-email/link': 0.0.5
          -      '@react-email/preview': 0.0.6
          -      '@react-email/render': 0.0.7
          -      '@react-email/row': 0.0.5
          -      '@react-email/section': 0.0.9
          -      '@react-email/tailwind': 0.0.8
          -      '@react-email/text': 0.0.5
          +      leaflet: 1.9.4
                 react: 18.2.0
          -    transitivePeerDependencies:
          -      - ts-node
          -    dev: false
          +      react-dom: 18.2.0(react@18.2.0)
           
          -  /@react-email/container@0.0.8:
          -    resolution: {integrity: sha512-MQZQxvTOoLWjJR+Jm689jltm0I/mtZbEaDnwZbNkkHKgccr++wwb9kOKMgXG777Y7tGa1JATAsZpvFYiCITwUg==}
          -    engines: {node: '>=16.0.0'}
          +  /@react-spring/animated@9.7.3(react@18.2.0):
          +    resolution: {integrity: sha512-5CWeNJt9pNgyvuSzQH+uy2pvTg8Y4/OisoscZIR8/ZNLIOI+CatFBhGZpDGTF/OzdNFsAoGk3wiUYTwoJ0YIvw==}
          +    peerDependencies:
          +      react: ^16.8.0 || ^17.0.0 || ^18.0.0
               dependencies:
          +      '@react-spring/shared': 9.7.3(react@18.2.0)
          +      '@react-spring/types': 9.7.3
                 react: 18.2.0
               dev: false
           
          -  /@react-email/font@0.0.2:
          -    resolution: {integrity: sha512-mmkyOCAcbgytE7DfIuOBVG1YVDUZY9rPCor4o7pUEzGJiU2y/TNuV8CgNPSU/VgXeBKL/94QDjB62OrGHlFNMQ==}
          +  /@react-spring/core@9.7.3(react@18.2.0):
          +    resolution: {integrity: sha512-IqFdPVf3ZOC1Cx7+M0cXf4odNLxDC+n7IN3MDcVCTIOSBfqEcBebSv+vlY5AhM0zw05PDbjKrNmBpzv/AqpjnQ==}
          +    peerDependencies:
          +      react: ^16.8.0 || ^17.0.0 || ^18.0.0
               dependencies:
          +      '@react-spring/animated': 9.7.3(react@18.2.0)
          +      '@react-spring/shared': 9.7.3(react@18.2.0)
          +      '@react-spring/types': 9.7.3
                 react: 18.2.0
               dev: false
           
          -  /@react-email/head@0.0.5:
          -    resolution: {integrity: sha512-s84OxJxZMee2z5b1a+RVwY1NOSUNNf1ecjPf6n64aZmMNcNUyn4gOl7RO6xbfBrZko7TigBwsFB1Cgjxtn/ydg==}
          -    engines: {node: '>=16.0.0'}
          +  /@react-spring/shared@9.7.3(react@18.2.0):
          +    resolution: {integrity: sha512-NEopD+9S5xYyQ0pGtioacLhL2luflh6HACSSDUZOwLHoxA5eku1UPuqcJqjwSD6luKjjLfiLOspxo43FUHKKSA==}
          +    peerDependencies:
          +      react: ^16.8.0 || ^17.0.0 || ^18.0.0
               dependencies:
          +      '@react-spring/types': 9.7.3
                 react: 18.2.0
               dev: false
           
          -  /@react-email/heading@0.0.8:
          -    resolution: {integrity: sha512-7atATmoHBHTk7hFYFsFFzOIBV3u1zPpsSOWkLBojdjSUdenpk2SbX8GP8/3aBhWl/tuFX9RBGcu1Xes+ZijFLg==}
          -    engines: {node: '>=16.0.0'}
          -    dependencies:
          -      '@radix-ui/react-slot': 1.0.0(react@18.2.0)
          -      react: 18.2.0
          +  /@react-spring/types@9.7.3:
          +    resolution: {integrity: sha512-Kpx/fQ/ZFX31OtlqVEFfgaD1ACzul4NksrvIgYfIFq9JpDHFwQkMVZ10tbo0FU/grje4rcL4EIrjekl3kYwgWw==}
               dev: false
           
          -  /@react-email/hr@0.0.5:
          -    resolution: {integrity: sha512-nwB8GmSdvPlR/bWjDS07yHtgdfJqtvCaPXee3SVUY69YYP7NeDO/VACJlgrS9V2l79bj1lUpH0MJMU6MNAk5FQ==}
          -    engines: {node: '>=16.0.0'}
          +  /@react-spring/web@9.7.3(react-dom@18.2.0)(react@18.2.0):
          +    resolution: {integrity: sha512-BXt6BpS9aJL/QdVqEIX9YoUy8CE6TJrU0mNCqSoxdXlIeNcEBWOfIyE6B14ENNsyQKS3wOWkiJfco0tCr/9tUg==}
          +    peerDependencies:
          +      react: ^16.8.0 || ^17.0.0 || ^18.0.0
          +      react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
               dependencies:
          +      '@react-spring/animated': 9.7.3(react@18.2.0)
          +      '@react-spring/core': 9.7.3(react@18.2.0)
          +      '@react-spring/shared': 9.7.3(react@18.2.0)
          +      '@react-spring/types': 9.7.3
                 react: 18.2.0
          +      react-dom: 18.2.0(react@18.2.0)
               dev: false
           
          -  /@react-email/html@0.0.4:
          -    resolution: {integrity: sha512-7tRYSnudYAWez+NkPWOM8yLZH7EuYFtYdiLPnzpD+pf4cdk16Gz4up531DaIX6dNBbfbyEFpQxhXZxGeJ5ZkfQ==}
          -    engines: {node: '>=16.0.0'}
          +  /@remirror/core-constants@2.0.2:
          +    resolution: {integrity: sha512-dyHY+sMF0ihPus3O27ODd4+agdHMEmuRdyiZJ2CCWjPV5UFmn17ZbElvk6WOGVE4rdCJKZQCrPV2BcikOMLUGQ==}
               dev: false
           
          -  /@react-email/html@0.0.6(react@18.2.0):
          -    resolution: {integrity: sha512-8Fo20VOqxqc087gGEPjT8uos06fTXIC8NSoiJxpiwAkwiKtQnQH/jOdoLv6XaWh5Zt2clj1uokaoklnaM5rY1w==}
          -    engines: {node: '>=18.0.0'}
          -    peerDependencies:
          -      react: 18.2.0
          +  /@resvg/resvg-wasm@2.6.0:
          +    resolution: {integrity: sha512-iDkBM6Ivex8nULtBu8cX670/lfsGxq8U1cuqE+qS9xFpPQP1enPdVm/33Kq3+B+bAldA+AHNZnCgpmlHo/fZrQ==}
          +    engines: {node: '>= 10'}
          +    dev: false
          +
          +  /@selderee/plugin-htmlparser2@0.10.0:
          +    resolution: {integrity: sha512-gW69MEamZ4wk1OsOq1nG1jcyhXIQcnrsX5JwixVw/9xaiav8TCyjESAruu1Rz9yyInhgBXxkNwMeygKnN2uxNA==}
               dependencies:
          -      react: 18.2.0
          +      domhandler: 5.0.3
          +      selderee: 0.10.0
               dev: false
           
          -  /@react-email/img@0.0.5:
          -    resolution: {integrity: sha512-9ziFgBfrIAL+DpVlsraFcd2KwsTRyobLpqTnoiBYCcVZGod59xbYkmsmB3CbUosmLwPYg6AeD7Q7e+hCiwkWgg==}
          -    engines: {node: '>=16.0.0'}
          +  /@shikijs/core@1.12.0:
          +    resolution: {integrity: sha512-mc1cLbm6UQ8RxLc0dZES7v5rkH+99LxQp/ZvTqV3NLyYsO/fD6JhEflP1H5b2SDq9gI0+0G36AVZWxvounfR9w==}
               dependencies:
          -      react: 18.2.0
          +      '@types/hast': 3.0.4
               dev: false
           
          -  /@react-email/link@0.0.5:
          -    resolution: {integrity: sha512-z+QW9f4gXBdyfhl7iYMY3td+rXKeZYK/2AGElEMsxVoywn5D0b6cF8m5w2jbf0U2V3enT+zy9yc1R6AyT59NOg==}
          -    engines: {node: '>=16.0.0'}
          +  /@shikijs/rehype@1.12.0:
          +    resolution: {integrity: sha512-DX42LdI9OB/0X5euLjRJfgoYZukqGn1GBkgiyvQkv4bHDCST0BzQMcdL80erp5as9R6bp7+2/cKlA+TmQTySbQ==}
               dependencies:
          -      react: 18.2.0
          +      '@shikijs/transformers': 1.12.0
          +      '@types/hast': 3.0.4
          +      hast-util-to-string: 3.0.0
          +      shiki: 1.12.0
          +      unified: 11.0.5
          +      unist-util-visit: 5.0.0
               dev: false
           
          -  /@react-email/preview@0.0.6:
          -    resolution: {integrity: sha512-mXDCc3NGpm/4W7gowBtjsTxYXowLNOLsJsYhIfrsjNJWGlVhVFB9uEHm55LjBLpxSG020g6/8LIrpJU6g22qvg==}
          -    engines: {node: '>=16.0.0'}
          +  /@shikijs/transformers@1.12.0:
          +    resolution: {integrity: sha512-ZS6RzDCWbnDljViMaeuraGaoMesCzDxzO2Slhpvic6j+Wqq4RXfQgb2ITTSrtBjv2HGCLP22mvXydtWCOKea8g==}
               dependencies:
          -      react: 18.2.0
          -    dev: false
          -
          -  /@react-email/render@0.0.6:
          -    resolution: {integrity: sha512-6zs7WZbd37TcPT1OmMPH/kcBpv0QSi+k3om7LyDnbdIcrbwOO/OstVwUaa/6zgvDvnq9Y2wOosbru7j5kUrW9A==}
          -    engines: {node: '>=16.0.0'}
          -    dependencies:
          -      html-to-text: 9.0.3
          -      pretty: 2.0.0
          -      react: 18.2.0
          -      react-dom: 18.2.0(react@18.2.0)
          -    dev: false
          -
          -  /@react-email/render@0.0.7:
          -    resolution: {integrity: sha512-hMMhxk6TpOcDC5qnKzXPVJoVGEwfm+U5bGOPH+MyTTlx0F02RLQygcATBKsbP7aI/mvkmBAZoFbgPIHop7ovug==}
          -    engines: {node: '>=16.0.0'}
          -    dependencies:
          -      html-to-text: 9.0.3
          -      pretty: 2.0.0
          -      react: 18.2.0
          -      react-dom: 18.2.0(react@18.2.0)
          -    dev: false
          -
          -  /@react-email/row@0.0.5:
          -    resolution: {integrity: sha512-dir5l1M7Z/1BQqQkUrKUPIIDPt6ueEf6ScMGoBOcUh+VNNqmnqJE2Q2CH5X3w2uo6a5X7tnVhoJHGa2KTKe8Sw==}
          -    engines: {node: '>=16.0.0'}
          -    dev: false
          -
          -  /@react-email/section@0.0.9:
          -    resolution: {integrity: sha512-3EbcWJ1jUZrzquWSvXrv8Hbk9V+BGvLcMWQIli4NdIpQlddmlGKUYfXU2mB2d2pf+5ojqkGcFZZ9fWxycB84jQ==}
          -    engines: {node: '>=16.0.0'}
          -    dependencies:
          -      react: 18.2.0
          -    dev: false
          -
          -  /@react-email/tailwind@0.0.8:
          -    resolution: {integrity: sha512-0BLjD5GpiyBK7YDlaDrjHIpj9eTrrZrMJud3f1UPoCZhS+0S/M8LcR8WMbQsR+8/aLGmiy4F4TGZuRQcsJEsFw==}
          -    engines: {node: '>=16.0.0'}
          -    dependencies:
          -      html-react-parser: 3.0.9(react@18.2.0)
          -      react: 18.2.0
          -      react-dom: 18.2.0(react@18.2.0)
          -      tw-to-css: 0.0.11
          -    transitivePeerDependencies:
          -      - ts-node
          -    dev: false
          -
          -  /@react-email/text@0.0.5:
          -    resolution: {integrity: sha512-LXhHiaC6oRRsNAfOzJDos4wQA22eIdVJvR6G7uu4QzUvYNOAatDMf89jRQcKGrxX7InkS640v8sHd9jl5ztM5w==}
          -    engines: {node: '>=16.0.0'}
          -    dependencies:
          -      react: 18.2.0
          -    dev: false
          -
          -  /@react-leaflet/core@2.1.0(leaflet@1.9.4)(react-dom@18.2.0)(react@18.2.0):
          -    resolution: {integrity: sha512-Qk7Pfu8BSarKGqILj4x7bCSZ1pjuAPZ+qmRwH5S7mDS91VSbVVsJSrW4qA+GPrro8t69gFYVMWb1Zc4yFmPiVg==}
          -    peerDependencies:
          -      leaflet: ^1.9.0
          -      react: ^18.0.0
          -      react-dom: ^18.0.0
          -    dependencies:
          -      leaflet: 1.9.4
          -      react: 18.2.0
          -      react-dom: 18.2.0(react@18.2.0)
          -
          -  /@react-spring/animated@9.7.3(react@18.2.0):
          -    resolution: {integrity: sha512-5CWeNJt9pNgyvuSzQH+uy2pvTg8Y4/OisoscZIR8/ZNLIOI+CatFBhGZpDGTF/OzdNFsAoGk3wiUYTwoJ0YIvw==}
          -    peerDependencies:
          -      react: ^16.8.0 || ^17.0.0 || ^18.0.0
          -    dependencies:
          -      '@react-spring/shared': 9.7.3(react@18.2.0)
          -      '@react-spring/types': 9.7.3
          -      react: 18.2.0
          -    dev: false
          -
          -  /@react-spring/core@9.7.3(react@18.2.0):
          -    resolution: {integrity: sha512-IqFdPVf3ZOC1Cx7+M0cXf4odNLxDC+n7IN3MDcVCTIOSBfqEcBebSv+vlY5AhM0zw05PDbjKrNmBpzv/AqpjnQ==}
          -    peerDependencies:
          -      react: ^16.8.0 || ^17.0.0 || ^18.0.0
          -    dependencies:
          -      '@react-spring/animated': 9.7.3(react@18.2.0)
          -      '@react-spring/shared': 9.7.3(react@18.2.0)
          -      '@react-spring/types': 9.7.3
          -      react: 18.2.0
          -    dev: false
          -
          -  /@react-spring/shared@9.7.3(react@18.2.0):
          -    resolution: {integrity: sha512-NEopD+9S5xYyQ0pGtioacLhL2luflh6HACSSDUZOwLHoxA5eku1UPuqcJqjwSD6luKjjLfiLOspxo43FUHKKSA==}
          -    peerDependencies:
          -      react: ^16.8.0 || ^17.0.0 || ^18.0.0
          -    dependencies:
          -      '@react-spring/types': 9.7.3
          -      react: 18.2.0
          -    dev: false
          -
          -  /@react-spring/types@9.7.3:
          -    resolution: {integrity: sha512-Kpx/fQ/ZFX31OtlqVEFfgaD1ACzul4NksrvIgYfIFq9JpDHFwQkMVZ10tbo0FU/grje4rcL4EIrjekl3kYwgWw==}
          -    dev: false
          -
          -  /@react-spring/web@9.7.3(react-dom@18.2.0)(react@18.2.0):
          -    resolution: {integrity: sha512-BXt6BpS9aJL/QdVqEIX9YoUy8CE6TJrU0mNCqSoxdXlIeNcEBWOfIyE6B14ENNsyQKS3wOWkiJfco0tCr/9tUg==}
          -    peerDependencies:
          -      react: ^16.8.0 || ^17.0.0 || ^18.0.0
          -      react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
          -    dependencies:
          -      '@react-spring/animated': 9.7.3(react@18.2.0)
          -      '@react-spring/core': 9.7.3(react@18.2.0)
          -      '@react-spring/shared': 9.7.3(react@18.2.0)
          -      '@react-spring/types': 9.7.3
          -      react: 18.2.0
          -      react-dom: 18.2.0(react@18.2.0)
          -    dev: false
          -
          -  /@remirror/core-constants@2.0.2:
          -    resolution: {integrity: sha512-dyHY+sMF0ihPus3O27ODd4+agdHMEmuRdyiZJ2CCWjPV5UFmn17ZbElvk6WOGVE4rdCJKZQCrPV2BcikOMLUGQ==}
          -    dev: false
          -
          -  /@resvg/resvg-wasm@2.6.0:
          -    resolution: {integrity: sha512-iDkBM6Ivex8nULtBu8cX670/lfsGxq8U1cuqE+qS9xFpPQP1enPdVm/33Kq3+B+bAldA+AHNZnCgpmlHo/fZrQ==}
          -    engines: {node: '>= 10'}
          -    dev: false
          -
          -  /@selderee/plugin-htmlparser2@0.10.0:
          -    resolution: {integrity: sha512-gW69MEamZ4wk1OsOq1nG1jcyhXIQcnrsX5JwixVw/9xaiav8TCyjESAruu1Rz9yyInhgBXxkNwMeygKnN2uxNA==}
          -    dependencies:
          -      domhandler: 5.0.3
          -      selderee: 0.10.0
          +      shiki: 1.12.0
               dev: false
           
             /@shuding/opentype.js@1.4.0-beta.0:
          @@ -5146,7 +5000,6 @@ packages:
               resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
               dependencies:
                 '@types/unist': 3.0.2
          -    dev: true
           
             /@types/json5@0.0.29:
               resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
          @@ -5162,12 +5015,12 @@ packages:
               resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==}
               dependencies:
                 '@types/unist': 2.0.10
          +    dev: true
           
             /@types/mdast@4.0.4:
               resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
               dependencies:
                 '@types/unist': 3.0.2
          -    dev: true
           
             /@types/mdx@2.0.13:
               resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==}
          @@ -5213,10 +5066,6 @@ packages:
             /@types/normalize-package-data@2.4.4:
               resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
           
          -  /@types/parse5@6.0.3:
          -    resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==}
          -    dev: false
          -
             /@types/pg@8.11.6:
               resolution: {integrity: sha512-/2WmmBXHLsfRqzfHW7BNZ8SbYzE8OSk7i3WjFYvfgRHj7S1xj+16Je5fUKv3lVdVzk/zn9TXOqf+avFCFIE0yQ==}
               dependencies:
          @@ -5269,7 +5118,6 @@ packages:
           
             /@types/unist@3.0.2:
               resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==}
          -    dev: true
           
             /@typescript-eslint/eslint-plugin@7.12.0(@typescript-eslint/parser@7.12.0)(eslint@9.4.0)(typescript@5.4.5):
               resolution: {integrity: sha512-7F91fcbuDf/d3S8o21+r3ZncGIke/+eWk0EpO21LXhDfLahriZF9CGj4fbAetEjlaBdjdSm9a6VeXbpbT6Z40Q==}
          @@ -5496,7 +5344,7 @@ packages:
                 react:
                   optional: true
               dependencies:
          -      next: 14.2.4(@opentelemetry/api@1.8.0)(react-dom@18.2.0)(react@18.2.0)
          +      next: 14.2.4(react-dom@18.2.0)(react@18.2.0)
                 react: 18.2.0
                 server-only: 0.0.1
               dev: false
          @@ -5537,30 +5385,11 @@ packages:
               dependencies:
                 acorn: 8.11.3
           
          -  /acorn-node@1.8.2:
          -    resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==}
          -    dependencies:
          -      acorn: 7.4.1
          -      acorn-walk: 7.2.0
          -      xtend: 4.0.2
          -    dev: false
          -
          -  /acorn-walk@7.2.0:
          -    resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
          -    engines: {node: '>=0.4.0'}
          -    dev: false
          -
             /acorn-walk@8.3.2:
               resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
               engines: {node: '>=0.4.0'}
               dev: true
           
          -  /acorn@7.4.1:
          -    resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
          -    engines: {node: '>=0.4.0'}
          -    hasBin: true
          -    dev: false
          -
             /acorn@8.11.3:
               resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
               engines: {node: '>=0.4.0'}
          @@ -5676,10 +5505,6 @@ packages:
                 is-string: 1.0.7
               dev: false
           
          -  /array-timsort@1.0.3:
          -    resolution: {integrity: sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==}
          -    dev: false
          -
             /array-union@2.1.0:
               resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
               engines: {node: '>=8'}
          @@ -5964,10 +5789,6 @@ packages:
                 node-releases: 2.0.14
                 update-browserslist-db: 1.0.16(browserslist@4.23.0)
           
          -  /buffer-from@1.1.2:
          -    resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
          -    dev: false
          -
             /buffer-indexof-polyfill@1.0.2:
               resolution: {integrity: sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==}
               engines: {node: '>=0.10'}
          @@ -6007,13 +5828,6 @@ packages:
               resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
               engines: {node: '>=6'}
           
          -  /camel-case@4.1.2:
          -    resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
          -    dependencies:
          -      pascal-case: 3.1.2
          -      tslib: 2.6.3
          -    dev: false
          -
             /camelcase-css@2.0.1:
               resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
               engines: {node: '>= 6'}
          @@ -6032,6 +5846,11 @@ packages:
               engines: {node: '>=6'}
               dev: true
           
          +  /camelcase@8.0.0:
          +    resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==}
          +    engines: {node: '>=16'}
          +    dev: false
          +
             /camelize@1.0.1:
               resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==}
               dev: false
          @@ -6160,14 +5979,6 @@ packages:
               resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
               dev: false
           
          -  /clipanion@3.2.1(typanion@3.14.0):
          -    resolution: {integrity: sha512-dYFdjLb7y1ajfxQopN05mylEpK9ZX0sO1/RfMXdfmwjlIsPkbh4p7A682x++zFPLDCo1x3p82dtljHf5cW2LKA==}
          -    peerDependencies:
          -      typanion: '*'
          -    dependencies:
          -      typanion: 3.14.0
          -    dev: false
          -
             /cliui@8.0.1:
               resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
               engines: {node: '>=12'}
          @@ -6204,6 +6015,10 @@ packages:
                 - '@types/react'
               dev: false
           
          +  /collapse-white-space@2.1.0:
          +    resolution: {integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==}
          +    dev: false
          +
             /color-convert@1.9.3:
               resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
               dependencies:
          @@ -6269,17 +6084,6 @@ packages:
               engines: {node: ^12.20.0 || >=14}
               dev: false
           
          -  /comment-json@4.2.3:
          -    resolution: {integrity: sha512-SsxdiOf064DWoZLH799Ata6u7iV658A11PlWtZATDlXPpKGJnbJZ5Z24ybixAi+LUUqJ/GKowAejtC5GFUG7Tw==}
          -    engines: {node: '>= 6'}
          -    dependencies:
          -      array-timsort: 1.0.3
          -      core-util-is: 1.0.3
          -      esprima: 4.0.1
          -      has-own-prop: 2.0.0
          -      repeat-string: 1.6.1
          -    dev: false
          -
             /compare-func@2.0.0:
               resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==}
               dependencies:
          @@ -6287,6 +6091,10 @@ packages:
                 dot-prop: 5.3.0
               dev: true
           
          +  /compute-scroll-into-view@3.1.0:
          +    resolution: {integrity: sha512-rj8l8pD4bJ1nx+dAkMhV1xB5RuZEyVysfxJqB1pRchh1KVvwOv9b7CGB8ZfjTImVv2oF+sYMUkMZq6Na5Ftmbg==}
          +    dev: false
          +
             /concat-map@0.0.1:
               resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
           
          @@ -6322,25 +6130,6 @@ packages:
                 proto-list: 1.2.4
               dev: false
           
          -  /contentlayer@0.3.4(esbuild@0.21.4):
          -    resolution: {integrity: sha512-FYDdTUFaN4yqep0waswrhcXjmMJnPD5iXDTtxcUCGdklfuIrXM2xLx51xl748cHmGA6IsC+27YZFxU6Ym13QIA==}
          -    engines: {node: '>=14.18'}
          -    hasBin: true
          -    requiresBuild: true
          -    dependencies:
          -      '@contentlayer/cli': 0.3.4(esbuild@0.21.4)
          -      '@contentlayer/client': 0.3.4(esbuild@0.21.4)
          -      '@contentlayer/core': 0.3.4(esbuild@0.21.4)
          -      '@contentlayer/source-files': 0.3.4(esbuild@0.21.4)
          -      '@contentlayer/source-remote-files': 0.3.4(esbuild@0.21.4)
          -      '@contentlayer/utils': 0.3.4
          -    transitivePeerDependencies:
          -      - '@effect-ts/otel-node'
          -      - esbuild
          -      - markdown-wasm
          -      - supports-color
          -    dev: false
          -
             /conventional-changelog-angular@7.0.0:
               resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==}
               engines: {node: '>=16'}
          @@ -6570,11 +6359,6 @@ packages:
               resolution: {integrity: sha512-ND9qDTLc6diwj+Xe5cdAgVTbLVdXbtxTJRXRhli8Mowuaan+0EJOtdqJ0QCHNSSPyoXGx9HX2/VMnKeC34AChA==}
               dev: true
           
          -  /data-uri-to-buffer@4.0.1:
          -    resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
          -    engines: {node: '>= 12'}
          -    dev: false
          -
             /data-view-buffer@1.0.1:
               resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
               engines: {node: '>= 0.4'}
          @@ -6701,10 +6485,6 @@ packages:
                 object-keys: 1.1.1
               dev: false
           
          -  /defined@1.0.1:
          -    resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==}
          -    dev: false
          -
             /delaunator@4.0.1:
               resolution: {integrity: sha512-WNPWi1IRKZfCt/qIDMfERkDp93+iZEmOxN2yy4Jg+Xhv8SLk2UTqqbe1sfiipn0and9QrE914/ihdx82Y/Giag==}
               dev: false
          @@ -6722,6 +6502,12 @@ packages:
               resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
               engines: {node: '>=6'}
           
          +  /detect-libc@1.0.3:
          +    resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
          +    engines: {node: '>=0.10'}
          +    hasBin: true
          +    dev: false
          +
             /detect-libc@2.0.3:
               resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
               engines: {node: '>=8'}
          @@ -6738,21 +6524,10 @@ packages:
                 execa: 5.1.1
               dev: false
           
          -  /detective@5.2.1:
          -    resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==}
          -    engines: {node: '>=0.8.0'}
          -    hasBin: true
          -    dependencies:
          -      acorn-node: 1.8.2
          -      defined: 1.0.1
          -      minimist: 1.2.8
          -    dev: false
          -
             /devlop@1.1.0:
               resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
               dependencies:
                 dequal: 2.0.3
          -    dev: true
           
             /didyoumean@1.2.2:
               resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
          @@ -6760,6 +6535,7 @@ packages:
             /diff@5.2.0:
               resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==}
               engines: {node: '>=0.3.1'}
          +    dev: true
           
             /dir-glob@3.0.1:
               resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
          @@ -7073,35 +6849,66 @@ packages:
                 '@esbuild/win32-x64': 0.17.19
               dev: true
           
          -  /esbuild@0.21.4:
          -    resolution: {integrity: sha512-sFMcNNrj+Q0ZDolrp5pDhH0nRPN9hLIM3fRPwgbLYJeSHHgnXSnbV3xYgSVuOeLWH9c73VwmEverVzupIv5xuA==}
          +  /esbuild@0.19.12:
          +    resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==}
          +    engines: {node: '>=12'}
          +    hasBin: true
          +    requiresBuild: true
          +    optionalDependencies:
          +      '@esbuild/aix-ppc64': 0.19.12
          +      '@esbuild/android-arm': 0.19.12
          +      '@esbuild/android-arm64': 0.19.12
          +      '@esbuild/android-x64': 0.19.12
          +      '@esbuild/darwin-arm64': 0.19.12
          +      '@esbuild/darwin-x64': 0.19.12
          +      '@esbuild/freebsd-arm64': 0.19.12
          +      '@esbuild/freebsd-x64': 0.19.12
          +      '@esbuild/linux-arm': 0.19.12
          +      '@esbuild/linux-arm64': 0.19.12
          +      '@esbuild/linux-ia32': 0.19.12
          +      '@esbuild/linux-loong64': 0.19.12
          +      '@esbuild/linux-mips64el': 0.19.12
          +      '@esbuild/linux-ppc64': 0.19.12
          +      '@esbuild/linux-riscv64': 0.19.12
          +      '@esbuild/linux-s390x': 0.19.12
          +      '@esbuild/linux-x64': 0.19.12
          +      '@esbuild/netbsd-x64': 0.19.12
          +      '@esbuild/openbsd-x64': 0.19.12
          +      '@esbuild/sunos-x64': 0.19.12
          +      '@esbuild/win32-arm64': 0.19.12
          +      '@esbuild/win32-ia32': 0.19.12
          +      '@esbuild/win32-x64': 0.19.12
          +    dev: false
          +
          +  /esbuild@0.21.5:
          +    resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
               engines: {node: '>=12'}
               hasBin: true
               requiresBuild: true
               optionalDependencies:
          -      '@esbuild/aix-ppc64': 0.21.4
          -      '@esbuild/android-arm': 0.21.4
          -      '@esbuild/android-arm64': 0.21.4
          -      '@esbuild/android-x64': 0.21.4
          -      '@esbuild/darwin-arm64': 0.21.4
          -      '@esbuild/darwin-x64': 0.21.4
          -      '@esbuild/freebsd-arm64': 0.21.4
          -      '@esbuild/freebsd-x64': 0.21.4
          -      '@esbuild/linux-arm': 0.21.4
          -      '@esbuild/linux-arm64': 0.21.4
          -      '@esbuild/linux-ia32': 0.21.4
          -      '@esbuild/linux-loong64': 0.21.4
          -      '@esbuild/linux-mips64el': 0.21.4
          -      '@esbuild/linux-ppc64': 0.21.4
          -      '@esbuild/linux-riscv64': 0.21.4
          -      '@esbuild/linux-s390x': 0.21.4
          -      '@esbuild/linux-x64': 0.21.4
          -      '@esbuild/netbsd-x64': 0.21.4
          -      '@esbuild/openbsd-x64': 0.21.4
          -      '@esbuild/sunos-x64': 0.21.4
          -      '@esbuild/win32-arm64': 0.21.4
          -      '@esbuild/win32-ia32': 0.21.4
          -      '@esbuild/win32-x64': 0.21.4
          +      '@esbuild/aix-ppc64': 0.21.5
          +      '@esbuild/android-arm': 0.21.5
          +      '@esbuild/android-arm64': 0.21.5
          +      '@esbuild/android-x64': 0.21.5
          +      '@esbuild/darwin-arm64': 0.21.5
          +      '@esbuild/darwin-x64': 0.21.5
          +      '@esbuild/freebsd-arm64': 0.21.5
          +      '@esbuild/freebsd-x64': 0.21.5
          +      '@esbuild/linux-arm': 0.21.5
          +      '@esbuild/linux-arm64': 0.21.5
          +      '@esbuild/linux-ia32': 0.21.5
          +      '@esbuild/linux-loong64': 0.21.5
          +      '@esbuild/linux-mips64el': 0.21.5
          +      '@esbuild/linux-ppc64': 0.21.5
          +      '@esbuild/linux-riscv64': 0.21.5
          +      '@esbuild/linux-s390x': 0.21.5
          +      '@esbuild/linux-x64': 0.21.5
          +      '@esbuild/netbsd-x64': 0.21.5
          +      '@esbuild/openbsd-x64': 0.21.5
          +      '@esbuild/sunos-x64': 0.21.5
          +      '@esbuild/win32-arm64': 0.21.5
          +      '@esbuild/win32-ia32': 0.21.5
          +      '@esbuild/win32-x64': 0.21.5
               dev: false
           
             /escalade@3.1.2:
          @@ -7123,7 +6930,6 @@ packages:
             /escape-string-regexp@5.0.0:
               resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
               engines: {node: '>=12'}
          -    dev: true
           
             /eslint-config-turbo@1.13.4(eslint@9.4.0):
               resolution: {integrity: sha512-+we4eWdZlmlEn7LnhXHCIPX/wtujbHCS7XjQM/TN09BHNEl2fZ8id4rHfdfUKIYTSKyy8U/nNyJ0DNoZj5Q8bw==}
          @@ -7429,48 +7235,44 @@ packages:
               resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
               engines: {node: '>=4.0'}
           
          -  /estree-util-attach-comments@2.1.1:
          -    resolution: {integrity: sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==}
          +  /estree-util-attach-comments@3.0.0:
          +    resolution: {integrity: sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==}
               dependencies:
                 '@types/estree': 1.0.5
               dev: false
           
          -  /estree-util-build-jsx@2.2.2:
          -    resolution: {integrity: sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==}
          +  /estree-util-build-jsx@3.0.1:
          +    resolution: {integrity: sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==}
               dependencies:
                 '@types/estree-jsx': 1.0.5
          -      estree-util-is-identifier-name: 2.1.0
          +      devlop: 1.1.0
          +      estree-util-is-identifier-name: 3.0.0
                 estree-walker: 3.0.3
               dev: false
           
          -  /estree-util-is-identifier-name@1.1.0:
          -    resolution: {integrity: sha512-OVJZ3fGGt9By77Ix9NhaRbzfbDV/2rx9EP7YIDJTmsZSEc5kYn2vWcNccYyahJL2uAQZK2a5Or2i0wtIKTPoRQ==}
          -    dev: false
          -
          -  /estree-util-is-identifier-name@2.1.0:
          -    resolution: {integrity: sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==}
          +  /estree-util-is-identifier-name@3.0.0:
          +    resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==}
               dev: false
           
          -  /estree-util-to-js@1.2.0:
          -    resolution: {integrity: sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==}
          +  /estree-util-to-js@2.0.0:
          +    resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==}
               dependencies:
                 '@types/estree-jsx': 1.0.5
                 astring: 1.8.6
                 source-map: 0.7.4
               dev: false
           
          -  /estree-util-value-to-estree@1.3.0:
          -    resolution: {integrity: sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw==}
          -    engines: {node: '>=12.0.0'}
          +  /estree-util-value-to-estree@3.1.2:
          +    resolution: {integrity: sha512-S0gW2+XZkmsx00tU2uJ4L9hUT7IFabbml9pHh2WQqFmAbxit++YGZne0sKJbNwkj9Wvg9E4uqWl4nCIFQMmfag==}
               dependencies:
          -      is-plain-obj: 3.0.0
          +      '@types/estree': 1.0.5
               dev: false
           
          -  /estree-util-visit@1.2.1:
          -    resolution: {integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==}
          +  /estree-util-visit@2.0.0:
          +    resolution: {integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==}
               dependencies:
                 '@types/estree-jsx': 1.0.5
          -      '@types/unist': 2.0.10
          +      '@types/unist': 3.0.2
               dev: false
           
             /estree-walker@0.6.1:
          @@ -7598,14 +7400,6 @@ packages:
                 format: 0.2.2
               dev: false
           
          -  /fetch-blob@3.2.0:
          -    resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
          -    engines: {node: ^12.20 || >= 14.13}
          -    dependencies:
          -      node-domexception: 1.0.0
          -      web-streams-polyfill: 3.3.3
          -    dev: false
          -
             /fflate@0.7.4:
               resolution: {integrity: sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw==}
               dev: false
          @@ -7669,6 +7463,10 @@ packages:
             /flatted@3.3.1:
               resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
           
          +  /flexsearch@0.7.21:
          +    resolution: {integrity: sha512-W7cHV7Hrwjid6lWmy0IhsWDFQboWSng25U3VVywpHOTJnnAZNPScog67G+cVpeX9f7yDD21ih0WDrMMT+JoaYg==}
          +    dev: false
          +
             /follow-redirects@1.15.6:
               resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==}
               engines: {node: '>=4.0'}
          @@ -7718,13 +7516,6 @@ packages:
                 web-streams-polyfill: 4.0.0-beta.3
               dev: false
           
          -  /formdata-polyfill@4.0.10:
          -    resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
          -    engines: {node: '>=12.20.0'}
          -    dependencies:
          -      fetch-blob: 3.2.0
          -    dev: false
          -
             /fraction.js@4.3.7:
               resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
               dev: true
          @@ -7770,10 +7561,6 @@ packages:
                 universalify: 0.1.2
               dev: false
           
          -  /fs-monkey@1.0.6:
          -    resolution: {integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==}
          -    dev: false
          -
             /fs.realpath@1.0.0:
               resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
               dev: false
          @@ -7796,6 +7583,54 @@ packages:
                 rimraf: 2.7.1
               dev: false
           
          +  /fumadocs-core@13.0.1(@types/react@18.3.3)(next@14.2.4)(react-dom@18.2.0)(react@18.2.0):
          +    resolution: {integrity: sha512-Rv9/48Yq+MEeeferUiRQcP+SzFi950vpk90YCVxijZf/j/4ptyiHWoHOo4M3DxjKbxejTyt/BGmzMV1TDT3s+A==}
          +    peerDependencies:
          +      next: '>= 14.1.0'
          +      react: '>= 18'
          +      react-dom: '>= 18'
          +    dependencies:
          +      '@formatjs/intl-localematcher': 0.5.4
          +      '@shikijs/rehype': 1.12.0
          +      '@shikijs/transformers': 1.12.0
          +      flexsearch: 0.7.21
          +      github-slugger: 2.0.0
          +      negotiator: 0.6.3
          +      next: 14.2.4(react-dom@18.2.0)(react@18.2.0)
          +      npm-to-yarn: 2.2.1
          +      react: 18.2.0
          +      react-dom: 18.2.0(react@18.2.0)
          +      react-remove-scroll: 2.5.10(@types/react@18.3.3)(react@18.2.0)
          +      remark: 15.0.1
          +      remark-gfm: 4.0.0
          +      remark-mdx: 3.0.1
          +      scroll-into-view-if-needed: 3.1.0
          +      shiki: 1.12.0
          +      swr: 2.2.5(react@18.2.0)
          +      unist-util-visit: 5.0.0
          +    transitivePeerDependencies:
          +      - '@types/react'
          +      - supports-color
          +    dev: false
          +
          +  /fumadocs-mdx@9.0.0(fumadocs-core@13.0.1)(next@14.2.4):
          +    resolution: {integrity: sha512-H/TUt+43K+W/OD6ryvrFRakZ4lL3C8bh/QYpWgiGVcrhwilT4SVeXV7sSQ0riayCSHHbCvu8OzdGjdKXksNcUA==}
          +    peerDependencies:
          +      fumadocs-core: 13.x.x
          +      next: '>= 14.1.0'
          +    dependencies:
          +      '@mdx-js/mdx': 3.0.1
          +      cross-spawn: 7.0.3
          +      estree-util-value-to-estree: 3.1.2
          +      fast-glob: 3.3.2
          +      fumadocs-core: 13.0.1(@types/react@18.3.3)(next@14.2.4)(react-dom@18.2.0)(react@18.2.0)
          +      gray-matter: 4.0.3
          +      next: 14.2.4(react-dom@18.2.0)(react@18.2.0)
          +      zod: 3.23.8
          +    transitivePeerDependencies:
          +      - supports-color
          +    dev: false
          +
             /function-bind@1.1.2:
               resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
           
          @@ -7883,7 +7718,6 @@ packages:
           
             /github-slugger@2.0.0:
               resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==}
          -    dev: true
           
             /glob-parent@5.1.2:
               resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
          @@ -8032,11 +7866,6 @@ packages:
               resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
               engines: {node: '>=8'}
           
          -  /has-own-prop@2.0.0:
          -    resolution: {integrity: sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==}
          -    engines: {node: '>=8'}
          -    dev: false
          -
             /has-property-descriptors@1.0.2:
               resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
               dependencies:
          @@ -8069,10 +7898,6 @@ packages:
                 type-fest: 1.4.0
               dev: true
           
          -  /hash-wasm@4.11.0:
          -    resolution: {integrity: sha512-HVusNXlVqHe0fzIzdQOGolnFN6mX/fqcrSAOcTBXdvzrXVHwTz11vXeKRmkR5gTuwVpvHZEIyKoePDvuAR+XwQ==}
          -    dev: false
          -
             /hasown@2.0.2:
               resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
               engines: {node: '>= 0.4'}
          @@ -8100,6 +7925,7 @@ packages:
                 vfile: 5.3.7
                 vfile-location: 4.1.0
                 web-namespaces: 2.0.1
          +    dev: true
           
             /hast-util-from-parse5@8.0.1:
               resolution: {integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==}
          @@ -8134,6 +7960,7 @@ packages:
               resolution: {integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==}
               dependencies:
                 '@types/hast': 2.3.10
          +    dev: true
           
             /hast-util-parse-selector@4.0.0:
               resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==}
          @@ -8141,22 +7968,6 @@ packages:
                 '@types/hast': 3.0.4
               dev: true
           
          -  /hast-util-raw@7.2.3:
          -    resolution: {integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==}
          -    dependencies:
          -      '@types/hast': 2.3.10
          -      '@types/parse5': 6.0.3
          -      hast-util-from-parse5: 7.1.2
          -      hast-util-to-parse5: 7.1.0
          -      html-void-elements: 2.0.1
          -      parse5: 6.0.1
          -      unist-util-position: 4.0.4
          -      unist-util-visit: 4.1.2
          -      vfile: 5.3.7
          -      web-namespaces: 2.0.1
          -      zwitch: 2.0.4
          -    dev: false
          -
             /hast-util-raw@9.0.3:
               resolution: {integrity: sha512-ICWvVOF2fq4+7CMmtCPD5CM4QKjPbHpPotE6+8tDooV0ZuyJVUzHsrNX+O5NaRbieTf0F7FfeBOMAwi6Td0+yQ==}
               dependencies:
          @@ -8175,49 +7986,34 @@ packages:
                 zwitch: 2.0.4
               dev: true
           
          -  /hast-util-to-estree@2.3.3:
          -    resolution: {integrity: sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==}
          +  /hast-util-to-estree@3.1.0:
          +    resolution: {integrity: sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw==}
               dependencies:
                 '@types/estree': 1.0.5
                 '@types/estree-jsx': 1.0.5
          -      '@types/hast': 2.3.10
          -      '@types/unist': 2.0.10
          +      '@types/hast': 3.0.4
                 comma-separated-tokens: 2.0.3
          -      estree-util-attach-comments: 2.1.1
          -      estree-util-is-identifier-name: 2.1.0
          -      hast-util-whitespace: 2.0.1
          -      mdast-util-mdx-expression: 1.3.2
          -      mdast-util-mdxjs-esm: 1.3.1
          +      devlop: 1.1.0
          +      estree-util-attach-comments: 3.0.0
          +      estree-util-is-identifier-name: 3.0.0
          +      hast-util-whitespace: 3.0.0
          +      mdast-util-mdx-expression: 2.0.0
          +      mdast-util-mdx-jsx: 3.1.2
          +      mdast-util-mdxjs-esm: 2.0.1
                 property-information: 6.5.0
                 space-separated-tokens: 2.0.2
                 style-to-object: 0.4.4
          -      unist-util-position: 4.0.4
          +      unist-util-position: 5.0.0
                 zwitch: 2.0.4
               transitivePeerDependencies:
                 - supports-color
               dev: false
           
          -  /hast-util-to-html@8.0.4:
          -    resolution: {integrity: sha512-4tpQTUOr9BMjtYyNlt0P50mH7xj0Ks2xpo8M943Vykljf99HW6EzulIoJP1N3eKOSScEHzyzi9dm7/cn0RfGwA==}
          +  /hast-util-to-html@9.0.1:
          +    resolution: {integrity: sha512-hZOofyZANbyWo+9RP75xIDV/gq+OUKx+T46IlwERnKmfpwp81XBFbT9mi26ws+SJchA4RVUQwIBJpqEOBhMzEQ==}
               dependencies:
          -      '@types/hast': 2.3.10
          -      '@types/unist': 2.0.10
          -      ccount: 2.0.1
          -      comma-separated-tokens: 2.0.3
          -      hast-util-raw: 7.2.3
          -      hast-util-whitespace: 2.0.1
          -      html-void-elements: 2.0.1
          -      property-information: 6.5.0
          -      space-separated-tokens: 2.0.2
          -      stringify-entities: 4.0.4
          -      zwitch: 2.0.4
          -    dev: false
          -
          -  /hast-util-to-html@9.0.1:
          -    resolution: {integrity: sha512-hZOofyZANbyWo+9RP75xIDV/gq+OUKx+T46IlwERnKmfpwp81XBFbT9mi26ws+SJchA4RVUQwIBJpqEOBhMzEQ==}
          -    dependencies:
          -      '@types/hast': 3.0.4
          -      '@types/unist': 3.0.2
          +      '@types/hast': 3.0.4
          +      '@types/unist': 3.0.2
                 ccount: 2.0.1
                 comma-separated-tokens: 2.0.3
                 hast-util-raw: 9.0.3
          @@ -8230,15 +8026,26 @@ packages:
                 zwitch: 2.0.4
               dev: true
           
          -  /hast-util-to-parse5@7.1.0:
          -    resolution: {integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==}
          +  /hast-util-to-jsx-runtime@2.3.0:
          +    resolution: {integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==}
               dependencies:
          -      '@types/hast': 2.3.10
          +      '@types/estree': 1.0.5
          +      '@types/hast': 3.0.4
          +      '@types/unist': 3.0.2
                 comma-separated-tokens: 2.0.3
          +      devlop: 1.1.0
          +      estree-util-is-identifier-name: 3.0.0
          +      hast-util-whitespace: 3.0.0
          +      mdast-util-mdx-expression: 2.0.0
          +      mdast-util-mdx-jsx: 3.1.2
          +      mdast-util-mdxjs-esm: 2.0.1
                 property-information: 6.5.0
                 space-separated-tokens: 2.0.2
          -      web-namespaces: 2.0.1
          -      zwitch: 2.0.4
          +      style-to-object: 1.0.6
          +      unist-util-position: 5.0.0
          +      vfile-message: 4.0.2
          +    transitivePeerDependencies:
          +      - supports-color
               dev: false
           
             /hast-util-to-parse5@8.0.0:
          @@ -8263,17 +8070,11 @@ packages:
               resolution: {integrity: sha512-OGkAxX1Ua3cbcW6EJ5pT/tslVb90uViVkcJ4ZZIMW/R33DX/AkcJcRrPebPwJkHYwlDHXz4aIwvAAaAdtrACFA==}
               dependencies:
                 '@types/hast': 3.0.4
          -    dev: true
          -
          -  /hast-util-whitespace@2.0.1:
          -    resolution: {integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==}
          -    dev: false
           
             /hast-util-whitespace@3.0.0:
               resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
               dependencies:
                 '@types/hast': 3.0.4
          -    dev: true
           
             /hastscript@6.0.0:
               resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==}
          @@ -8293,6 +8094,7 @@ packages:
                 hast-util-parse-selector: 3.1.1
                 property-information: 6.5.0
                 space-separated-tokens: 2.0.2
          +    dev: true
           
             /hastscript@8.0.0:
               resolution: {integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==}
          @@ -8328,25 +8130,6 @@ packages:
                 lru-cache: 6.0.0
               dev: true
           
          -  /html-dom-parser@3.1.3:
          -    resolution: {integrity: sha512-fI0yyNlIeSboxU+jnrA4v8qj4+M8SI9/q6AKYdwCY2qki22UtKCDTxvagHniECu7sa5/o2zFRdLleA67035lsA==}
          -    dependencies:
          -      domhandler: 5.0.3
          -      htmlparser2: 8.0.1
          -    dev: false
          -
          -  /html-react-parser@3.0.9(react@18.2.0):
          -    resolution: {integrity: sha512-gOPZmaCMXNYu7Y9+58k2tLhTMXQ+QN8ctNFijzLuBxJaLZ6TsN+tUpN+MhbI+6nGaBCRGT2rpw6y/AqkTFZckg==}
          -    peerDependencies:
          -      react: 0.14 || 15 || 16 || 17 || 18
          -    dependencies:
          -      domhandler: 5.0.3
          -      html-dom-parser: 3.1.3
          -      react: 18.2.0
          -      react-property: 2.0.0
          -      style-to-js: 1.1.3
          -    dev: false
          -
             /html-to-text@9.0.3:
               resolution: {integrity: sha512-hxDF1kVCF2uw4VUJ3vr2doc91pXf2D5ngKcNviSitNkhP9OMOaJkDrFIFL6RMvko7NisWTEiqGpQ9LAxcVok1w==}
               engines: {node: '>=14'}
          @@ -8358,23 +8141,10 @@ packages:
                 selderee: 0.10.0
               dev: false
           
          -  /html-void-elements@2.0.1:
          -    resolution: {integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==}
          -    dev: false
          -
             /html-void-elements@3.0.0:
               resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
               dev: true
           
          -  /htmlparser2@8.0.1:
          -    resolution: {integrity: sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==}
          -    dependencies:
          -      domelementtype: 2.3.0
          -      domhandler: 5.0.3
          -      domutils: 3.1.0
          -      entities: 4.5.0
          -    dev: false
          -
             /htmlparser2@8.0.2:
               resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==}
               dependencies:
          @@ -8413,9 +8183,12 @@ packages:
               resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
               engines: {node: '>= 4'}
           
          -  /imagescript@1.3.0:
          -    resolution: {integrity: sha512-lCYzQrWzdnA68K03oMj/BUlBJrVBnslzDOgGFymAp49NmdGEJxGeN7sHh5mCva0nQkq+kkKSuru2zLf1m04+3A==}
          -    engines: {node: '>=14.0.0'}
          +  /image-size@1.1.1:
          +    resolution: {integrity: sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==}
          +    engines: {node: '>=16.x'}
          +    hasBin: true
          +    dependencies:
          +      queue: 6.0.2
               dev: false
           
             /import-fresh@3.3.0:
          @@ -8434,11 +8207,6 @@ packages:
               engines: {node: '>=8'}
               dev: true
           
          -  /inflection@2.0.1:
          -    resolution: {integrity: sha512-wzkZHqpb4eGrOKBl34xy3umnYHx8Si5R1U4fwmdxLo5gdH6mEK8gclckTj/qWqy4Je0bsDYe/qazZYuO7xe3XQ==}
          -    engines: {node: '>=14.0.0'}
          -    dev: false
          -
             /inflight@1.0.6:
               resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
               deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
          @@ -8457,6 +8225,10 @@ packages:
               resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==}
               dev: false
           
          +  /inline-style-parser@0.2.3:
          +    resolution: {integrity: sha512-qlD8YNDqyTKTyuITrDOffsl6Tdhv+UC4hcdAVuQsK4IMQ99nSgd1MIA/Q+jQYoh9r3hVUXhYh7urSRmXPkW04g==}
          +    dev: false
          +
             /internal-slot@1.0.7:
               resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
               engines: {node: '>= 0.4'}
          @@ -8553,6 +8325,7 @@ packages:
             /is-buffer@2.0.5:
               resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
               engines: {node: '>=4'}
          +    dev: true
           
             /is-callable@1.2.7:
               resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
          @@ -8671,11 +8444,6 @@ packages:
               engines: {node: '>=0.10.0'}
               dev: true
           
          -  /is-plain-obj@3.0.0:
          -    resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==}
          -    engines: {node: '>=10'}
          -    dev: false
          -
             /is-plain-obj@4.1.0:
               resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
               engines: {node: '>=12'}
          @@ -8856,10 +8624,6 @@ packages:
               dependencies:
                 argparse: 2.0.1
           
          -  /jsbi@4.3.0:
          -    resolution: {integrity: sha512-SnZNcinB4RIcnEyZqFPdGPVgrg2AcnykiBy0sHVJQKHYeaLUvi3Exj+iaPpLnFVkDPZIV4U0yvgC9/R4uEAZ9g==}
          -    dev: false
          -
             /jsesc@2.5.2:
               resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
               engines: {node: '>=4'}
          @@ -8946,6 +8710,7 @@ packages:
             /kleur@4.1.5:
               resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
               engines: {node: '>=6'}
          +    dev: true
           
             /language-subtag-registry@0.3.23:
               resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
          @@ -9014,6 +8779,7 @@ packages:
           
             /lodash.camelcase@4.3.0:
               resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
          +    dev: true
           
             /lodash.castarray@4.4.0:
               resolution: {integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==}
          @@ -9064,10 +8830,6 @@ packages:
                 is-unicode-supported: 0.1.0
               dev: false
           
          -  /long@5.2.3:
          -    resolution: {integrity: sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==}
          -    dev: false
          -
             /longest-streak@3.1.0:
               resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
           
          @@ -9077,12 +8839,6 @@ packages:
               dependencies:
                 js-tokens: 4.0.0
           
          -  /lower-case@2.0.2:
          -    resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
          -    dependencies:
          -      tslib: 2.6.3
          -    dev: false
          -
             /lowlight@1.20.0:
               resolution: {integrity: sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==}
               dependencies:
          @@ -9130,9 +8886,9 @@ packages:
               engines: {node: '>=8'}
               dev: true
           
          -  /markdown-extensions@1.1.1:
          -    resolution: {integrity: sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==}
          -    engines: {node: '>=0.10.0'}
          +  /markdown-extensions@2.0.0:
          +    resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==}
          +    engines: {node: '>=16'}
               dev: false
           
             /markdown-it@14.1.0:
          @@ -9149,15 +8905,6 @@ packages:
           
             /markdown-table@3.0.3:
               resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==}
          -    dev: true
          -
          -  /mdast-util-definitions@5.1.2:
          -    resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==}
          -    dependencies:
          -      '@types/mdast': 3.0.15
          -      '@types/unist': 2.0.10
          -      unist-util-visit: 4.1.2
          -    dev: false
           
             /mdast-util-find-and-replace@2.2.2:
               resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==}
          @@ -9168,6 +8915,15 @@ packages:
                 unist-util-visit-parents: 5.1.3
               dev: true
           
          +  /mdast-util-find-and-replace@3.0.1:
          +    resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==}
          +    dependencies:
          +      '@types/mdast': 4.0.4
          +      escape-string-regexp: 5.0.0
          +      unist-util-is: 6.0.0
          +      unist-util-visit-parents: 6.0.1
          +    dev: false
          +
             /mdast-util-from-markdown@1.3.1:
               resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==}
               dependencies:
          @@ -9185,6 +8941,7 @@ packages:
                 uvu: 0.5.6
               transitivePeerDependencies:
                 - supports-color
          +    dev: true
           
             /mdast-util-from-markdown@2.0.1:
               resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==}
          @@ -9203,14 +8960,18 @@ packages:
                 unist-util-stringify-position: 4.0.0
               transitivePeerDependencies:
                 - supports-color
          -    dev: true
           
          -  /mdast-util-frontmatter@1.0.1:
          -    resolution: {integrity: sha512-JjA2OjxRqAa8wEG8hloD0uTU0kdn8kbtOWpPP94NBkfAlbxn4S8gCGf/9DwFtEeGPXrDcNXdiDjVaRdUFqYokw==}
          +  /mdast-util-frontmatter@2.0.1:
          +    resolution: {integrity: sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==}
               dependencies:
          -      '@types/mdast': 3.0.15
          -      mdast-util-to-markdown: 1.5.0
          -      micromark-extension-frontmatter: 1.1.1
          +      '@types/mdast': 4.0.4
          +      devlop: 1.1.0
          +      escape-string-regexp: 5.0.0
          +      mdast-util-from-markdown: 2.0.1
          +      mdast-util-to-markdown: 2.1.0
          +      micromark-extension-frontmatter: 2.0.0
          +    transitivePeerDependencies:
          +      - supports-color
               dev: false
           
             /mdast-util-gfm-autolink-literal@1.0.3:
          @@ -9222,6 +8983,16 @@ packages:
                 micromark-util-character: 1.2.0
               dev: true
           
          +  /mdast-util-gfm-autolink-literal@2.0.0:
          +    resolution: {integrity: sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg==}
          +    dependencies:
          +      '@types/mdast': 4.0.4
          +      ccount: 2.0.1
          +      devlop: 1.1.0
          +      mdast-util-find-and-replace: 3.0.1
          +      micromark-util-character: 2.1.0
          +    dev: false
          +
             /mdast-util-gfm-footnote@1.0.2:
               resolution: {integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==}
               dependencies:
          @@ -9230,6 +9001,18 @@ packages:
                 micromark-util-normalize-identifier: 1.1.0
               dev: true
           
          +  /mdast-util-gfm-footnote@2.0.0:
          +    resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==}
          +    dependencies:
          +      '@types/mdast': 4.0.4
          +      devlop: 1.1.0
          +      mdast-util-from-markdown: 2.0.1
          +      mdast-util-to-markdown: 2.1.0
          +      micromark-util-normalize-identifier: 2.0.0
          +    transitivePeerDependencies:
          +      - supports-color
          +    dev: false
          +
             /mdast-util-gfm-strikethrough@1.0.3:
               resolution: {integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==}
               dependencies:
          @@ -9237,6 +9020,16 @@ packages:
                 mdast-util-to-markdown: 1.5.0
               dev: true
           
          +  /mdast-util-gfm-strikethrough@2.0.0:
          +    resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==}
          +    dependencies:
          +      '@types/mdast': 4.0.4
          +      mdast-util-from-markdown: 2.0.1
          +      mdast-util-to-markdown: 2.1.0
          +    transitivePeerDependencies:
          +      - supports-color
          +    dev: false
          +
             /mdast-util-gfm-table@1.0.7:
               resolution: {integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==}
               dependencies:
          @@ -9248,6 +9041,18 @@ packages:
                 - supports-color
               dev: true
           
          +  /mdast-util-gfm-table@2.0.0:
          +    resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==}
          +    dependencies:
          +      '@types/mdast': 4.0.4
          +      devlop: 1.1.0
          +      markdown-table: 3.0.3
          +      mdast-util-from-markdown: 2.0.1
          +      mdast-util-to-markdown: 2.1.0
          +    transitivePeerDependencies:
          +      - supports-color
          +    dev: false
          +
             /mdast-util-gfm-task-list-item@1.0.2:
               resolution: {integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==}
               dependencies:
          @@ -9255,6 +9060,17 @@ packages:
                 mdast-util-to-markdown: 1.5.0
               dev: true
           
          +  /mdast-util-gfm-task-list-item@2.0.0:
          +    resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==}
          +    dependencies:
          +      '@types/mdast': 4.0.4
          +      devlop: 1.1.0
          +      mdast-util-from-markdown: 2.0.1
          +      mdast-util-to-markdown: 2.1.0
          +    transitivePeerDependencies:
          +      - supports-color
          +    dev: false
          +
             /mdast-util-gfm@2.0.2:
               resolution: {integrity: sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==}
               dependencies:
          @@ -9269,57 +9085,74 @@ packages:
                 - supports-color
               dev: true
           
          -  /mdast-util-mdx-expression@1.3.2:
          -    resolution: {integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==}
          +  /mdast-util-gfm@3.0.0:
          +    resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==}
          +    dependencies:
          +      mdast-util-from-markdown: 2.0.1
          +      mdast-util-gfm-autolink-literal: 2.0.0
          +      mdast-util-gfm-footnote: 2.0.0
          +      mdast-util-gfm-strikethrough: 2.0.0
          +      mdast-util-gfm-table: 2.0.0
          +      mdast-util-gfm-task-list-item: 2.0.0
          +      mdast-util-to-markdown: 2.1.0
          +    transitivePeerDependencies:
          +      - supports-color
          +    dev: false
          +
          +  /mdast-util-mdx-expression@2.0.0:
          +    resolution: {integrity: sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw==}
               dependencies:
                 '@types/estree-jsx': 1.0.5
          -      '@types/hast': 2.3.10
          -      '@types/mdast': 3.0.15
          -      mdast-util-from-markdown: 1.3.1
          -      mdast-util-to-markdown: 1.5.0
          +      '@types/hast': 3.0.4
          +      '@types/mdast': 4.0.4
          +      devlop: 1.1.0
          +      mdast-util-from-markdown: 2.0.1
          +      mdast-util-to-markdown: 2.1.0
               transitivePeerDependencies:
                 - supports-color
               dev: false
           
          -  /mdast-util-mdx-jsx@2.1.4:
          -    resolution: {integrity: sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==}
          +  /mdast-util-mdx-jsx@3.1.2:
          +    resolution: {integrity: sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA==}
               dependencies:
                 '@types/estree-jsx': 1.0.5
          -      '@types/hast': 2.3.10
          -      '@types/mdast': 3.0.15
          -      '@types/unist': 2.0.10
          +      '@types/hast': 3.0.4
          +      '@types/mdast': 4.0.4
          +      '@types/unist': 3.0.2
                 ccount: 2.0.1
          -      mdast-util-from-markdown: 1.3.1
          -      mdast-util-to-markdown: 1.5.0
          +      devlop: 1.1.0
          +      mdast-util-from-markdown: 2.0.1
          +      mdast-util-to-markdown: 2.1.0
                 parse-entities: 4.0.1
                 stringify-entities: 4.0.4
          -      unist-util-remove-position: 4.0.2
          -      unist-util-stringify-position: 3.0.3
          -      vfile-message: 3.1.4
          +      unist-util-remove-position: 5.0.0
          +      unist-util-stringify-position: 4.0.0
          +      vfile-message: 4.0.2
               transitivePeerDependencies:
                 - supports-color
               dev: false
           
          -  /mdast-util-mdx@2.0.1:
          -    resolution: {integrity: sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==}
          +  /mdast-util-mdx@3.0.0:
          +    resolution: {integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==}
               dependencies:
          -      mdast-util-from-markdown: 1.3.1
          -      mdast-util-mdx-expression: 1.3.2
          -      mdast-util-mdx-jsx: 2.1.4
          -      mdast-util-mdxjs-esm: 1.3.1
          -      mdast-util-to-markdown: 1.5.0
          +      mdast-util-from-markdown: 2.0.1
          +      mdast-util-mdx-expression: 2.0.0
          +      mdast-util-mdx-jsx: 3.1.2
          +      mdast-util-mdxjs-esm: 2.0.1
          +      mdast-util-to-markdown: 2.1.0
               transitivePeerDependencies:
                 - supports-color
               dev: false
           
          -  /mdast-util-mdxjs-esm@1.3.1:
          -    resolution: {integrity: sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==}
          +  /mdast-util-mdxjs-esm@2.0.1:
          +    resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==}
               dependencies:
                 '@types/estree-jsx': 1.0.5
          -      '@types/hast': 2.3.10
          -      '@types/mdast': 3.0.15
          -      mdast-util-from-markdown: 1.3.1
          -      mdast-util-to-markdown: 1.5.0
          +      '@types/hast': 3.0.4
          +      '@types/mdast': 4.0.4
          +      devlop: 1.1.0
          +      mdast-util-from-markdown: 2.0.1
          +      mdast-util-to-markdown: 2.1.0
               transitivePeerDependencies:
                 - supports-color
               dev: false
          @@ -9329,26 +9162,13 @@ packages:
               dependencies:
                 '@types/mdast': 3.0.15
                 unist-util-is: 5.2.1
          +    dev: true
           
             /mdast-util-phrasing@4.1.0:
               resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
               dependencies:
                 '@types/mdast': 4.0.4
                 unist-util-is: 6.0.0
          -    dev: true
          -
          -  /mdast-util-to-hast@12.3.0:
          -    resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==}
          -    dependencies:
          -      '@types/hast': 2.3.10
          -      '@types/mdast': 3.0.15
          -      mdast-util-definitions: 5.1.2
          -      micromark-util-sanitize-uri: 1.2.0
          -      trim-lines: 3.0.1
          -      unist-util-generated: 2.0.1
          -      unist-util-position: 4.0.4
          -      unist-util-visit: 4.1.2
          -    dev: false
           
             /mdast-util-to-hast@13.1.0:
               resolution: {integrity: sha512-/e2l/6+OdGp/FB+ctrJ9Avz71AN/GRH3oi/3KAx/kMnoUsD6q0woXlDT8lLEeViVKE7oZxE7RXzvO3T8kF2/sA==}
          @@ -9362,7 +9182,6 @@ packages:
                 unist-util-position: 5.0.0
                 unist-util-visit: 5.0.0
                 vfile: 6.0.1
          -    dev: true
           
             /mdast-util-to-markdown@1.5.0:
               resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==}
          @@ -9375,6 +9194,7 @@ packages:
                 micromark-util-decode-string: 1.1.0
                 unist-util-visit: 4.1.2
                 zwitch: 2.0.4
          +    dev: true
           
             /mdast-util-to-markdown@2.1.0:
               resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==}
          @@ -9387,18 +9207,17 @@ packages:
                 micromark-util-decode-string: 2.0.0
                 unist-util-visit: 5.0.0
                 zwitch: 2.0.4
          -    dev: true
           
             /mdast-util-to-string@3.2.0:
               resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==}
               dependencies:
                 '@types/mdast': 3.0.15
          +    dev: true
           
             /mdast-util-to-string@4.0.0:
               resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==}
               dependencies:
                 '@types/mdast': 4.0.4
          -    dev: true
           
             /mdast-util-toc@7.1.0:
               resolution: {integrity: sha512-2TVKotOQzqdY7THOdn2gGzS9d1Sdd66bvxUyw3aNpWfcPXCLYSJCCgfPy30sEtuzkDraJgqF35dzgmz6xlvH/w==}
          @@ -9416,33 +9235,26 @@ packages:
               resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==}
               dev: false
           
          -  /mdx-bundler@9.2.1(esbuild@0.21.4):
          -    resolution: {integrity: sha512-hWEEip1KU9MCNqeH2rqwzAZ1pdqPPbfkx9OTJjADqGPQz4t9BO85fhI7AP9gVYrpmfArf9/xJZUN0yBErg/G/Q==}
          -    engines: {node: '>=14', npm: '>=6'}
          +  /mdx-bundler@10.0.2(esbuild@0.19.12):
          +    resolution: {integrity: sha512-0wF0zoCv+Ms4G+eSlk/jaKYoJHc0oXBaOma3kYlFJiKq9H8h41Dd66ioDBGF4noy80Pf7KTBQlyHfEpTqVml7A==}
          +    engines: {node: '>=18', npm: '>=6'}
               peerDependencies:
                 esbuild: 0.*
               dependencies:
                 '@babel/runtime': 7.24.6
          -      '@esbuild-plugins/node-resolve': 0.1.4(esbuild@0.21.4)
          +      '@esbuild-plugins/node-resolve': 0.2.2(esbuild@0.19.12)
                 '@fal-works/esbuild-plugin-global-externals': 2.1.2
          -      '@mdx-js/esbuild': 2.3.0(esbuild@0.21.4)
          -      esbuild: 0.21.4
          +      '@mdx-js/esbuild': 3.0.1(esbuild@0.19.12)
          +      esbuild: 0.19.12
                 gray-matter: 4.0.3
          -      remark-frontmatter: 4.0.1
          -      remark-mdx-frontmatter: 1.1.1
          -      uuid: 8.3.2
          -      vfile: 5.3.7
          +      remark-frontmatter: 5.0.0
          +      remark-mdx-frontmatter: 4.0.0
          +      uuid: 9.0.1
          +      vfile: 6.0.1
               transitivePeerDependencies:
                 - supports-color
               dev: false
           
          -  /memfs@3.5.3:
          -    resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==}
          -    engines: {node: '>= 4.0.0'}
          -    dependencies:
          -      fs-monkey: 1.0.6
          -    dev: false
          -
             /meow@12.1.1:
               resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==}
               engines: {node: '>=16.10'}
          @@ -9491,6 +9303,7 @@ packages:
                 micromark-util-symbol: 1.1.0
                 micromark-util-types: 1.1.0
                 uvu: 0.5.6
          +    dev: true
           
             /micromark-core-commonmark@2.0.1:
               resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==}
          @@ -9511,15 +9324,14 @@ packages:
                 micromark-util-subtokenize: 2.0.1
                 micromark-util-symbol: 2.0.0
                 micromark-util-types: 2.0.0
          -    dev: true
           
          -  /micromark-extension-frontmatter@1.1.1:
          -    resolution: {integrity: sha512-m2UH9a7n3W8VAH9JO9y01APpPKmNNNs71P0RbknEmYSaZU5Ghogv38BYO94AI5Xw6OYfxZRdHZZ2nYjs/Z+SZQ==}
          +  /micromark-extension-frontmatter@2.0.0:
          +    resolution: {integrity: sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg==}
               dependencies:
                 fault: 2.0.1
          -      micromark-util-character: 1.2.0
          -      micromark-util-symbol: 1.1.0
          -      micromark-util-types: 1.1.0
          +      micromark-util-character: 2.1.0
          +      micromark-util-symbol: 2.0.0
          +      micromark-util-types: 2.0.0
               dev: false
           
             /micromark-extension-gfm-autolink-literal@1.0.5:
          @@ -9531,6 +9343,15 @@ packages:
                 micromark-util-types: 1.1.0
               dev: true
           
          +  /micromark-extension-gfm-autolink-literal@2.1.0:
          +    resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==}
          +    dependencies:
          +      micromark-util-character: 2.1.0
          +      micromark-util-sanitize-uri: 2.0.0
          +      micromark-util-symbol: 2.0.0
          +      micromark-util-types: 2.0.0
          +    dev: false
          +
             /micromark-extension-gfm-footnote@1.1.2:
               resolution: {integrity: sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==}
               dependencies:
          @@ -9544,6 +9365,19 @@ packages:
                 uvu: 0.5.6
               dev: true
           
          +  /micromark-extension-gfm-footnote@2.1.0:
          +    resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==}
          +    dependencies:
          +      devlop: 1.1.0
          +      micromark-core-commonmark: 2.0.1
          +      micromark-factory-space: 2.0.0
          +      micromark-util-character: 2.1.0
          +      micromark-util-normalize-identifier: 2.0.0
          +      micromark-util-sanitize-uri: 2.0.0
          +      micromark-util-symbol: 2.0.0
          +      micromark-util-types: 2.0.0
          +    dev: false
          +
             /micromark-extension-gfm-strikethrough@1.0.7:
               resolution: {integrity: sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==}
               dependencies:
          @@ -9555,6 +9389,17 @@ packages:
                 uvu: 0.5.6
               dev: true
           
          +  /micromark-extension-gfm-strikethrough@2.1.0:
          +    resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==}
          +    dependencies:
          +      devlop: 1.1.0
          +      micromark-util-chunked: 2.0.0
          +      micromark-util-classify-character: 2.0.0
          +      micromark-util-resolve-all: 2.0.0
          +      micromark-util-symbol: 2.0.0
          +      micromark-util-types: 2.0.0
          +    dev: false
          +
             /micromark-extension-gfm-table@1.0.7:
               resolution: {integrity: sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==}
               dependencies:
          @@ -9565,12 +9410,28 @@ packages:
                 uvu: 0.5.6
               dev: true
           
          +  /micromark-extension-gfm-table@2.1.0:
          +    resolution: {integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==}
          +    dependencies:
          +      devlop: 1.1.0
          +      micromark-factory-space: 2.0.0
          +      micromark-util-character: 2.1.0
          +      micromark-util-symbol: 2.0.0
          +      micromark-util-types: 2.0.0
          +    dev: false
          +
             /micromark-extension-gfm-tagfilter@1.0.2:
               resolution: {integrity: sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==}
               dependencies:
                 micromark-util-types: 1.1.0
               dev: true
           
          +  /micromark-extension-gfm-tagfilter@2.0.0:
          +    resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==}
          +    dependencies:
          +      micromark-util-types: 2.0.0
          +    dev: false
          +
             /micromark-extension-gfm-task-list-item@1.0.5:
               resolution: {integrity: sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==}
               dependencies:
          @@ -9581,6 +9442,16 @@ packages:
                 uvu: 0.5.6
               dev: true
           
          +  /micromark-extension-gfm-task-list-item@2.1.0:
          +    resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==}
          +    dependencies:
          +      devlop: 1.1.0
          +      micromark-factory-space: 2.0.0
          +      micromark-util-character: 2.1.0
          +      micromark-util-symbol: 2.0.0
          +      micromark-util-types: 2.0.0
          +    dev: false
          +
             /micromark-extension-gfm@2.0.3:
               resolution: {integrity: sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==}
               dependencies:
          @@ -9594,65 +9465,78 @@ packages:
                 micromark-util-types: 1.1.0
               dev: true
           
          -  /micromark-extension-mdx-expression@1.0.8:
          -    resolution: {integrity: sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==}
          +  /micromark-extension-gfm@3.0.0:
          +    resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==}
          +    dependencies:
          +      micromark-extension-gfm-autolink-literal: 2.1.0
          +      micromark-extension-gfm-footnote: 2.1.0
          +      micromark-extension-gfm-strikethrough: 2.1.0
          +      micromark-extension-gfm-table: 2.1.0
          +      micromark-extension-gfm-tagfilter: 2.0.0
          +      micromark-extension-gfm-task-list-item: 2.1.0
          +      micromark-util-combine-extensions: 2.0.0
          +      micromark-util-types: 2.0.0
          +    dev: false
          +
          +  /micromark-extension-mdx-expression@3.0.0:
          +    resolution: {integrity: sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ==}
               dependencies:
                 '@types/estree': 1.0.5
          -      micromark-factory-mdx-expression: 1.0.9
          -      micromark-factory-space: 1.1.0
          -      micromark-util-character: 1.2.0
          -      micromark-util-events-to-acorn: 1.2.3
          -      micromark-util-symbol: 1.1.0
          -      micromark-util-types: 1.1.0
          -      uvu: 0.5.6
          +      devlop: 1.1.0
          +      micromark-factory-mdx-expression: 2.0.1
          +      micromark-factory-space: 2.0.0
          +      micromark-util-character: 2.1.0
          +      micromark-util-events-to-acorn: 2.0.2
          +      micromark-util-symbol: 2.0.0
          +      micromark-util-types: 2.0.0
               dev: false
           
          -  /micromark-extension-mdx-jsx@1.0.5:
          -    resolution: {integrity: sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==}
          +  /micromark-extension-mdx-jsx@3.0.0:
          +    resolution: {integrity: sha512-uvhhss8OGuzR4/N17L1JwvmJIpPhAd8oByMawEKx6NVdBCbesjH4t+vjEp3ZXft9DwvlKSD07fCeI44/N0Vf2w==}
               dependencies:
                 '@types/acorn': 4.0.6
                 '@types/estree': 1.0.5
          -      estree-util-is-identifier-name: 2.1.0
          -      micromark-factory-mdx-expression: 1.0.9
          -      micromark-factory-space: 1.1.0
          -      micromark-util-character: 1.2.0
          -      micromark-util-symbol: 1.1.0
          -      micromark-util-types: 1.1.0
          -      uvu: 0.5.6
          -      vfile-message: 3.1.4
          +      devlop: 1.1.0
          +      estree-util-is-identifier-name: 3.0.0
          +      micromark-factory-mdx-expression: 2.0.1
          +      micromark-factory-space: 2.0.0
          +      micromark-util-character: 2.1.0
          +      micromark-util-symbol: 2.0.0
          +      micromark-util-types: 2.0.0
          +      vfile-message: 4.0.2
               dev: false
           
          -  /micromark-extension-mdx-md@1.0.1:
          -    resolution: {integrity: sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==}
          +  /micromark-extension-mdx-md@2.0.0:
          +    resolution: {integrity: sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==}
               dependencies:
          -      micromark-util-types: 1.1.0
          +      micromark-util-types: 2.0.0
               dev: false
           
          -  /micromark-extension-mdxjs-esm@1.0.5:
          -    resolution: {integrity: sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==}
          +  /micromark-extension-mdxjs-esm@3.0.0:
          +    resolution: {integrity: sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==}
               dependencies:
                 '@types/estree': 1.0.5
          -      micromark-core-commonmark: 1.1.0
          -      micromark-util-character: 1.2.0
          -      micromark-util-events-to-acorn: 1.2.3
          -      micromark-util-symbol: 1.1.0
          -      micromark-util-types: 1.1.0
          -      unist-util-position-from-estree: 1.1.2
          -      uvu: 0.5.6
          -      vfile-message: 3.1.4
          +      devlop: 1.1.0
          +      micromark-core-commonmark: 2.0.1
          +      micromark-util-character: 2.1.0
          +      micromark-util-events-to-acorn: 2.0.2
          +      micromark-util-symbol: 2.0.0
          +      micromark-util-types: 2.0.0
          +      unist-util-position-from-estree: 2.0.0
          +      vfile-message: 4.0.2
               dev: false
           
          -  /micromark-extension-mdxjs@1.0.1:
          -    resolution: {integrity: sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==}
          +  /micromark-extension-mdxjs@3.0.0:
          +    resolution: {integrity: sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==}
               dependencies:
                 acorn: 8.11.3
                 acorn-jsx: 5.3.2(acorn@8.11.3)
          -      micromark-extension-mdx-expression: 1.0.8
          -      micromark-extension-mdx-jsx: 1.0.5
          -      micromark-extension-mdx-md: 1.0.1
          -      micromark-extension-mdxjs-esm: 1.0.5
          -      micromark-util-combine-extensions: 1.1.0
          -      micromark-util-types: 1.1.0
          +      micromark-extension-mdx-expression: 3.0.0
          +      micromark-extension-mdx-jsx: 3.0.0
          +      micromark-extension-mdx-md: 2.0.0
          +      micromark-extension-mdxjs-esm: 3.0.0
          +      micromark-util-combine-extensions: 2.0.0
          +      micromark-util-types: 2.0.0
               dev: false
           
             /micromark-factory-destination@1.1.0:
          @@ -9661,6 +9545,7 @@ packages:
                 micromark-util-character: 1.2.0
                 micromark-util-symbol: 1.1.0
                 micromark-util-types: 1.1.0
          +    dev: true
           
             /micromark-factory-destination@2.0.0:
               resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==}
          @@ -9668,7 +9553,6 @@ packages:
                 micromark-util-character: 2.1.0
                 micromark-util-symbol: 2.0.0
                 micromark-util-types: 2.0.0
          -    dev: true
           
             /micromark-factory-label@1.1.0:
               resolution: {integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==}
          @@ -9677,6 +9561,7 @@ packages:
                 micromark-util-symbol: 1.1.0
                 micromark-util-types: 1.1.0
                 uvu: 0.5.6
          +    dev: true
           
             /micromark-factory-label@2.0.0:
               resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==}
          @@ -9685,19 +9570,18 @@ packages:
                 micromark-util-character: 2.1.0
                 micromark-util-symbol: 2.0.0
                 micromark-util-types: 2.0.0
          -    dev: true
           
          -  /micromark-factory-mdx-expression@1.0.9:
          -    resolution: {integrity: sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==}
          +  /micromark-factory-mdx-expression@2.0.1:
          +    resolution: {integrity: sha512-F0ccWIUHRLRrYp5TC9ZYXmZo+p2AM13ggbsW4T0b5CRKP8KHVRB8t4pwtBgTxtjRmwrK0Irwm7vs2JOZabHZfg==}
               dependencies:
                 '@types/estree': 1.0.5
          -      micromark-util-character: 1.2.0
          -      micromark-util-events-to-acorn: 1.2.3
          -      micromark-util-symbol: 1.1.0
          -      micromark-util-types: 1.1.0
          -      unist-util-position-from-estree: 1.1.2
          -      uvu: 0.5.6
          -      vfile-message: 3.1.4
          +      devlop: 1.1.0
          +      micromark-util-character: 2.1.0
          +      micromark-util-events-to-acorn: 2.0.2
          +      micromark-util-symbol: 2.0.0
          +      micromark-util-types: 2.0.0
          +      unist-util-position-from-estree: 2.0.0
          +      vfile-message: 4.0.2
               dev: false
           
             /micromark-factory-space@1.1.0:
          @@ -9705,13 +9589,13 @@ packages:
               dependencies:
                 micromark-util-character: 1.2.0
                 micromark-util-types: 1.1.0
          +    dev: true
           
             /micromark-factory-space@2.0.0:
               resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==}
               dependencies:
                 micromark-util-character: 2.1.0
                 micromark-util-types: 2.0.0
          -    dev: true
           
             /micromark-factory-title@1.1.0:
               resolution: {integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==}
          @@ -9720,6 +9604,7 @@ packages:
                 micromark-util-character: 1.2.0
                 micromark-util-symbol: 1.1.0
                 micromark-util-types: 1.1.0
          +    dev: true
           
             /micromark-factory-title@2.0.0:
               resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==}
          @@ -9728,7 +9613,6 @@ packages:
                 micromark-util-character: 2.1.0
                 micromark-util-symbol: 2.0.0
                 micromark-util-types: 2.0.0
          -    dev: true
           
             /micromark-factory-whitespace@1.1.0:
               resolution: {integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==}
          @@ -9737,6 +9621,7 @@ packages:
                 micromark-util-character: 1.2.0
                 micromark-util-symbol: 1.1.0
                 micromark-util-types: 1.1.0
          +    dev: true
           
             /micromark-factory-whitespace@2.0.0:
               resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==}
          @@ -9745,31 +9630,30 @@ packages:
                 micromark-util-character: 2.1.0
                 micromark-util-symbol: 2.0.0
                 micromark-util-types: 2.0.0
          -    dev: true
           
             /micromark-util-character@1.2.0:
               resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==}
               dependencies:
                 micromark-util-symbol: 1.1.0
                 micromark-util-types: 1.1.0
          +    dev: true
           
             /micromark-util-character@2.1.0:
               resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==}
               dependencies:
                 micromark-util-symbol: 2.0.0
                 micromark-util-types: 2.0.0
          -    dev: true
           
             /micromark-util-chunked@1.1.0:
               resolution: {integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==}
               dependencies:
                 micromark-util-symbol: 1.1.0
          +    dev: true
           
             /micromark-util-chunked@2.0.0:
               resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==}
               dependencies:
                 micromark-util-symbol: 2.0.0
          -    dev: true
           
             /micromark-util-classify-character@1.1.0:
               resolution: {integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==}
          @@ -9777,6 +9661,7 @@ packages:
                 micromark-util-character: 1.2.0
                 micromark-util-symbol: 1.1.0
                 micromark-util-types: 1.1.0
          +    dev: true
           
             /micromark-util-classify-character@2.0.0:
               resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==}
          @@ -9784,31 +9669,30 @@ packages:
                 micromark-util-character: 2.1.0
                 micromark-util-symbol: 2.0.0
                 micromark-util-types: 2.0.0
          -    dev: true
           
             /micromark-util-combine-extensions@1.1.0:
               resolution: {integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==}
               dependencies:
                 micromark-util-chunked: 1.1.0
                 micromark-util-types: 1.1.0
          +    dev: true
           
             /micromark-util-combine-extensions@2.0.0:
               resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==}
               dependencies:
                 micromark-util-chunked: 2.0.0
                 micromark-util-types: 2.0.0
          -    dev: true
           
             /micromark-util-decode-numeric-character-reference@1.1.0:
               resolution: {integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==}
               dependencies:
                 micromark-util-symbol: 1.1.0
          +    dev: true
           
             /micromark-util-decode-numeric-character-reference@2.0.1:
               resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==}
               dependencies:
                 micromark-util-symbol: 2.0.0
          -    dev: true
           
             /micromark-util-decode-string@1.1.0:
               resolution: {integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==}
          @@ -9817,6 +9701,7 @@ packages:
                 micromark-util-character: 1.2.0
                 micromark-util-decode-numeric-character-reference: 1.1.0
                 micromark-util-symbol: 1.1.0
          +    dev: true
           
             /micromark-util-decode-string@2.0.0:
               resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==}
          @@ -9825,56 +9710,55 @@ packages:
                 micromark-util-character: 2.1.0
                 micromark-util-decode-numeric-character-reference: 2.0.1
                 micromark-util-symbol: 2.0.0
          -    dev: true
           
             /micromark-util-encode@1.1.0:
               resolution: {integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==}
          +    dev: true
           
             /micromark-util-encode@2.0.0:
               resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==}
          -    dev: true
           
          -  /micromark-util-events-to-acorn@1.2.3:
          -    resolution: {integrity: sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==}
          +  /micromark-util-events-to-acorn@2.0.2:
          +    resolution: {integrity: sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA==}
               dependencies:
                 '@types/acorn': 4.0.6
                 '@types/estree': 1.0.5
          -      '@types/unist': 2.0.10
          -      estree-util-visit: 1.2.1
          -      micromark-util-symbol: 1.1.0
          -      micromark-util-types: 1.1.0
          -      uvu: 0.5.6
          -      vfile-message: 3.1.4
          +      '@types/unist': 3.0.2
          +      devlop: 1.1.0
          +      estree-util-visit: 2.0.0
          +      micromark-util-symbol: 2.0.0
          +      micromark-util-types: 2.0.0
          +      vfile-message: 4.0.2
               dev: false
           
             /micromark-util-html-tag-name@1.2.0:
               resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==}
          +    dev: true
           
             /micromark-util-html-tag-name@2.0.0:
               resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==}
          -    dev: true
           
             /micromark-util-normalize-identifier@1.1.0:
               resolution: {integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==}
               dependencies:
                 micromark-util-symbol: 1.1.0
          +    dev: true
           
             /micromark-util-normalize-identifier@2.0.0:
               resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==}
               dependencies:
                 micromark-util-symbol: 2.0.0
          -    dev: true
           
             /micromark-util-resolve-all@1.1.0:
               resolution: {integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==}
               dependencies:
                 micromark-util-types: 1.1.0
          +    dev: true
           
             /micromark-util-resolve-all@2.0.0:
               resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==}
               dependencies:
                 micromark-util-types: 2.0.0
          -    dev: true
           
             /micromark-util-sanitize-uri@1.2.0:
               resolution: {integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==}
          @@ -9882,6 +9766,7 @@ packages:
                 micromark-util-character: 1.2.0
                 micromark-util-encode: 1.1.0
                 micromark-util-symbol: 1.1.0
          +    dev: true
           
             /micromark-util-sanitize-uri@2.0.0:
               resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==}
          @@ -9889,7 +9774,6 @@ packages:
                 micromark-util-character: 2.1.0
                 micromark-util-encode: 2.0.0
                 micromark-util-symbol: 2.0.0
          -    dev: true
           
             /micromark-util-subtokenize@1.1.0:
               resolution: {integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==}
          @@ -9898,6 +9782,7 @@ packages:
                 micromark-util-symbol: 1.1.0
                 micromark-util-types: 1.1.0
                 uvu: 0.5.6
          +    dev: true
           
             /micromark-util-subtokenize@2.0.1:
               resolution: {integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==}
          @@ -9906,21 +9791,20 @@ packages:
                 micromark-util-chunked: 2.0.0
                 micromark-util-symbol: 2.0.0
                 micromark-util-types: 2.0.0
          -    dev: true
           
             /micromark-util-symbol@1.1.0:
               resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==}
          +    dev: true
           
             /micromark-util-symbol@2.0.0:
               resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==}
          -    dev: true
           
             /micromark-util-types@1.1.0:
               resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==}
          +    dev: true
           
             /micromark-util-types@2.0.0:
               resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==}
          -    dev: true
           
             /micromark@3.2.0:
               resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==}
          @@ -9944,6 +9828,7 @@ packages:
                 uvu: 0.5.6
               transitivePeerDependencies:
                 - supports-color
          +    dev: true
           
             /micromark@4.0.0:
               resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==}
          @@ -9967,7 +9852,6 @@ packages:
                 micromark-util-types: 2.0.0
               transitivePeerDependencies:
                 - supports-color
          -    dev: true
           
             /micromatch@4.0.7:
               resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
          @@ -10093,6 +9977,7 @@ packages:
             /mri@1.2.0:
               resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
               engines: {node: '>=4'}
          +    dev: true
           
             /ms@2.1.2:
               resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
          @@ -10125,6 +10010,11 @@ packages:
             /natural-compare@1.4.0:
               resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
           
          +  /negotiator@0.6.3:
          +    resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
          +    engines: {node: '>= 0.6'}
          +    dev: false
          +
             /next-auth@4.24.4(next@14.2.4)(nodemailer@6.9.13)(react-dom@18.2.0)(react@18.2.0):
               resolution: {integrity: sha512-5DGffi+OpkbU62vPQIJ1z+hFnmow+ec5Qrn9m6eoglIO51m0DlrmLxBduZEwKAYDEg9k2joi1yelgmq1vqK3aQ==}
               peerDependencies:
          @@ -10140,7 +10030,7 @@ packages:
                 '@panva/hkdf': 1.1.1
                 cookie: 0.5.0
                 jose: 4.15.5
          -      next: 14.2.4(@opentelemetry/api@1.8.0)(react-dom@18.2.0)(react@18.2.0)
          +      next: 14.2.4(react-dom@18.2.0)(react@18.2.0)
                 nodemailer: 6.9.13
                 oauth: 0.9.15
                 openid-client: 5.6.5
          @@ -10151,24 +10041,21 @@ packages:
                 uuid: 8.3.2
               dev: false
           
          -  /next-contentlayer@0.3.4(contentlayer@0.3.4)(esbuild@0.21.4)(next@14.2.4)(react-dom@18.2.0)(react@18.2.0):
          -    resolution: {integrity: sha512-UtUCwgAl159KwfhNaOwyiI7Lg6sdioyKMeh+E7jxx0CJ29JuXGxBEYmCI6+72NxFGIFZKx8lvttbbQhbnYWYSw==}
          +  /next-mdx-remote@5.0.0(@types/react@18.3.3)(react@18.2.0):
          +    resolution: {integrity: sha512-RNNbqRpK9/dcIFZs/esQhuLA8jANqlH694yqoDBK8hkVdJUndzzGmnPHa2nyi90N4Z9VmzuSWNRpr5ItT3M7xQ==}
          +    engines: {node: '>=14', npm: '>=7'}
               peerDependencies:
          -      contentlayer: 0.3.4
          -      next: ^12 || ^13
          -      react: '*'
          -      react-dom: '*'
          +      react: '>=16'
               dependencies:
          -      '@contentlayer/core': 0.3.4(esbuild@0.21.4)
          -      '@contentlayer/utils': 0.3.4
          -      contentlayer: 0.3.4(esbuild@0.21.4)
          -      next: 14.2.4(@opentelemetry/api@1.8.0)(react-dom@18.2.0)(react@18.2.0)
          +      '@babel/code-frame': 7.24.6
          +      '@mdx-js/mdx': 3.0.1
          +      '@mdx-js/react': 3.0.1(@types/react@18.3.3)(react@18.2.0)
                 react: 18.2.0
          -      react-dom: 18.2.0(react@18.2.0)
          +      unist-util-remove: 3.1.1
          +      vfile: 6.0.1
          +      vfile-matter: 5.0.0
               transitivePeerDependencies:
          -      - '@effect-ts/otel-node'
          -      - esbuild
          -      - markdown-wasm
          +      - '@types/react'
                 - supports-color
               dev: false
           
          @@ -10179,12 +10066,12 @@ packages:
                 react: '*'
                 react-dom: '*'
               dependencies:
          -      next: 14.2.4(@opentelemetry/api@1.8.0)(react-dom@18.2.0)(react@18.2.0)
          +      next: 14.2.4(react-dom@18.2.0)(react@18.2.0)
                 react: 18.2.0
                 react-dom: 18.2.0(react@18.2.0)
               dev: false
           
          -  /next@14.2.4(@opentelemetry/api@1.8.0)(react-dom@18.2.0)(react@18.2.0):
          +  /next@14.2.4(react-dom@18.2.0)(react@18.2.0):
               resolution: {integrity: sha512-R8/V7vugY+822rsQGQCjoLhMuC9oFj9SOi4Cl4b2wjDrseD0LRZ10W7R6Czo4w9ZznVSshKjuIomsRjvm9EKJQ==}
               engines: {node: '>=18.17.0'}
               hasBin: true
          @@ -10203,7 +10090,6 @@ packages:
                   optional: true
               dependencies:
                 '@next/env': 14.2.4
          -      '@opentelemetry/api': 1.8.0
                 '@swc/helpers': 0.5.5
                 busboy: 1.6.0
                 caniuse-lite: 1.0.30001628
          @@ -10227,13 +10113,6 @@ packages:
                 - babel-plugin-macros
               dev: false
           
          -  /no-case@3.0.4:
          -    resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
          -    dependencies:
          -      lower-case: 2.0.2
          -      tslib: 2.6.3
          -    dev: false
          -
             /node-abi@3.63.0:
               resolution: {integrity: sha512-vAszCsOUrUxjGAmdnM/pq7gUgie0IRteCQMX6d4A534fQCR93EJU5qgzBvU6EkFfK27s0T3HEV3BOyJIr7OMYw==}
               engines: {node: '>=10'}
          @@ -10245,6 +10124,10 @@ packages:
               resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==}
               dev: false
           
          +  /node-addon-api@7.1.1:
          +    resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
          +    dev: false
          +
             /node-domexception@1.0.0:
               resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
               engines: {node: '>=10.5.0'}
          @@ -10262,15 +10145,6 @@ packages:
                 whatwg-url: 5.0.0
               dev: false
           
          -  /node-fetch@3.3.2:
          -    resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
          -    engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
          -    dependencies:
          -      data-uri-to-buffer: 4.0.1
          -      fetch-blob: 3.2.0
          -      formdata-polyfill: 4.0.10
          -    dev: false
          -
             /node-forge@1.3.1:
               resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
               engines: {node: '>= 6.13.0'}
          @@ -10325,6 +10199,11 @@ packages:
               dependencies:
                 path-key: 3.1.1
           
          +  /npm-to-yarn@2.2.1:
          +    resolution: {integrity: sha512-O/j/ROyX0KGLG7O6Ieut/seQ0oiTpHF2tXAcFbpdTLQFiaNtkyTXXocM1fwpaa60dg1qpWj0nHlbNhx6qwuENQ==}
          +    engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
          +    dev: false
          +
             /oauth@0.9.15:
               resolution: {integrity: sha512-a5ERWK1kh38ExDEfoO6qUHJb32rd7aYmPHuyCu3Fta/cnICvYmgd2uhuKXvPD+PXB+gCEYYEaQdIRAjCOwAKNA==}
               dev: false
          @@ -10427,11 +10306,6 @@ packages:
               dependencies:
                 mimic-fn: 2.1.0
           
          -  /oo-ascii-tree@1.99.0:
          -    resolution: {integrity: sha512-/BTLvFECySvAwOUeu/iSkhQk+WXH8FPcXOrjbadlnWuNwYtNH5jcEOxyBkL0sT6WvmFFsogRu2zLb2H/nPCJrQ==}
          -    engines: {node: '>= 14.17.0'}
          -    dev: false
          -
             /openai@4.48.1:
               resolution: {integrity: sha512-nlEzUAzDG1GsTlBVAFFtB0WZB8BFY+XU7o4oslzC7YMZ9PlgDixnbM49hXRWzv5OztevSn64hVKqptvzHq5/6Q==}
               hasBin: true
          @@ -10577,6 +10451,7 @@ packages:
           
             /parse5@6.0.1:
               resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
          +    dev: true
           
             /parse5@7.1.2:
               resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
          @@ -10591,13 +10466,6 @@ packages:
                 peberminta: 0.8.0
               dev: false
           
          -  /pascal-case@3.1.2:
          -    resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
          -    dependencies:
          -      no-case: 3.0.4
          -      tslib: 2.6.3
          -    dev: false
          -
             /path-exists@4.0.0:
               resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
               engines: {node: '>=8'}
          @@ -10693,34 +10561,16 @@ packages:
               resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
               engines: {node: '>= 6'}
           
          +  /pluralize@8.0.0:
          +    resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
          +    engines: {node: '>=4'}
          +    dev: false
          +
             /possible-typed-array-names@1.0.0:
               resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
               engines: {node: '>= 0.4'}
               dev: false
           
          -  /postcss-css-variables@0.18.0(postcss@8.4.21):
          -    resolution: {integrity: sha512-lYS802gHbzn1GI+lXvy9MYIYDuGnl1WB4FTKoqMQqJ3Mab09A7a/1wZvGTkCEZJTM8mSbIyb1mJYn8f0aPye0Q==}
          -    peerDependencies:
          -      postcss: ^8.2.6
          -    dependencies:
          -      balanced-match: 1.0.2
          -      escape-string-regexp: 1.0.5
          -      extend: 3.0.2
          -      postcss: 8.4.21
          -    dev: false
          -
          -  /postcss-import@14.1.0(postcss@8.4.21):
          -    resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==}
          -    engines: {node: '>=10.0.0'}
          -    peerDependencies:
          -      postcss: ^8.0.0
          -    dependencies:
          -      postcss: 8.4.21
          -      postcss-value-parser: 4.2.0
          -      read-cache: 1.0.0
          -      resolve: 1.22.8
          -    dev: false
          -
             /postcss-import@15.1.0(postcss@8.4.38):
               resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
               engines: {node: '>=14.0.0'}
          @@ -10732,16 +10582,6 @@ packages:
                 read-cache: 1.0.0
                 resolve: 1.22.8
           
          -  /postcss-js@4.0.1(postcss@8.4.21):
          -    resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
          -    engines: {node: ^12 || ^14 || >= 16}
          -    peerDependencies:
          -      postcss: ^8.4.21
          -    dependencies:
          -      camelcase-css: 2.0.1
          -      postcss: 8.4.21
          -    dev: false
          -
             /postcss-js@4.0.1(postcss@8.4.38):
               resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
               engines: {node: ^12 || ^14 || >= 16}
          @@ -10751,23 +10591,6 @@ packages:
                 camelcase-css: 2.0.1
                 postcss: 8.4.38
           
          -  /postcss-load-config@3.1.4(postcss@8.4.21):
          -    resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
          -    engines: {node: '>= 10'}
          -    peerDependencies:
          -      postcss: '>=8.0.9'
          -      ts-node: '>=9.0.0'
          -    peerDependenciesMeta:
          -      postcss:
          -        optional: true
          -      ts-node:
          -        optional: true
          -    dependencies:
          -      lilconfig: 2.1.0
          -      postcss: 8.4.21
          -      yaml: 1.10.2
          -    dev: false
          -
             /postcss-load-config@4.0.2(postcss@8.4.38):
               resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
               engines: {node: '>= 14'}
          @@ -10784,16 +10607,6 @@ packages:
                 postcss: 8.4.38
                 yaml: 2.4.3
           
          -  /postcss-nested@6.0.0(postcss@8.4.21):
          -    resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==}
          -    engines: {node: '>=12.0'}
          -    peerDependencies:
          -      postcss: ^8.2.14
          -    dependencies:
          -      postcss: 8.4.21
          -      postcss-selector-parser: 6.1.0
          -    dev: false
          -
             /postcss-nested@6.0.1(postcss@8.4.38):
               resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
               engines: {node: '>=12.0'}
          @@ -10821,15 +10634,6 @@ packages:
             /postcss-value-parser@4.2.0:
               resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
           
          -  /postcss@8.4.21:
          -    resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==}
          -    engines: {node: ^10 || ^12 || >=14}
          -    dependencies:
          -      nanoid: 3.3.7
          -      picocolors: 1.0.1
          -      source-map-js: 1.2.0
          -    dev: false
          -
             /postcss@8.4.31:
               resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
               engines: {node: ^10 || ^12 || >=14}
          @@ -11202,25 +11006,6 @@ packages:
               resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
               dev: false
           
          -  /protobufjs@7.3.0:
          -    resolution: {integrity: sha512-YWD03n3shzV9ImZRX3ccbjqLxj7NokGN0V/ESiBV5xWqrommYHYiihuIyavq03pWSGqlyvYUFmfoMKd+1rPA/g==}
          -    engines: {node: '>=12.0.0'}
          -    requiresBuild: true
          -    dependencies:
          -      '@protobufjs/aspromise': 1.1.2
          -      '@protobufjs/base64': 1.1.2
          -      '@protobufjs/codegen': 2.0.4
          -      '@protobufjs/eventemitter': 1.1.0
          -      '@protobufjs/fetch': 1.1.0
          -      '@protobufjs/float': 1.0.2
          -      '@protobufjs/inquire': 1.1.0
          -      '@protobufjs/path': 1.1.2
          -      '@protobufjs/pool': 1.1.0
          -      '@protobufjs/utf8': 1.1.0
          -      '@types/node': 20.14.1
          -      long: 5.2.3
          -    dev: false
          -
             /proxy-from-env@1.1.0:
               resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
               dev: false
          @@ -11254,14 +11039,21 @@ packages:
               resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==}
               dev: false
           
          +  /queue@6.0.2:
          +    resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==}
          +    dependencies:
          +      inherits: 2.0.4
          +    dev: false
          +
             /quick-lru@4.0.1:
               resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==}
               engines: {node: '>=8'}
               dev: true
           
          -  /quick-lru@5.1.1:
          -    resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
          -    engines: {node: '>=10'}
          +  /randombytes@2.1.0:
          +    resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
          +    dependencies:
          +      safe-buffer: 5.2.1
               dev: false
           
             /rc@1.2.8:
          @@ -11386,10 +11178,6 @@ packages:
               resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==}
               dev: false
           
          -  /react-property@2.0.0:
          -    resolution: {integrity: sha512-kzmNjIgU32mO4mmH5+iUyrqlpFQhF8K2k7eZ4fdLSOPFrD1XgEuSBv9LDEgxRXTMBqMd8ppT0x6TIzqE5pdGdw==}
          -    dev: false
          -
             /react-remove-scroll-bar@2.3.6(@types/react@18.3.3)(react@18.2.0):
               resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==}
               engines: {node: '>=10'}
          @@ -11406,6 +11194,25 @@ packages:
                 tslib: 2.6.3
               dev: false
           
          +  /react-remove-scroll@2.5.10(@types/react@18.3.3)(react@18.2.0):
          +    resolution: {integrity: sha512-m3zvBRANPBw3qxVVjEIPEQinkcwlFZ4qyomuWVpNJdv4c6MvHfXV0C3L9Jx5rr3HeBHKNRX+1jreB5QloDIJjA==}
          +    engines: {node: '>=10'}
          +    peerDependencies:
          +      '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
          +      react: ^16.8.0 || ^17.0.0 || ^18.0.0
          +    peerDependenciesMeta:
          +      '@types/react':
          +        optional: true
          +    dependencies:
          +      '@types/react': 18.3.3
          +      react: 18.2.0
          +      react-remove-scroll-bar: 2.3.6(@types/react@18.3.3)(react@18.2.0)
          +      react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.2.0)
          +      tslib: 2.6.3
          +      use-callback-ref: 1.3.2(@types/react@18.3.3)(react@18.2.0)
          +      use-sidecar: 1.1.2(@types/react@18.3.3)(react@18.2.0)
          +    dev: false
          +
             /react-remove-scroll@2.5.4(@types/react@18.3.3)(react@18.2.0):
               resolution: {integrity: sha512-xGVKJJr0SJGQVirVFAUZ2k1QLyO6m+2fy0l8Qawbp5Jgrv3DeLalrfMNBFSlmz5kriGGzsVBtGVnf4pTKIhhWA==}
               engines: {node: '>=10'}
          @@ -11674,6 +11481,14 @@ packages:
                 unist-util-visit: 5.0.0
               dev: true
           
          +  /rehype-img-size@1.0.1:
          +    resolution: {integrity: sha512-+rLkxF2H3mQULAg3iA2Z2spJQlBcCpApG8sHC47bc0p33ol+ddz+O3gyUcTgk5xX5jGaj1oQOBs/cBy8nIIhoQ==}
          +    engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
          +    dependencies:
          +      image-size: 1.1.1
          +      unist-util-visit: 4.1.2
          +    dev: false
          +
             /rehype-parse@8.0.5:
               resolution: {integrity: sha512-Ds3RglaY/+clEX2U2mHflt7NlMA72KspZ0JLUJgBBLpRddBcEw3H8uYZQliQriku22NZpYMfjDdSgHcjxue24A==}
               dependencies:
          @@ -11724,14 +11539,6 @@ packages:
                 unified: 11.0.4
               dev: true
           
          -  /rehype-stringify@9.0.4:
          -    resolution: {integrity: sha512-Uk5xu1YKdqobe5XpSskwPvo1XeHUUucWEQSl8hTrXt5selvca1e8K1EZ37E6YoZ4BT8BCqCdVfQW7OfHfthtVQ==}
          -    dependencies:
          -      '@types/hast': 2.3.10
          -      hast-util-to-html: 8.0.4
          -      unified: 10.1.2
          -    dev: false
          -
             /rehype@13.0.1:
               resolution: {integrity: sha512-AcSLS2mItY+0fYu9xKxOu1LhUZeBZZBx8//5HKzF+0XP+eP8+6a5MXn2+DW2kfXR6Dtp1FEXMVrjyKAcvcU8vg==}
               dependencies:
          @@ -11741,13 +11548,15 @@ packages:
                 unified: 11.0.4
               dev: true
           
          -  /remark-frontmatter@4.0.1:
          -    resolution: {integrity: sha512-38fJrB0KnmD3E33a5jZC/5+gGAC2WKNiPw1/fdXJvijBlhA7RCsvJklrYJakS0HedninvaCYW8lQGf9C918GfA==}
          +  /remark-frontmatter@5.0.0:
          +    resolution: {integrity: sha512-XTFYvNASMe5iPN0719nPrdItC9aU0ssC4v14mH1BCi1u0n1gAocqcujWUrByftZTbLhRtiKRyjYTSIOcr69UVQ==}
               dependencies:
          -      '@types/mdast': 3.0.15
          -      mdast-util-frontmatter: 1.0.1
          -      micromark-extension-frontmatter: 1.1.1
          -      unified: 10.1.2
          +      '@types/mdast': 4.0.4
          +      mdast-util-frontmatter: 2.0.1
          +      micromark-extension-frontmatter: 2.0.0
          +      unified: 11.0.4
          +    transitivePeerDependencies:
          +      - supports-color
               dev: false
           
             /remark-gfm@3.0.1:
          @@ -11761,31 +11570,35 @@ packages:
                 - supports-color
               dev: true
           
          -  /remark-mdx-frontmatter@1.1.1:
          -    resolution: {integrity: sha512-7teX9DW4tI2WZkXS4DBxneYSY7NHiXl4AKdWDO9LXVweULlCT8OPWsOjLEnMIXViN1j+QcY8mfbq3k0EK6x3uA==}
          -    engines: {node: '>=12.2.0'}
          +  /remark-gfm@4.0.0:
          +    resolution: {integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==}
               dependencies:
          -      estree-util-is-identifier-name: 1.1.0
          -      estree-util-value-to-estree: 1.3.0
          -      js-yaml: 4.1.0
          -      toml: 3.0.0
          +      '@types/mdast': 4.0.4
          +      mdast-util-gfm: 3.0.0
          +      micromark-extension-gfm: 3.0.0
          +      remark-parse: 11.0.0
          +      remark-stringify: 11.0.0
          +      unified: 11.0.4
          +    transitivePeerDependencies:
          +      - supports-color
               dev: false
           
          -  /remark-mdx@2.3.0:
          -    resolution: {integrity: sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==}
          +  /remark-mdx-frontmatter@4.0.0:
          +    resolution: {integrity: sha512-PZzAiDGOEfv1Ua7exQ8S5kKxkD8CDaSb4nM+1Mprs6u8dyvQifakh+kCj6NovfGXW+bTvrhjaR3srzjS2qJHKg==}
               dependencies:
          -      mdast-util-mdx: 2.0.1
          -      micromark-extension-mdxjs: 1.0.1
          -    transitivePeerDependencies:
          -      - supports-color
          +      '@types/mdast': 4.0.4
          +      estree-util-is-identifier-name: 3.0.0
          +      estree-util-value-to-estree: 3.1.2
          +      toml: 3.0.0
          +      unified: 11.0.4
          +      yaml: 2.4.3
               dev: false
           
          -  /remark-parse@10.0.2:
          -    resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==}
          +  /remark-mdx@3.0.1:
          +    resolution: {integrity: sha512-3Pz3yPQ5Rht2pM5R+0J2MrGoBSrzf+tJG94N+t/ilfdh8YLyyKYtidAYwTveB20BoHAcwIopOUqhcmh2F7hGYA==}
               dependencies:
          -      '@types/mdast': 3.0.15
          -      mdast-util-from-markdown: 1.3.1
          -      unified: 10.1.2
          +      mdast-util-mdx: 3.0.0
          +      micromark-extension-mdxjs: 3.0.0
               transitivePeerDependencies:
                 - supports-color
               dev: false
          @@ -11799,15 +11612,15 @@ packages:
                 unified: 11.0.4
               transitivePeerDependencies:
                 - supports-color
          -    dev: true
           
          -  /remark-rehype@10.1.0:
          -    resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==}
          +  /remark-rehype@11.1.0:
          +    resolution: {integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==}
               dependencies:
          -      '@types/hast': 2.3.10
          -      '@types/mdast': 3.0.15
          -      mdast-util-to-hast: 12.3.0
          -      unified: 10.1.2
          +      '@types/hast': 3.0.4
          +      '@types/mdast': 4.0.4
          +      mdast-util-to-hast: 13.1.0
          +      unified: 11.0.4
          +      vfile: 6.0.1
               dev: false
           
             /remark-stringify@11.0.0:
          @@ -11816,7 +11629,6 @@ packages:
                 '@types/mdast': 4.0.4
                 mdast-util-to-markdown: 2.1.0
                 unified: 11.0.4
          -    dev: true
           
             /remark@15.0.1:
               resolution: {integrity: sha512-Eht5w30ruCXgFmxVUSlNWQ9iiimq07URKeFS3hNc8cUWy1llX4KDWfyEDZRycMc+znsN9Ux5/tJ/BFdgdOwA3A==}
          @@ -11827,12 +11639,6 @@ packages:
                 unified: 11.0.4
               transitivePeerDependencies:
                 - supports-color
          -    dev: true
          -
          -  /repeat-string@1.6.1:
          -    resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
          -    engines: {node: '>=0.10'}
          -    dev: false
           
             /require-directory@2.1.1:
               resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
          @@ -11843,14 +11649,6 @@ packages:
               engines: {node: '>=0.10.0'}
               dev: true
           
          -  /resend@1.1.0:
          -    resolution: {integrity: sha512-it8TIDVT+/gAiJsUlv2tdHuvzwCCv4Zwu+udDqIm/dIuByQwe68TtFDcPccxqpSVVrNCBxxXLzsdT1tsV+P3GA==}
          -    engines: {node: '>=18'}
          -    dependencies:
          -      '@react-email/render': 0.0.7
          -      type-fest: 3.13.0
          -    dev: false
          -
             /resolve-from@4.0.0:
               resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
               engines: {node: '>=4'}
          @@ -11958,6 +11756,7 @@ packages:
               engines: {node: '>=6'}
               dependencies:
                 mri: 1.2.0
          +    dev: true
           
             /safe-array-concat@1.1.2:
               resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
          @@ -12006,6 +11805,12 @@ packages:
               dependencies:
                 loose-envify: 1.4.0
           
          +  /scroll-into-view-if-needed@3.1.0:
          +    resolution: {integrity: sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==}
          +    dependencies:
          +      compute-scroll-into-view: 3.1.0
          +    dev: false
          +
             /section-matter@1.0.0:
               resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==}
               engines: {node: '>=4'}
          @@ -12050,6 +11855,12 @@ packages:
               engines: {node: '>=10'}
               hasBin: true
           
          +  /serialize-javascript@6.0.2:
          +    resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
          +    dependencies:
          +      randombytes: 2.1.0
          +    dev: false
          +
             /server-only@0.0.1:
               resolution: {integrity: sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA==}
               dev: false
          @@ -12127,6 +11938,13 @@ packages:
                 vscode-oniguruma: 1.7.0
                 vscode-textmate: 8.0.0
           
          +  /shiki@1.12.0:
          +    resolution: {integrity: sha512-BuAxWOm5JhRcbSOl7XCei8wGjgJJonnV0oipUupPY58iULxUGyHhW5CF+9FRMuM1pcJ5cGEJGll1LusX6FwpPA==}
          +    dependencies:
          +      '@shikijs/core': 1.12.0
          +      '@types/hast': 3.0.4
          +    dev: false
          +
             /side-channel@1.0.6:
               resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
               engines: {node: '>= 0.4'}
          @@ -12188,16 +12006,10 @@ packages:
               resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
               engines: {node: '>=0.10.0'}
           
          -  /source-map-support@0.5.21:
          -    resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
          -    dependencies:
          -      buffer-from: 1.1.2
          -      source-map: 0.6.1
          -    dev: false
          -
             /source-map@0.6.1:
               resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
               engines: {node: '>=0.10.0'}
          +    dev: true
           
             /source-map@0.7.4:
               resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
          @@ -12412,22 +12224,16 @@ packages:
                 qs: 6.12.1
               dev: false
           
          -  /style-to-js@1.1.3:
          -    resolution: {integrity: sha512-zKI5gN/zb7LS/Vm0eUwjmjrXWw8IMtyA8aPBJZdYiQTXj4+wQ3IucOLIOnF7zCHxvW8UhIGh/uZh/t9zEHXNTQ==}
          -    dependencies:
          -      style-to-object: 0.4.1
          -    dev: false
          -
          -  /style-to-object@0.4.1:
          -    resolution: {integrity: sha512-HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw==}
          +  /style-to-object@0.4.4:
          +    resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==}
               dependencies:
                 inline-style-parser: 0.1.1
               dev: false
           
          -  /style-to-object@0.4.4:
          -    resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==}
          +  /style-to-object@1.0.6:
          +    resolution: {integrity: sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA==}
               dependencies:
          -      inline-style-parser: 0.1.1
          +      inline-style-parser: 0.2.3
               dev: false
           
             /styled-jsx@5.1.1(react@18.2.0):
          @@ -12483,6 +12289,16 @@ packages:
               resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
               engines: {node: '>= 0.4'}
           
          +  /swr@2.2.5(react@18.2.0):
          +    resolution: {integrity: sha512-QtxqyclFeAsxEUeZIYmsaQ0UjimSq1RZ9Un7I68/0ClKK/U3LoyQunwkQfJZr2fc22DfIXLNDc2wFyTEikCUpg==}
          +    peerDependencies:
          +      react: ^16.11.0 || ^17.0.0 || ^18.0.0
          +    dependencies:
          +      client-only: 0.0.1
          +      react: 18.2.0
          +      use-sync-external-store: 1.2.0(react@18.2.0)
          +    dev: false
          +
             /tailwind-merge@2.3.0:
               resolution: {integrity: sha512-vkYrLpIP+lgR0tQCG6AP7zZXCTLc1Lnv/CCRT3BqJ9CZ3ui2++GPaGb1x/ILsINIMSYqqvrpqjUFsMNLlW99EA==}
               dependencies:
          @@ -12497,40 +12313,6 @@ packages:
                 tailwindcss: 3.4.3
               dev: false
           
          -  /tailwindcss@3.2.7(postcss@8.4.21):
          -    resolution: {integrity: sha512-B6DLqJzc21x7wntlH/GsZwEXTBttVSl1FtCzC8WP4oBc/NKef7kaax5jeihkkCEWc831/5NDJ9gRNDK6NEioQQ==}
          -    engines: {node: '>=12.13.0'}
          -    hasBin: true
          -    peerDependencies:
          -      postcss: ^8.0.9
          -    dependencies:
          -      arg: 5.0.2
          -      chokidar: 3.6.0
          -      color-name: 1.1.4
          -      detective: 5.2.1
          -      didyoumean: 1.2.2
          -      dlv: 1.1.3
          -      fast-glob: 3.3.2
          -      glob-parent: 6.0.2
          -      is-glob: 4.0.3
          -      lilconfig: 2.1.0
          -      micromatch: 4.0.7
          -      normalize-path: 3.0.0
          -      object-hash: 3.0.0
          -      picocolors: 1.0.1
          -      postcss: 8.4.21
          -      postcss-import: 14.1.0(postcss@8.4.21)
          -      postcss-js: 4.0.1(postcss@8.4.21)
          -      postcss-load-config: 3.1.4(postcss@8.4.21)
          -      postcss-nested: 6.0.0(postcss@8.4.21)
          -      postcss-selector-parser: 6.1.0
          -      postcss-value-parser: 4.2.0
          -      quick-lru: 5.1.1
          -      resolve: 1.22.8
          -    transitivePeerDependencies:
          -      - ts-node
          -    dev: false
          -
             /tailwindcss@3.4.3:
               resolution: {integrity: sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==}
               engines: {node: '>=14.0.0'}
          @@ -12712,10 +12494,6 @@ packages:
             /ts-interface-checker@0.1.13:
               resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
           
          -  /ts-pattern@4.3.0:
          -    resolution: {integrity: sha512-pefrkcd4lmIVR0LA49Imjf9DYLK8vtWhqBPA3Ya1ir8xCW0O2yjL9dsCVvI7pCodLC5q7smNpEtDR2yVulQxOg==}
          -    dev: false
          -
             /tsconfig-paths@3.15.0:
               resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
               dependencies:
          @@ -12794,21 +12572,6 @@ packages:
                 turbo-windows-arm64: 1.13.4
               dev: true
           
          -  /tw-to-css@0.0.11:
          -    resolution: {integrity: sha512-uIJuEBIwyHzZg9xyGyEgDWHIkbAwEC4bhEHQ4THPuN5SToR7Zlhes5ffMjqtrv+WdtTmudTHTdc9VwUldy0FxQ==}
          -    engines: {node: '>=16.0.0'}
          -    dependencies:
          -      postcss: 8.4.21
          -      postcss-css-variables: 0.18.0(postcss@8.4.21)
          -      tailwindcss: 3.2.7(postcss@8.4.21)
          -    transitivePeerDependencies:
          -      - ts-node
          -    dev: false
          -
          -  /typanion@3.14.0:
          -    resolution: {integrity: sha512-ZW/lVMRabETuYCd9O9ZvMhAh8GslSqaUjxmK/JLPCh6l73CvLBiuXswj/+7LdnWOgYsQ130FqLzFz5aGT4I3Ug==}
          -    dev: false
          -
             /type-check@0.4.0:
               resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
               engines: {node: '>= 0.8.0'}
          @@ -12839,16 +12602,6 @@ packages:
               engines: {node: '>=10'}
               dev: true
           
          -  /type-fest@3.13.0:
          -    resolution: {integrity: sha512-Gur3yQGM9qiLNs0KPP7LPgeRbio2QTt4xXouobMCarR0/wyW3F+F/+OWwshg3NG0Adon7uQfSZBpB46NfhoF1A==}
          -    engines: {node: '>=14.16'}
          -    dev: false
          -
          -  /type-fest@3.13.1:
          -    resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==}
          -    engines: {node: '>=14.16'}
          -    dev: false
          -
             /typed-array-buffer@1.0.2:
               resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
               engines: {node: '>= 0.4'}
          @@ -12957,6 +12710,7 @@ packages:
                 is-plain-obj: 4.1.0
                 trough: 2.2.0
                 vfile: 5.3.7
          +    dev: true
           
             /unified@11.0.4:
               resolution: {integrity: sha512-apMPnyLjAX+ty4OrNap7yumyVAMlKx5IWU2wlzzUdYJO9A8f1p9m/gywF/GM2ZDFcjQPrx59Mc90KwmxsoklxQ==}
          @@ -12968,10 +12722,17 @@ packages:
                 is-plain-obj: 4.1.0
                 trough: 2.2.0
                 vfile: 6.0.1
          -    dev: true
           
          -  /unist-util-generated@2.0.1:
          -    resolution: {integrity: sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==}
          +  /unified@11.0.5:
          +    resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
          +    dependencies:
          +      '@types/unist': 3.0.2
          +      bail: 2.0.2
          +      devlop: 1.1.0
          +      extend: 3.0.2
          +      is-plain-obj: 4.1.0
          +      trough: 2.2.0
          +      vfile: 6.0.1
               dev: false
           
             /unist-util-is@5.2.1:
          @@ -12983,43 +12744,43 @@ packages:
               resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
               dependencies:
                 '@types/unist': 3.0.2
          -    dev: true
          -
          -  /unist-util-position-from-estree@1.1.2:
          -    resolution: {integrity: sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==}
          -    dependencies:
          -      '@types/unist': 2.0.10
          -    dev: false
           
          -  /unist-util-position@4.0.4:
          -    resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==}
          +  /unist-util-position-from-estree@2.0.0:
          +    resolution: {integrity: sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==}
               dependencies:
          -      '@types/unist': 2.0.10
          +      '@types/unist': 3.0.2
               dev: false
           
             /unist-util-position@5.0.0:
               resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
               dependencies:
                 '@types/unist': 3.0.2
          -    dev: true
           
          -  /unist-util-remove-position@4.0.2:
          -    resolution: {integrity: sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==}
          +  /unist-util-remove-position@5.0.0:
          +    resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==}
          +    dependencies:
          +      '@types/unist': 3.0.2
          +      unist-util-visit: 5.0.0
          +    dev: false
          +
          +  /unist-util-remove@3.1.1:
          +    resolution: {integrity: sha512-kfCqZK5YVY5yEa89tvpl7KnBBHu2c6CzMkqHUrlOqaRgGOMp0sMvwWOVrbAtj03KhovQB7i96Gda72v/EFE0vw==}
               dependencies:
                 '@types/unist': 2.0.10
          -      unist-util-visit: 4.1.2
          +      unist-util-is: 5.2.1
          +      unist-util-visit-parents: 5.1.3
               dev: false
           
             /unist-util-stringify-position@3.0.3:
               resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==}
               dependencies:
                 '@types/unist': 2.0.10
          +    dev: true
           
             /unist-util-stringify-position@4.0.0:
               resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
               dependencies:
                 '@types/unist': 3.0.2
          -    dev: true
           
             /unist-util-visit-parents@5.1.3:
               resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==}
          @@ -13032,7 +12793,6 @@ packages:
               dependencies:
                 '@types/unist': 3.0.2
                 unist-util-is: 6.0.0
          -    dev: true
           
             /unist-util-visit@4.1.2:
               resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==}
          @@ -13047,7 +12807,6 @@ packages:
                 '@types/unist': 3.0.2
                 unist-util-is: 6.0.0
                 unist-util-visit-parents: 6.0.1
          -    dev: true
           
             /universal-user-agent@6.0.1:
               resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==}
          @@ -13175,6 +12934,11 @@ packages:
               hasBin: true
               dev: false
           
          +  /uuid@9.0.1:
          +    resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
          +    hasBin: true
          +    dev: false
          +
             /uvu@0.5.6:
               resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==}
               engines: {node: '>=8'}
          @@ -13184,6 +12948,7 @@ packages:
                 diff: 5.2.0
                 kleur: 4.1.5
                 sade: 1.8.1
          +    dev: true
           
             /validate-npm-package-license@3.0.4:
               resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
          @@ -13210,6 +12975,7 @@ packages:
               dependencies:
                 '@types/unist': 2.0.10
                 vfile: 5.3.7
          +    dev: true
           
             /vfile-location@5.0.2:
               resolution: {integrity: sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==}
          @@ -13218,18 +12984,25 @@ packages:
                 vfile: 6.0.1
               dev: true
           
          +  /vfile-matter@5.0.0:
          +    resolution: {integrity: sha512-jhPSqlj8hTSkTXOqyxbUeZAFFVq/iwu/jukcApEqc/7DOidaAth6rDc0Zgg0vWpzUnWkwFP7aK28l6nBmxMqdQ==}
          +    dependencies:
          +      vfile: 6.0.1
          +      yaml: 2.4.3
          +    dev: false
          +
             /vfile-message@3.1.4:
               resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==}
               dependencies:
                 '@types/unist': 2.0.10
                 unist-util-stringify-position: 3.0.3
          +    dev: true
           
             /vfile-message@4.0.2:
               resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==}
               dependencies:
                 '@types/unist': 3.0.2
                 unist-util-stringify-position: 4.0.0
          -    dev: true
           
             /vfile@5.3.7:
               resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==}
          @@ -13238,6 +13011,7 @@ packages:
                 is-buffer: 2.0.5
                 unist-util-stringify-position: 3.0.3
                 vfile-message: 3.1.4
          +    dev: true
           
             /vfile@6.0.1:
               resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==}
          @@ -13245,7 +13019,6 @@ packages:
                 '@types/unist': 3.0.2
                 unist-util-stringify-position: 4.0.0
                 vfile-message: 4.0.2
          -    dev: true
           
             /victory-vendor@36.9.2:
               resolution: {integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==}
          @@ -13284,6 +13057,7 @@ packages:
           
             /web-namespaces@2.0.1:
               resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==}
          +    dev: true
           
             /web-streams-polyfill@3.3.3:
               resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
          @@ -13464,16 +13238,17 @@ packages:
             /yallist@4.0.0:
               resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
           
          -  /yaml@1.10.2:
          -    resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
          -    engines: {node: '>= 6'}
          -    dev: false
          -
             /yaml@2.4.3:
               resolution: {integrity: sha512-sntgmxj8o7DE7g/Qi60cqpLBA3HG3STcDA0kO+WfB05jEKhZMbY7umNm2rBpQvsmZ16/lPXCJGW2672dgOUkrg==}
               engines: {node: '>= 14'}
               hasBin: true
           
          +  /yaml@2.5.0:
          +    resolution: {integrity: sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==}
          +    engines: {node: '>= 14'}
          +    hasBin: true
          +    dev: false
          +
             /yargs-parser@20.2.9:
               resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
               engines: {node: '>=10'}
          
          From 65bc2e236904c6f80cd7b8e7f877ff57c64cfdcf Mon Sep 17 00:00:00 2001
          From: meglerhagen 
          Date: Mon, 29 Jul 2024 19:18:38 +0200
          Subject: [PATCH 6/6] build issue
          
          ---
           apps/www/.content-collections/generated/index.js | 2 +-
           apps/www/src/app/sitemap.ts                      | 3 +++
           2 files changed, 4 insertions(+), 1 deletion(-)
          
          diff --git a/apps/www/.content-collections/generated/index.js b/apps/www/.content-collections/generated/index.js
          index 312279e..d4369f2 100644
          --- a/apps/www/.content-collections/generated/index.js
          +++ b/apps/www/.content-collections/generated/index.js
          @@ -1,4 +1,4 @@
          -// generated by content-collections at Mon Jul 29 2024 19:05:27 GMT+0200 (Central European Summer Time)
          +// generated by content-collections at Mon Jul 29 2024 19:17:30 GMT+0200 (Central European Summer Time)
           
           import allDocs from "./allDocs.js";
           import allMetas from "./allMetas.js";
          diff --git a/apps/www/src/app/sitemap.ts b/apps/www/src/app/sitemap.ts
          index 38417b7..133ed29 100644
          --- a/apps/www/src/app/sitemap.ts
          +++ b/apps/www/src/app/sitemap.ts
          @@ -15,4 +15,7 @@ export default async function sitemap(): Promise {
               },
               // Add other static pages here if necessary
             ]
          +
          +  // Return the sitemap array
          +  return staticPagesSitemap
           }