diff --git a/app/src/assets/images/created-by-a-human-with-a-brain-1x.png b/app/src/assets/images/created-by-a-human-with-a-brain-1x.png new file mode 100644 index 0000000..af9cc13 Binary files /dev/null and b/app/src/assets/images/created-by-a-human-with-a-brain-1x.png differ diff --git a/app/src/components/NavLink.vue b/app/src/components/NavLink.vue index d715829..371d925 100644 --- a/app/src/components/NavLink.vue +++ b/app/src/components/NavLink.vue @@ -1,5 +1,5 @@ diff --git a/app/src/router/index.ts b/app/src/router/index.ts index c17e9ea..3333ee8 100644 --- a/app/src/router/index.ts +++ b/app/src/router/index.ts @@ -28,8 +28,8 @@ const router = createRouter({ path: 'about', component: AboutView, meta: { - title: "About Andrew (and this site)", - description: "Information about Andrew, and technical information about this website." + title: 'About Andrew (and this site)', + description: 'Information about Andrew, and technical information about this website.' } }, { @@ -37,7 +37,7 @@ const router = createRouter({ component: ContactView, meta: { title: "Andrew's Contact Info", - description: "Information for how to get in touch with Andrew." + description: 'Information for how to get in touch with Andrew.' } }, { @@ -45,7 +45,7 @@ const router = createRouter({ component: SoftwareView, meta: { title: "Andrew's Software", - description: "A brief collection of software developed by Andrew." + description: 'A brief collection of software developed by Andrew.' } }, { @@ -61,7 +61,7 @@ const router = createRouter({ component: HikingView, meta: { title: "Andrew's Hiking", - description: "A logbook of notable summits and hikes Andrew has completed." + description: 'A logbook of notable summits and hikes Andrew has completed.' } }, { @@ -69,7 +69,8 @@ const router = createRouter({ component: LogBookView, meta: { title: "Andrew's Logbook", - description: "Interactive messageboard where people can leave a public note on Andrew's website." + description: + "Interactive messageboard where people can leave a public note on Andrew's website." } } ] @@ -94,7 +95,7 @@ const router = createRouter({ router.afterEach((to) => { nextTick(() => { // Set document title if available. - if (to.meta.title && typeof(to.meta.title) === 'string') { + if (to.meta.title && typeof to.meta.title === 'string') { document.title = to.meta.title } else { document.title = 'Andrew Lalis' @@ -102,7 +103,7 @@ router.afterEach((to) => { // Set document description meta tag if available. const metaTag = document.querySelector("meta[name='description']") as HTMLMetaElement if (metaTag) { - if (to.meta.description && typeof(to.meta.description) === 'string') { + if (to.meta.description && typeof to.meta.description === 'string') { metaTag.content = to.meta.description } else { metaTag.content = "Andrew's homepage on the internet." diff --git a/app/src/views/AboutView.vue b/app/src/views/AboutView.vue index 2172484..ed13dc6 100644 --- a/app/src/views/AboutView.vue +++ b/app/src/views/AboutView.vue @@ -31,12 +31,11 @@

About Me

- Like you saw on the homepage, I'm a software engineer, pilot, gardener, - hiker, and lots of other things; once you do enough things, the labels - start to become pointless. I currently live in Florida with my partner - Grace (who's a teacher, by the way), and our cat Finn. We like to spend - our time going to Disney, exploring new restaurants, and enjoying modern - media (movies, shows, video games, etc.). + Like you saw on the homepage, I'm a software engineer, pilot, gardener, hiker, and lots of + other things; once you do enough things, the labels start to become pointless. I currently + live in Florida with my partner Grace (who's a teacher, by the way), and our cat Finn. We like + to spend our time going to Disney, exploring new restaurants, and enjoying modern media + (movies, shows, video games, etc.).

diff --git a/app/src/views/GardenDetails.vue b/app/src/views/GardenDetails.vue index 197c3e8..7282dce 100644 --- a/app/src/views/GardenDetails.vue +++ b/app/src/views/GardenDetails.vue @@ -1,54 +1,55 @@ diff --git a/app/src/views/GardenHerbsView.vue b/app/src/views/GardenHerbsView.vue index 92b9095..ffcd1fe 100644 --- a/app/src/views/GardenHerbsView.vue +++ b/app/src/views/GardenHerbsView.vue @@ -1,129 +1,121 @@ - + \ No newline at end of file + diff --git a/app/src/views/GardeningView.vue b/app/src/views/GardeningView.vue index 3cb30e9..d7570ca 100644 --- a/app/src/views/GardeningView.vue +++ b/app/src/views/GardeningView.vue @@ -1,18 +1,20 @@ - + diff --git a/app/src/views/HikingView.vue b/app/src/views/HikingView.vue index 9a9867f..fbe7732 100644 --- a/app/src/views/HikingView.vue +++ b/app/src/views/HikingView.vue @@ -1,145 +1,149 @@ - + diff --git a/app/src/views/HomeView.vue b/app/src/views/HomeView.vue index 48fb2fc..687b5c7 100644 --- a/app/src/views/HomeView.vue +++ b/app/src/views/HomeView.vue @@ -3,11 +3,9 @@ diff --git a/app/src/views/MainSite.vue b/app/src/views/MainSite.vue index 6e43035..df8063f 100644 --- a/app/src/views/MainSite.vue +++ b/app/src/views/MainSite.vue @@ -7,69 +7,74 @@ See src/router/index.ts to see the nested set of routes that use this component. --> diff --git a/app/src/views/SoftwareView.vue b/app/src/views/SoftwareView.vue index d08ccc0..0827c4a 100644 --- a/app/src/views/SoftwareView.vue +++ b/app/src/views/SoftwareView.vue @@ -23,10 +23,9 @@ import SoftwareProjectTile from '@/components/SoftwareProjectTile.vue' :tags="['Dlang', 'Vue', 'Typescript', 'Finance']" >

- An evolution of my previous desktop app Perfin, this is a - web application that provides a more universal platform for personal - finance management, with responsive views and more comprehensive - tools for searching, along with so many other improvements over the + An evolution of my previous desktop app Perfin, this is a web application that + provides a more universal platform for personal finance management, with responsive views + and more comprehensive tools for searching, along with so many other improvements over the first iteration.