mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
fix: documentation build
This commit is contained in:
@ -1,7 +1,7 @@
|
|||||||
import { Link } from 'react-router';
|
import Link from 'next/link';
|
||||||
|
|
||||||
import { Button } from '../primitives/button';
|
import { Button } from '@documenso/ui/primitives/button';
|
||||||
import { Card, CardContent } from '../primitives/card';
|
import { Card, CardContent } from '@documenso/ui/primitives/card';
|
||||||
|
|
||||||
type CallToActionProps = {
|
type CallToActionProps = {
|
||||||
className?: string;
|
className?: string;
|
||||||
@ -25,7 +25,7 @@ export const CallToAction = ({ className, utmSource = 'generic-cta' }: CallToAct
|
|||||||
size="lg"
|
size="lg"
|
||||||
asChild
|
asChild
|
||||||
>
|
>
|
||||||
<Link to={`https://app.documenso.com/signup?utm_source=${utmSource}`} target="_blank">
|
<Link href={`https://app.documenso.com/signup?utm_source=${utmSource}`} target="_blank">
|
||||||
Get started
|
Get started
|
||||||
</Link>
|
</Link>
|
||||||
</Button>
|
</Button>
|
||||||
@ -5,7 +5,7 @@ description: Learn how to self-host Documenso on your server or cloud infrastruc
|
|||||||
|
|
||||||
import { Callout, Steps } from 'nextra/components';
|
import { Callout, Steps } from 'nextra/components';
|
||||||
|
|
||||||
import { CallToAction } from '@documenso/ui/components/call-to-action';
|
import { CallToAction } from '../../../components/call-to-action';
|
||||||
|
|
||||||
# Self Hosting
|
# Self Hosting
|
||||||
|
|
||||||
|
|||||||
@ -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.
|
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
|
# Getting Started with Self-Hosting
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user