diff --git a/index.html b/index.html
index 10a3814..71c2fbd 100644
--- a/index.html
+++ b/index.html
@@ -3,7 +3,7 @@
- DJS Consulting
+ Bit Badger Solutions
diff --git a/package.json b/package.json
index ce84476..ea7c851 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
- "name": "djs-consulting",
+ "name": "bit-badger-solutions",
"version": "1.0.0",
- "description": "DJS Consulting Main Web Site",
+ "description": "Bit Badger Solutions Main Web Site",
"author": "Daniel J. Summers ",
"private": true,
"scripts": {
diff --git a/src/App.vue b/src/App.vue
index 99e4850..2588240 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,18 +1,19 @@
#app
header
- router-link(to="/"): img(src="/static/djs-consulting.png" alt="DJS Consulting" title="DJS Consulting")
- img(src="/static/slogan.png" alt="Your Web Design, Hosting, and Application Solution Source"
- title="Your web design, hosting, and application solution source!")
- span
+ router-link(to='/')
+ img(src='/static/bitbadger.png'
+ alt='A cartoon badger looking at a computer screen, with his paw on a mouse'
+ title='Bit Badger Solutions')
+ router-link(to='/') Bit Badger Solutions
#content
router-view
footer
span.
- A #[strong: router-link(to="/") DJS Consulting] original design
- span(style="flex-grow:3;")
+ A #[strong: router-link(to='/') Bit Badger Solutions] original design
+ span(style='flex-grow:3;')
span.
- Secured by #[strong: a(href="//letsencrypt.org") Let's Encrypt]
+ Secured by #[strong: a(href='//letsencrypt.org') Let's Encrypt]
diff --git a/src/components/PageTitle.vue b/src/components/PageTitle.vue
index 6f72195..047cc32 100644
--- a/src/components/PageTitle.vue
+++ b/src/components/PageTitle.vue
@@ -3,11 +3,11 @@ export default {
name: 'page-title',
props: ['title'],
created () {
- document.title = `${this.title} « DJS Consulting`
+ document.title = `${this.title} « Bit Badger Solutions`
},
watch: {
title () {
- document.title = `${this.title} « DJS Consulting`
+ document.title = `${this.title} « Bit Badger Solutions`
}
},
render () { }
diff --git a/src/components/sidebar/AppSidebar.vue b/src/components/sidebar/AppSidebar.vue
index f68cf86..396f876 100644
--- a/src/components/sidebar/AppSidebar.vue
+++ b/src/components/sidebar/AppSidebar.vue
@@ -1,12 +1,13 @@
- aside
- p
- strong.sidebar-name Connect with Us
- br
- a(href="https://twitter.com/DJS_Consulting" title="DJS_Consulting on Twitter") Twitter
- | •
- a(href="https://www.facebook.com/pages/DJS-Consulting/262368048575" title="DJS Consulting on Facebook") Facebook
- sidebar-category(v-for="category in cats" v-bind:category="category" v-bind:key="category.id")
+div
+ aside.app-sidebar
+ div
+ div.app-sidebar-head Connect with Us
+ p
+ a(href='https://twitter.com/DJS_Consulting' title='DJS_Consulting on Twitter') Twitter
+ | •
+ a(href='https://www.facebook.com/pages/DJS-Consulting/262368048575' title="DJS Consulting on Facebook") Facebook
+ sidebar-category(v-for='category in cats' :category='category' :key='category.id')
-
diff --git a/src/components/sidebar/SidebarApp.vue b/src/components/sidebar/SidebarApp.vue
index 8bc4ef7..91e8dec 100644
--- a/src/components/sidebar/SidebarApp.vue
+++ b/src/components/sidebar/SidebarApp.vue
@@ -1,12 +1,12 @@
div
- p
- strong.sidebar-name {{ app.name }}
+ p.app-sidebar-name
+ strong {{ app.name }}
br
- span(v-if="!app.noAboutLink").
+ span(v-if='!app.noAboutLink').
#[router-link(:to="{ name: 'Application', params: { app: app.id } }") About] •
- a(:title="app.name" :href="app.url") Visit
- .sidebar-description(v-html="app.frontPageText")
+ a(:title='app.name' :href='app.url') Visit
+ p.app-sidebar-description(v-html='app.frontPageText')
-
-
diff --git a/src/components/sidebar/SidebarCategory.vue b/src/components/sidebar/SidebarCategory.vue
index 2de5695..5a2afb2 100644
--- a/src/components/sidebar/SidebarCategory.vue
+++ b/src/components/sidebar/SidebarCategory.vue
@@ -1,7 +1,7 @@
- div
- p.sidebar-head {{ category.name }}
- sidebar-app(v-for="app in appsForCat(category.id)" v-bind:app="app" v-bind:key="app.id")
+div
+ div.app-sidebar-head {{ category.name }}
+ sidebar-app(v-for='app in appsForCat(category.id)' :app='app' :key='app.id')
-
-
diff --git a/src/router/index.js b/src/router/index.js
index 12e9348..00a59fc 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -12,8 +12,8 @@ export default new Router({
mode: 'history',
routes: [
{ path: '/', name: 'Home', component: Home },
- { path: '/applications/:app', name: 'Application', component: Application, props: true },
- { path: '/applications', name: 'ApplicationList', component: ApplicationList },
+ { path: '/solutions/:app', name: 'Application', component: Application, props: true },
+ { path: '/solutions', name: 'ApplicationList', component: ApplicationList },
{ path: '*', name: 'FourOhFour', component: FourOhFour }
]
})
diff --git a/static/.gitkeep b/static/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/static/bitbadger.png b/static/bitbadger.png
new file mode 100644
index 0000000..62f8d76
Binary files /dev/null and b/static/bitbadger.png differ
diff --git a/static/djs-consulting.png b/static/djs-consulting.png
deleted file mode 100644
index 19a1ffd..0000000
Binary files a/static/djs-consulting.png and /dev/null differ
diff --git a/static/slogan.png b/static/slogan.png
deleted file mode 100644
index 218ba6d..0000000
Binary files a/static/slogan.png and /dev/null differ