Skip to content

Commit

Permalink
update quickstart links to guides
Browse files Browse the repository at this point in the history
  • Loading branch information
john-rock committed Oct 27, 2023
1 parent b08bf5a commit 26612f0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ var siteSettings = {
to: '/guides/best-practices',
},
{
label: "Quickstarts",
to: "/quickstarts",
label: "Guides",
to: "/guides",
},
{
label: "Developer Blog",
Expand Down
2 changes: 1 addition & 1 deletion website/plugins/buildQuickstartIndexPage/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion website/src/components/quickstartGuideList/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.'


Expand Down
2 changes: 1 addition & 1 deletion website/src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function Home() {
<Card
title="Getting started guide"
body="Learn how to set up dbt and build your first models. You will also test and document your project, and schedule a job."
link="/quickstarts"
link="/guides"
icon="book"
/>
</div>
Expand Down

0 comments on commit 26612f0

Please sign in to comment.