diff --git a/packages/ui/components/call-to-action.tsx b/apps/documentation/components/call-to-action.tsx similarity index 82% rename from packages/ui/components/call-to-action.tsx rename to apps/documentation/components/call-to-action.tsx index 34fd87ae1..132e172af 100644 --- a/packages/ui/components/call-to-action.tsx +++ b/apps/documentation/components/call-to-action.tsx @@ -1,7 +1,7 @@ -import { Link } from 'react-router'; +import Link from 'next/link'; -import { Button } from '../primitives/button'; -import { Card, CardContent } from '../primitives/card'; +import { Button } from '@documenso/ui/primitives/button'; +import { Card, CardContent } from '@documenso/ui/primitives/card'; type CallToActionProps = { className?: string; @@ -25,7 +25,7 @@ export const CallToAction = ({ className, utmSource = 'generic-cta' }: CallToAct size="lg" asChild > - + Get started diff --git a/apps/documentation/pages/developers/self-hosting/how-to.mdx b/apps/documentation/pages/developers/self-hosting/how-to.mdx index 291cb02fc..f327a55a5 100644 --- a/apps/documentation/pages/developers/self-hosting/how-to.mdx +++ b/apps/documentation/pages/developers/self-hosting/how-to.mdx @@ -5,7 +5,7 @@ description: Learn how to self-host Documenso on your server or cloud infrastruc import { Callout, Steps } from 'nextra/components'; -import { CallToAction } from '@documenso/ui/components/call-to-action'; +import { CallToAction } from '../../../components/call-to-action'; # Self Hosting diff --git a/apps/documentation/pages/developers/self-hosting/index.mdx b/apps/documentation/pages/developers/self-hosting/index.mdx index b4aefb848..0da06a66b 100644 --- a/apps/documentation/pages/developers/self-hosting/index.mdx +++ b/apps/documentation/pages/developers/self-hosting/index.mdx @@ -3,7 +3,7 @@ title: Getting Started with Self-Hosting description: A step-by-step guide to setting up and hosting your own Documenso instance. --- -import { CallToAction } from '@documenso/ui/components/call-to-action'; +import { CallToAction } from '../../../components/call-to-action'; # Getting Started with Self-Hosting