diff --git a/docs/tutorialkit.dev/src/content/docs/reference/configuration.mdx b/docs/tutorialkit.dev/src/content/docs/reference/configuration.mdx
index 5e6efbdab..a084ea0c1 100644
--- a/docs/tutorialkit.dev/src/content/docs/reference/configuration.mdx
+++ b/docs/tutorialkit.dev/src/content/docs/reference/configuration.mdx
@@ -55,6 +55,13 @@ type I18nText = {
*/
editPageText?: string
+ /**
+ * Text of the WebContainer link.
+ *
+ * @default 'Powered by WebContainer'
+ */
+ webcontainerLinkText?: string,
+
/**
* Text shown when there are no previews or steps to show in the prepare environment section.
*
diff --git a/docs/tutorialkit.dev/src/content/docs/reference/images/theming-editpagelink.png b/docs/tutorialkit.dev/src/content/docs/reference/images/theming-editpagelink.png
deleted file mode 100644
index c3d28d409..000000000
Binary files a/docs/tutorialkit.dev/src/content/docs/reference/images/theming-editpagelink.png and /dev/null differ
diff --git a/docs/tutorialkit.dev/src/content/docs/reference/theming.mdx b/docs/tutorialkit.dev/src/content/docs/reference/theming.mdx
index 014c35e42..f8ea1fe63 100644
--- a/docs/tutorialkit.dev/src/content/docs/reference/theming.mdx
+++ b/docs/tutorialkit.dev/src/content/docs/reference/theming.mdx
@@ -48,12 +48,22 @@ These tokens can be used to style the colors of the tutorial on a high level. Fo
| `--tk-elements-app-textColor` | The text color of the TutorialKit app. |
| `--tk-elements-app-backgroundColor` | The background color of the TutorialKit app. |
| `--tk-elements-app-borderColor` | The border color of the TutorialKit app. |
-| `--tk-elements-app-linkColor` | The link color of the TutorialKit app. |
If you want to start with a `theme.css` file that includes all the available CSS variables you can use the following snippet:
+### Links
+
+Tokens used by links.
+
+| Token | Description |
+| ---------------------------------------- | ---------------------------------------------------- |
+| `--tk-elements-link-primaryColor` | The text color of the primary links. |
+| `--tk-elements-link-primaryColorHover` | The text color of the primary links when hovering. |
+| `--tk-elements-link-secondaryColor` | The text color of the secondary links. |
+| `--tk-elements-link-secondaryColorHover` | The text color of the secondary links when hovering. |
+
### Content
The content refers to the main part of the lesson that contains the text and images.
@@ -316,20 +326,6 @@ The navigation cards are the cards at the bottom of a lesson to navigate to the
| `--tk-elements-navCard-iconColor` | The icon color of the navigation card. |
| `--tk-elements-navCard-iconColorHover` | The icon color of the navigation card when hovering. |
-### Edit Page Link
-
-The edit page link is shown above the navigation cards when configured by [`editPageLink` option](/reference/configuration/#editpagelink).
-
-
-
-| Token | Description |
-| ------------------------------------------- | --------------------------------------------------- |
-| `--tk-elements-editPageLink-textColor` | The text color of the edit page link |
-| `--tk-elements-editPageLink-textColorHover` | The text color of the edit page link when hovering. |
-| `--tk-elements-editPageLink-iconColor` | The icon color of the edit page link |
-| `--tk-elements-editPageLink-iconColorHover` | The icon color of the edit page link when hovering |
-| `--tk-elements-editPageLink-borderColor` | The border color of the edit page link |
-
### Breadcrumbs
The breadcrumbs are the navigation elements that show the path of the current lesson. The breadcrumbs are divided into multiple parts.
diff --git a/packages/astro/src/default/components/TutorialContent.astro b/packages/astro/src/default/components/TutorialContent.astro
index 49c85b098..7a49c1a8b 100644
--- a/packages/astro/src/default/components/TutorialContent.astro
+++ b/packages/astro/src/default/components/TutorialContent.astro
@@ -18,12 +18,12 @@ const { Markdown, editPageLink, prev, next } = lesson;
{
editPageLink && (
-