diff --git a/docs/tutorials/README.mdx b/docs/tutorials/README.mdx index f03a4754..6c97a31e 100644 --- a/docs/tutorials/README.mdx +++ b/docs/tutorials/README.mdx @@ -7,8 +7,6 @@ sidebar_custom_props: label: Tutorials --- -import DocCardList from "@theme/DocCardList"; - :::danger These are not the droids you're looking for This page has been migrated to the Stellar Developers documentation. Please [click here](https://developers.stellar.org/docs/smart-contracts/example-contracts) for the most up-to-date information @@ -17,6 +15,4 @@ This page has been migrated to the Stellar Developers documentation. Please [cli The Soroban team has put together a large collection of [example contracts] to demonstrate use of the Soroban smart contracts platform. For many of these example contracts, we've written an accompanying "tutorial" that will walk you through the example contracts and describe a bit more about their design. You can think of these "tutorials" as example contracts that end with a deployable smart contract. You can use the provided filters to find a relevant tutorial for your experience level. - - [example contracts]: https://github.com/stellar/soroban-examples diff --git a/src/theme/DocItem/Footer/index.js b/src/theme/DocItem/Footer/index.js index d3c7981d..80f671ff 100644 --- a/src/theme/DocItem/Footer/index.js +++ b/src/theme/DocItem/Footer/index.js @@ -5,7 +5,6 @@ import {useDoc} from '@docusaurus/theme-common/internal'; import LastUpdated from '@theme/LastUpdated'; import EditThisPage from '@theme/EditThisPage'; import TagsListInline from '@theme/TagsListInline'; -import DocCardList from '@theme/DocCardList'; import ReaderFeedback from '@site/src/components/ReaderFeedback'; import styles from './styles.module.css'; @@ -52,18 +51,11 @@ export default function DocItemFooter() { const canDisplayTagsRow = tags.length > 0; const canDisplayEditMetaRow = !!(editUrl || lastUpdatedAt || lastUpdatedBy); const canDisplayFooter = canDisplayTagsRow || canDisplayEditMetaRow; - const canDisplayDocCardsOnGuide = metadata.permalink.startsWith('/docs/guides') if (!canDisplayFooter) { return null; } return ( <> - {canDisplayDocCardsOnGuide && -
- {metadata.permalink !== '/docs/guides/' &&

Guides in this category:

} - -
- }