diff --git a/src/components/Dashboard/DashboardData.js b/src/components/Dashboard/DashboardData.js index cb98db74..c3fd9231 100644 --- a/src/components/Dashboard/DashboardData.js +++ b/src/components/Dashboard/DashboardData.js @@ -40,7 +40,7 @@ function DashboardData() { createTiles.PHRASE, { icon: 'Phrase', - name: 'Edit Words and Phrases', + name: 'Edit words and phrases', description: 'Edit the words and phrases in your dictionary', href: `edit/entries?${TYPES}=${TYPE_WORD},${TYPE_PHRASE}`, iconColor: 'storyText', diff --git a/src/components/DashboardCreate/DashboardCreateData.js b/src/components/DashboardCreate/DashboardCreateData.js index 45026b3c..38025b6d 100644 --- a/src/components/DashboardCreate/DashboardCreateData.js +++ b/src/components/DashboardCreate/DashboardCreateData.js @@ -16,7 +16,7 @@ function DashboardCreateData({ urlPrefix = '' }) { const createTiles = { WORD: { icon: 'Word', - name: 'Create a Word', + name: 'Create a word', description: 'Add a new word to your dictionary', href: addUrlPrefix('word'), iconColor: 'wordText', @@ -24,7 +24,7 @@ function DashboardCreateData({ urlPrefix = '' }) { }, PHRASE: { icon: 'Phrase', - name: 'Create a Phrase', + name: 'Create a phrase', description: 'Add a new phrase to your dictionary', href: addUrlPrefix('phrase'), iconColor: 'phraseText', @@ -32,7 +32,7 @@ function DashboardCreateData({ urlPrefix = '' }) { }, SONG: { icon: 'Song', - name: 'Create a Song', + name: 'Create a song', description: 'Add a new song to your site', href: addUrlPrefix('song'), iconColor: 'songText', @@ -40,7 +40,7 @@ function DashboardCreateData({ urlPrefix = '' }) { }, STORY: { icon: 'Story', - name: 'Create a Story', + name: 'Create a story', description: 'Add a new story to your site', href: addUrlPrefix('story'), iconColor: 'storyText', @@ -48,7 +48,7 @@ function DashboardCreateData({ urlPrefix = '' }) { }, SPEAKER: { icon: 'Speak', - name: 'Add a Speaker', + name: 'Add a speaker', description: 'Add a new speaker to your site', href: addUrlPrefix('speaker'), iconColor: 'storyText', @@ -56,7 +56,7 @@ function DashboardCreateData({ urlPrefix = '' }) { }, CATEGORY: { icon: 'Category', - name: 'Add a Category', + name: 'Add a category', description: 'Add a new category to your dictionary', href: addUrlPrefix('category'), iconColor: 'tertiaryB', @@ -64,7 +64,7 @@ function DashboardCreateData({ urlPrefix = '' }) { }, WIDGET: { icon: 'Widget', - name: 'Create a Widget', + name: 'Create a widget', description: "Add a new widget to your site's collection", href: addUrlPrefix('widget'), iconColor: 'songText', @@ -72,7 +72,7 @@ function DashboardCreateData({ urlPrefix = '' }) { }, PAGE: { icon: 'WebPages', - name: 'Create a Custom Page', + name: 'Create a custom page', description: 'Add a new page to your site', href: addUrlPrefix('page'), iconColor: 'tertiaryA', diff --git a/src/components/DashboardEdit/DashboardEditData.js b/src/components/DashboardEdit/DashboardEditData.js index 852d947a..d6d92371 100644 --- a/src/components/DashboardEdit/DashboardEditData.js +++ b/src/components/DashboardEdit/DashboardEditData.js @@ -23,7 +23,7 @@ function DashboardEditData({ urlPrefix = '' }) { const editTiles = { WORDS: { icon: 'Word', - name: 'Edit Words', + name: 'Edit words', description: 'Edit the words in your dictionary', href: addUrlPrefix(`entries?${TYPES}=${TYPE_WORD}`), iconColor: 'wordText', @@ -31,7 +31,7 @@ function DashboardEditData({ urlPrefix = '' }) { }, PHRASES: { icon: 'Phrase', - name: 'Edit Phrases', + name: 'Edit phrases', description: 'Edit the phrases in your dictionary', href: addUrlPrefix(`entries?${TYPES}=${TYPE_PHRASE}`), iconColor: 'phraseText', @@ -39,7 +39,7 @@ function DashboardEditData({ urlPrefix = '' }) { }, SONGS: { icon: 'Song', - name: 'Edit Songs', + name: 'Edit songs', description: 'Edit the songs on your site', href: addUrlPrefix(`entries?${TYPES}=${TYPE_SONG}`), iconColor: 'songText', @@ -47,7 +47,7 @@ function DashboardEditData({ urlPrefix = '' }) { }, STORIES: { icon: 'Story', - name: 'Edit Stories', + name: 'Edit stories', description: 'Edit the stories on your site', href: addUrlPrefix(`entries?${TYPES}=${TYPE_STORY}`), iconColor: 'storyText', @@ -55,7 +55,7 @@ function DashboardEditData({ urlPrefix = '' }) { }, SPEAKERS: { icon: 'Speak', - name: 'Edit Speakers', + name: 'Edit speakers', description: 'Edit the speakers on your site', href: addUrlPrefix('speakers'), iconColor: 'storyText', @@ -63,7 +63,7 @@ function DashboardEditData({ urlPrefix = '' }) { }, CATEGORIES: { icon: 'Categories', - name: 'Edit Categories', + name: 'Edit categories', description: 'Edit the categories for words and phrases in your dictionary', href: addUrlPrefix('categories'), @@ -72,7 +72,7 @@ function DashboardEditData({ urlPrefix = '' }) { }, WIDGETS: { icon: 'Widget', - name: 'Edit Widgets', + name: 'Edit widgets', description: 'Manage and edit the widgets on your site', href: addUrlPrefix('widgets'), iconColor: 'songText', @@ -80,7 +80,7 @@ function DashboardEditData({ urlPrefix = '' }) { }, PAGES: { icon: 'WebPages', - name: 'Edit Custom Pages', + name: 'Edit custom pages', description: 'Manage and edit the custom pages on your site', href: addUrlPrefix('pages'), iconColor: 'tertiaryA', @@ -88,7 +88,7 @@ function DashboardEditData({ urlPrefix = '' }) { }, HOMEPAGE: { icon: 'Home', - name: 'Edit Homepage', + name: 'Edit homepage', description: 'Edit the main homepage for your site', href: addUrlPrefix('home'), iconColor: 'wordText', @@ -96,7 +96,7 @@ function DashboardEditData({ urlPrefix = '' }) { }, ALPHABET: { icon: 'Alphabet', - name: 'Edit your Alphabet', + name: 'Edit your alphabet', description: 'Update media and linked content for your alphabet characters', href: addUrlPrefix('alphabet'), diff --git a/src/components/DashboardHome/DashboardHomePresentation.js b/src/components/DashboardHome/DashboardHomePresentation.js index 62ead3f3..93accaf0 100644 --- a/src/components/DashboardHome/DashboardHomePresentation.js +++ b/src/components/DashboardHome/DashboardHomePresentation.js @@ -43,7 +43,7 @@ function DashboardHomePresentation({ site, tiles, currentUser }) {

- Quick Links + Quick links