Skip to content

Commit

Permalink
added meta tags and title to improve SEO for website
Browse files Browse the repository at this point in the history
  • Loading branch information
hazzaRR committed Jan 26, 2024
1 parent 2de63f1 commit af65f5b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
10 changes: 10 additions & 0 deletions app.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<script setup>
useHead({
title: "Harry Redman | Aspiring Software Engineer",
meta: [
{
name: 'description',
content: 'Harry Redman - Aspiring Software Engineer based in Derby, UK. Looking for an entry level software engineering role based in either Derby, London or Essex. Explore my portfolio showcasing skills in Java, Python, SQL, Spring Boot, Vue, Nuxt, React, Linux and Javascript.'
}
]
})
const links = [
{name: "Home", link: "/"},
{name: "Projects", link: "/projects"},
Expand Down
2 changes: 1 addition & 1 deletion components/PersonalHero.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<h1 class="text-5xl font-bold text-center lg:text-left">Harry Redman</h1>
<p class="py-6 text-center lg:text-left">
Hello, my name is Harry, and I recently graduated from the University of East Anglia with a first-class (Hons)
degree in Computer Science. I am a aspiring software engineer with a passion for machine learning, mobile development, and website development.
degree in Computer Science. I am a aspiring software engineer currently based in Derby with a passion for machine learning, mobile development, and website development.
Aside from coding, I enjoy being active by going to the gym, playing football, or running. I also enjoy watching sports, especially Formula One and football.
One interesting fact about myself is that I am a type 1 diabetic.
</p>
Expand Down
6 changes: 1 addition & 5 deletions nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,14 @@ export default defineNuxtConfig({
telemetry: false,
app: {
head: {
title: 'Harry Redman',
title: 'Harry Redman | Aspiring Software Engineer',
link: [
{rel: 'stylesheet', href: 'https://cdn.jsdelivr.net/gh/devicons/devicon@v2.15.1/devicon.min.css'},
{rel: 'stylesheet', href: 'https://cdn.jsdelivr.net/npm/daisyui@2.51.4/dist/full.css', type:'text/css'},
{rel: 'stylesheet', href: 'https://cdn.jsdelivr.net/npm/tailwindcss@2.2/dist/tailwind.min.css', type:'text/css'}

],
},
// baseURL: '/Portfolio', // baseURL: '/<repository>/'
// router: {
// base: '/Portfolio'
// },
},
modules: [
'@nuxtjs/tailwindcss'
Expand Down

0 comments on commit af65f5b

Please sign in to comment.