diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js index ce81d614c65..ddb419ac4f7 100644 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -134,8 +134,8 @@ var siteSettings = { to: '/guides/best-practices', }, { - label: "Quickstarts", - to: "/quickstarts", + label: "Guides", + to: "/guides", }, { label: "Developer Blog", diff --git a/website/plugins/buildQuickstartIndexPage/index.js b/website/plugins/buildQuickstartIndexPage/index.js index 5139ca3bcd7..368a717a6a5 100644 --- a/website/plugins/buildQuickstartIndexPage/index.js +++ b/website/plugins/buildQuickstartIndexPage/index.js @@ -42,7 +42,7 @@ module.exports = function buildQuickstartIndexPage() { async contentLoaded({content, actions}) { const {createData, addRoute} = actions; - // Sort quickstarts by platform if available + // Sort guides by platform if available const contentSorted = content.sort((a, b) => { if(!a?.data?.platform || !b?.data?.platform) return diff --git a/website/src/components/quickstartGuideList/index.js b/website/src/components/quickstartGuideList/index.js index 55d0b24176e..5d7c8f4c498 100644 --- a/website/src/components/quickstartGuideList/index.js +++ b/website/src/components/quickstartGuideList/index.js @@ -9,7 +9,7 @@ import styles from './styles.module.css'; import { SelectDropdown } from '../selectDropdown'; import SearchInput from '../searchInput'; -const quickstartTitle = 'Quickstarts' +const quickstartTitle = 'Guides' const quickstartDescription = 'dbt Core is a powerful open-source tool for data transformations and dbt Cloud is the fastest and most reliable way to deploy your dbt jobs. With the help of a sample project, learn how to quickly start using dbt and one of the most common data platforms.' diff --git a/website/src/pages/index.js b/website/src/pages/index.js index b5b3957e9e4..cee3796133f 100644 --- a/website/src/pages/index.js +++ b/website/src/pages/index.js @@ -78,7 +78,7 @@ function Home() {