fix: minor updates

This commit is contained in:
Lucas Smith
2024-03-12 01:52:16 +00:00
parent 9ac346443d
commit f6c2b6c1c5
3 changed files with 15 additions and 8 deletions

View File

@ -7,7 +7,7 @@ import { ChevronLeft } from 'lucide-react';
import type { MDXComponents } from 'mdx/types';
import { useMDXComponent } from 'next-contentlayer/hooks';
import CTA from '~/components/(marketing)/CTA';
import { CallToAction } from '~/components/(marketing)/call-to-action';
export const dynamic = 'force-dynamic';
@ -93,7 +93,8 @@ export default function BlogPostPage({ params }: { params: { post: string } }) {
Back to all posts
</Link>
</article>
{post.cta && <CTA />}
{post.cta && <CallToAction className="mt-8" utmSource={`blog__${params.post}`} />}
</div>
);
}

View File

@ -7,7 +7,7 @@ import { getUserMonthlyGrowth } from '@documenso/lib/server-only/user/get-user-m
import { FUNDING_RAISED } from '~/app/(marketing)/open/data';
import { MetricCard } from '~/app/(marketing)/open/metric-card';
import { SalaryBands } from '~/app/(marketing)/open/salary-bands';
import CTA from '~/components/(marketing)/CTA';
import { CallToAction } from '~/components/(marketing)/call-to-action';
import { BarMetric } from './bar-metrics';
import { CapTable } from './cap-table';
@ -252,7 +252,8 @@ export default async function OpenPage() {
</div>
</div>
</div>
<CTA />
<CallToAction className="mt-12" utmSource="open-page" />
</div>
);
}