|
| 1 | +export const navbarData = { |
| 2 | + homeTitle: 'Riyad\'s Blog', |
| 3 | +} |
| 4 | + |
| 5 | +export const footerData = { |
| 6 | + author: 'Al Asad Nur Riyad', |
| 7 | + aboutAuthor: 'Hi! I am Riyad, a Tech enthusiast, problem solver and software engineer. Currently working at Appscode Inc.', |
| 8 | + authorInterest: 'I have a fair amount of knowledge of Javascript, Typescript, VueJs, and Nuxt. If you have an interesting idea, either open source or paid let\'s connect.', |
| 9 | + aboutTheSite: 'This is a personal blog site built with Nuxt3, TailwindCSS, NuxtContent, Nuxt Icon. Currently it\'s deployed in Vercel.', |
| 10 | +} |
| 11 | + |
| 12 | +export const homePage = { |
| 13 | + title: 'Welcome To My Blog Site', |
| 14 | + description: 'Get Web Development, Javascript, Typescript, NodeJs, Vue, and Nuxt, Related Articles, Tips, Learning resources and more.', |
| 15 | +} |
| 16 | + |
| 17 | +export const blogsPage = { |
| 18 | + title: 'All Blogs', |
| 19 | + description: 'Here you will find all the blog posts I have written & published on this site.', |
| 20 | +} |
| 21 | + |
| 22 | +export const categoryPage = { |
| 23 | + title: 'Categories', |
| 24 | + description: 'Blow this category is generated from all the tags are mentioned in the different blog post', |
| 25 | +} |
| 26 | + |
| 27 | +export const aboutPage = { |
| 28 | + title: 'Al Asad Nur Riyad', |
| 29 | + description: 'Software Engineer, Problem Solver, Web Enthusiast.', |
| 30 | + aboutMe: 'Hello, fellow human! I\'m a software wizard who spends most of his day crafting code spells at @AppsCode in the Bytebuilders team. When I\'m not crafting code, you can find me summoning solutions to problems on online judges. Just don\'t ask me to cast any love spells, my magic only works on machines!', |
| 31 | +} |
| 32 | + |
| 33 | +export const seoData = { |
| 34 | + description: 'Riyad, Software Engineer at AppsCode, with over 2.5+ years experience in software development.', |
| 35 | + ogTitle: 'Riyad codes and helps others learn Javascript, Typescript, Vue, Nuxt, & Problem Solving', |
| 36 | + twitterDescription: 'My blog website, where I play around with Nuxt, Vue, and more and showcase my blog, resources, etc', |
| 37 | + image: 'https://res.cloudinary.com/dmecmyphj/image/upload/v1673548905/nuxt-blog/cover_ntgs6u.webp', |
| 38 | + mySite: 'https://blog-nurriyad.vercel.app/', |
| 39 | +} |
| 40 | + |
| 41 | +export const siteMetaData = [ |
| 42 | + { |
| 43 | + name: 'description', |
| 44 | + content: seoData.description, |
| 45 | + }, |
| 46 | + // Test on: https://developers.facebook.com/tools/debug/ or https://socialsharepreview.com/ |
| 47 | + { property: 'og:site_name', content: seoData.mySite }, |
| 48 | + { property: 'og:type', content: 'website' }, |
| 49 | + { |
| 50 | + property: 'og:url', |
| 51 | + content: seoData.mySite, |
| 52 | + }, |
| 53 | + { |
| 54 | + property: 'og:title', |
| 55 | + content: seoData.ogTitle, |
| 56 | + }, |
| 57 | + { |
| 58 | + property: 'og:description', |
| 59 | + content: seoData.description, |
| 60 | + }, |
| 61 | + { |
| 62 | + property: 'og:image', |
| 63 | + content: seoData.image, |
| 64 | + }, |
| 65 | + // Test on: https://cards-dev.twitter.com/validator or https://socialsharepreview.com/ |
| 66 | + { name: 'twitter:site', content: '@qdnvubp' }, |
| 67 | + { name: 'twitter:card', content: 'summary_large_image' }, |
| 68 | + { |
| 69 | + name: 'twitter:url', |
| 70 | + content: seoData.mySite, |
| 71 | + }, |
| 72 | + { |
| 73 | + name: 'twitter:title', |
| 74 | + content: seoData.ogTitle, |
| 75 | + }, |
| 76 | + { |
| 77 | + name: 'twitter:description', |
| 78 | + content: seoData.twitterDescription, |
| 79 | + }, |
| 80 | + { |
| 81 | + name: 'twitter:image', |
| 82 | + content: seoData.image, |
| 83 | + }, |
| 84 | +] |
0 commit comments