Skip to content

Fixing URLs within editor interface for new docs structure #8762

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export const ImportTemplate = () => {
<a
target="_blank"
rel="noreferrer noopener"
href={docsUrl('/learn/sandboxes/synced-templates')}
href={docsUrl('/learn/vm-sandboxes/synced-templates#what-are-synced-templates')}
>
here
</a>
Expand Down
18 changes: 4 additions & 14 deletions packages/app/src/app/components/WorkspaceSetup/steps/FAQ.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,25 +148,15 @@ const content = {
question:
'What will happen when I hit my workspace member limit on a Pro plan? Will I have the option to pay for more members individually?',
answer:
'If you hit the workspace member limit, please reach out to our <a href=mailto:[email protected]>customer team</a> to discuss a custom plan to suit your needs.',
'If you hit the workspace member limit, please reach out to our <a href=https://www.together.ai/contact-sales>sales team</a> to discuss a custom plan to suit your needs.',
},
{
question:
'I’m currently on a plan with annual billing. Do your new plans have an annual option?',
answer:
'We can offer annual billing for custom <a href=https://codesandbox.io/enterprise>Enterprise plans</a>. However, at the moment, our new Pro plan is only available with monthly billing. We will introduce annual billing in the near future. ',
},
{
question: 'My Sandbox or Devbox is frozen. What does that mean?',
answer: `In Devboxes and repositories, the VM will become frozen if the workspace does not have enough available credits to run a VM. You may encounter a frozen state if:
question: 'My Sandbox is frozen. What does that mean?',
answer: `In VM Sandboxes and repositories, the VM will become frozen if the workspace does not have enough available credits to run a VM. You may encounter a frozen state if:
- you are on a Free workspace and have run out of credits;
- you are on a Pro workspace but your credit spend has hit the spending limit.

To get out of the frozen state, you can either <a href=/upgrade>upgrade</a> to Pro (if you are on Free) or adjust your spending limit. Otherwise, you must wait until the start of the next billing cycle for your credits to renew.

You may also experience a similar “frozen” state with Sandboxes. When the Sandbox limit included in your workspace is exceeded, Sandboxes over the limit will become read-only.

To regain edit access to Sandboxes over the limit, you can either <a href=/upgrade>upgrade</a> to Pro (if you are on Free) or increase your Sandbox limit with <a href=/docs/learn/plans/plans#add-ons>add-ons</a>.`,
To get out of the frozen state, you can either <a href=/upgrade>upgrade</a> to Pro (if you are on Free) or adjust your spending limit. Otherwise, you must wait until the start of the next billing cycle for your credits to renew.`,
},
{
question: 'What is your cancelation and refund policy?',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ const FeaturesComparison: React.FC<{ plans: PricingPlanFeatures[] }> = ({
<a
target="_blank"
rel="noreferrer"
href="https://codesandbox.io/docs/learn/devboxes/editors?tab=sandbox"
href="https://codesandbox.io/docs/learn/browser-sandboxes/overview"
>
Learn more about Sandboxes.
</a>
Expand All @@ -717,7 +717,7 @@ const FeaturesComparison: React.FC<{ plans: PricingPlanFeatures[] }> = ({
<a
target="_blank"
rel="noreferrer"
href="https://codesandbox.io/docs/learn/devboxes/overview?tab=devbox#difference-between-devboxes--sandboxes"
href="https://codesandbox.io/docs/learn/vm-sandboxes/overview"
>
Learn more about Devboxes.
</a>
Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/app/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export const DIALOG_TRANSITION_DURATION = 0.25;
export const DIALOG_WIDTH = 420;
export const REPLY_TRANSITION_DELAY = 0.5;
export const ORGANIZATION_CONTACT_LINK =
'https://webforms.pipedrive.com/f/72gS7iXoP8qjL8Ku9HZQcN5UKpUpZkgKRCjhbqREjCOYyBgzrCKCr7Mys5AyczOHBN';
'https://www.together.ai/contact-sales';

export const CSB_FRIENDS_LINK =
'https://codesandbox.io/docs/learn/plans/codesandbox-friends';
2 changes: 1 addition & 1 deletion packages/app/src/app/pages/GitHub/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export const GitHub: FunctionComponent = withTheme(({ theme }) => {
repository.
<br />
<a
href="/docs/importing#import-from-github"
href="/docs/learn/repositories/getting-started/repo-import"
rel="noopener norefereer"
target="_blank"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const video = {
const thumbless = {
title: 'Uploading Static Files',
url:
'https://codesandbox.io/docs/learn/sandboxes/editors#uploading-static-files',
'https://codesandbox.io/docs/learn/vm-sandboxes/upload',
thumbnail: 'https://malformed-url.com',
};

Expand Down
Loading