Skip to content

Commit

Permalink
fixes to sentence case (#5729)
Browse files Browse the repository at this point in the history
this pr updates some words/headers to sentence case (not title case) to
match our style guide.
  • Loading branch information
mirnawong1 authored Jul 3, 2024
1 parent 2f0e13a commit 93ecd81
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
18 changes: 9 additions & 9 deletions website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,20 +115,20 @@ var siteSettings = {
position: "left",
items: [
{
label: "Product Docs",
label: "Product docs",
to: "/docs/introduction",
activeBaseRegex: "docs/(?!(dbt-cloud))",
},
{
label: "API Docs",
label: "API docs",
to: "/docs/dbt-cloud-apis/overview",
},
{
label: "Best Practices",
label: "Best practices",
to: "/best-practices",
},
{
label: "Release Notes",
label: "Release notes",
to: "/docs/dbt-versions/dbt-cloud-release-notes",
},
],
Expand All @@ -153,11 +153,11 @@ var siteSettings = {
href: "https://learn.getdbt.com",
},
{
label: "Best Practices",
label: "Best practices",
to: "/best-practices",
},
{
label: "Developer Blog",
label: "Developer blog",
to: "/blog",
},
{
Expand All @@ -171,15 +171,15 @@ var siteSettings = {
position: "right",
items: [
{
label: "Join the Community",
label: "Join the dbt Community",
to: "/community/join",
},
{
label: "Become a contributor",
to: "/community/contribute",
},
{
label: "Community Forum",
label: "Community forum",
to: "/community/forum",
},
{
Expand Down Expand Up @@ -250,7 +250,7 @@ var siteSettings = {
blog: {
blogTitle: "Developer Blog | dbt Developer Hub",
blogDescription:
"Find tutorials, product updates, and developer insights in the dbt Developer Blog.",
"Find tutorials, product updates, and developer insights in the dbt Developer blog.",
postsPerPage: 20,
blogSidebarTitle: "Recent posts",
blogSidebarCount: 5,
Expand Down
4 changes: 2 additions & 2 deletions website/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ const sidebarSettings = {
},
{
type: "category",
label: "dbt Cloud Release Notes",
label: "dbt Cloud release notes",
link: {
type: "doc",
id: "docs/dbt-versions/dbt-cloud-release-notes",
Expand Down Expand Up @@ -1243,7 +1243,7 @@ const sidebarSettings = {
},
{
type: "link",
label: "Community Forum",
label: "Community forum",
href: "/community/forum",
},
{
Expand Down
4 changes: 2 additions & 2 deletions website/src/pages/community/events.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ function Events() {
return (
<Layout>
<Head>
<title>dbt Community Events</title>
<title>dbt Community events</title>
<meta name="description" content="Join us for upcoming meetups, conferences, or office hours with the dbt Labs team." />
</Head>
<div className="container events-page">
<section>
<h1>Upcoming dbt Community Events</h1>
<h1>Upcoming dbt Community events</h1>
<p>Join us for upcoming meetups, conferences, or office hours with the dbt Labs team. Events are online unless explicitly listed as in-person.</p>

<EventsFeed />
Expand Down
4 changes: 2 additions & 2 deletions website/src/pages/community/forum.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ function Events() {
</Head>
<section className='discourse-forum-page'>
<div className='container'>
<h1>dbt Community Forum</h1>
<p>The dbt Community Forum is the preferred platform for support questions as well as a space for long-lived discussions about dbt, analytics engineering, and the analytics profession. It's a place for us to build up a long-lasting knowledge base around the common challenges, opportunities, and patterns we work with every day.</p>
<h1>dbt Community forum</h1>
<p>The dbt Community forum is the preferred platform for support questions as well as a space for long-lived discussions about dbt, analytics engineering, and the analytics profession. It's a place for us to build up a long-lasting knowledge base around the common challenges, opportunities, and patterns we work with every day.</p>
<DiscourseFeed title='Unanswered Help Questions' category='help' status='unsolved' link_text='See open topics' link_href='https://discourse.getdbt.com/c/help/19' show_cta={true} />
<DiscourseFeed title='In-Depth Discussions' category='discussions' link_text='See discussions' link_href='https://discourse.getdbt.com/c/discussions/21' show_cta={true} />
<DiscourseFeed title='Show and Tell' category='show-and-tell' link_text='See more topics' link_href='https://discourse.getdbt.com/c/show-and-tell/22' show_cta={true} />
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 @@ -154,7 +154,7 @@ function Home() {
</div>
<div>
<Card
title="Community Forum"
title="Community forum"
body="Get help and swap knowledge in the async forum."
link="/community/forum"
icon="discussions"
Expand Down

0 comments on commit 93ecd81

Please sign in to comment.