Skip to content

Commit 393c004

Browse files
committed
docs: update pages endpoint
1 parent cc101c6 commit 393c004

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/docs/pages/cloud.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default function Cloud() {
1717
description="Build and ship with our cloud — everything you need is ready out of the box."
1818
actions={[
1919
{ label: 'Start free ›', href: 'https://app.composify.cloud', primary: true },
20-
{ label: 'Explore features →', href: '#features', primary: false },
20+
{ label: 'Explore features →', href: '/cloud/#features', primary: false },
2121
]}
2222
/>
2323
<PriceCalculator />

packages/docs/pages/docs/tutorial/cloud.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export default async function Page({
5555
}) {
5656
const { slug } = await params;
5757

58-
const url = `https://pages.composify.net/[org public id]/${slug}`;
58+
const url = `https://pages.composify.cloud/[org public id]/${slug}`;
5959
const res = await fetch(url, {
6060
cache: 'no-store',
6161
});
@@ -83,7 +83,7 @@ import { useLoaderData } from 'react-router';
8383
export async function loader({ params }: LoaderFunctionArgs) {
8484
const slug = params.slug ?? '';
8585

86-
const url = `https://pages.composify.net/[org public id]/${slug}`;
86+
const url = `https://pages.composify.cloud/[org public id]/${slug}`;
8787
const res = await fetch(url, {
8888
cache: 'no-store',
8989
});

0 commit comments

Comments
 (0)