Skip to content

Commit 0eb667a

Browse files
committed
Feat: Removed blog page
1 parent 8eec29f commit 0eb667a

File tree

7 files changed

+6
-837
lines changed

7 files changed

+6
-837
lines changed

components/Navbar.vue

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,6 @@ export default {
2828
link: "index",
2929
},
3030
31-
{
32-
icon: "📚",
33-
text: "header.links.blog",
34-
link: "blog",
35-
},
36-
3731
{
3832
icon: "💡",
3933
text: "header.links.projects",

i18n/en.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ export default {
66
},
77
links: {
88
home: "Home",
9-
blog: "Blog",
109
projects: "Projects",
1110
tools: "Tools",
1211
about: "About",
@@ -18,10 +17,6 @@ export default {
1817
description:
1918
'<b class="accent-text">I\'m a French software engineer specialized in full stack web development</b>. Well, I\'m also a UI designer in my spare time. Until January, I worked at <a href="https://icohup.com/" target="_blank" class="accent">Icohup</a>, a French company based in Limoges.',
2019
},
21-
blog: {
22-
description:
23-
'Since May 2021, I regularly write posts on a community platform that I\'ve created called <a href="https://needlify.com/me/MrAnyx" class="accent" target="_blank">Needlify</a>. Anyway, here is a list of my previous posts. Hope you like it 👍.',
24-
},
2520
projects: {
2621
description:
2722
'Since 2017 when I became an engineer student, I\'ve worked on a lot of various projects. Some of them are just little school projects, but others are bigger projects I\'m very proud of. All of them are available on my <a href="https://github.com/MrAnyx" class="accent">Github</a>. Anyway, here is a small list of my main projects.',

i18n/fr.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ export default {
66
},
77
links: {
88
home: "Accueil",
9-
blog: "Articles",
109
projects: "Projets",
1110
tools: "Outils",
1211
about: "À propos",
@@ -18,10 +17,6 @@ export default {
1817
description:
1918
'<b class="accent-text">Je suis un ingénieur informatique français spécialisé en développement web full-stack</b>. Je suis aussi designer d\'interface utilisateur à mes heures perdues. Jusqu\'en janvier, je travaillais pour <a href="https://icohup.com/" target="_blank" class="accent">Icohup</a>, une jeune entreprise française basée à Limoges.',
2019
},
21-
blog: {
22-
description:
23-
'Depuis mai 2021, je rédige régulièrement des articles sur une plateforme communautaire que j\'ai créée : <a href="https://needlify.com/me/MrAnyx" class="accent" target="_blank">Needlify</a>. Bref, voici la liste de mes précédents articles. J\'espère qu\'ils vous plairont 👍.',
24-
},
2520
projects: {
2621
description:
2722
"Depuis 2017, date à laquelle je suis devenu étudiant ingénieur, j'ai travaillé sur de nombreux projets variés. Certains d'entre eux ne sont que des petits projets scolaires, mais d'autres sont des projets plus importants dont je suis très fier. Ils sont tous disponibles sur mon <a href=\"https://github.com/MrAnyx\" class=\"accent\">Github</a>. Quoi qu'il en soit, voici une petite liste de mes principaux projets.",

nuxt.config.js

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default {
1111
head: {
1212
title: "Robin from Codeon 👋 - Software Engineer",
1313
htmlAttrs: {
14-
lang: "en",
14+
lang: "fr",
1515
},
1616
meta: [
1717
{ charset: "utf-8" },
@@ -96,7 +96,7 @@ export default {
9696
css: ["@/assets/scss/reset.scss", "@/assets/scss/global.scss"],
9797

9898
// Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins
99-
plugins: [{ src: "@/plugins/eva-icons" }, { src: "@/plugins/swal" }],
99+
plugins: [{ src: "@/plugins/eva-icons" }],
100100

101101
// Auto import components: https://go.nuxtjs.dev/config-components
102102
components: true,
@@ -109,17 +109,11 @@ export default {
109109
],
110110

111111
// Modules: https://go.nuxtjs.dev/config-modules
112-
modules: [
113-
"@nuxtjs/style-resources",
114-
"@nuxtjs/pwa",
115-
"@nuxtjs/axios",
116-
"@nuxt/http",
117-
"@nuxtjs/i18n",
118-
],
112+
modules: ["@nuxtjs/style-resources", "@nuxtjs/pwa", "@nuxtjs/i18n"],
119113

120114
// Build Configuration: https://go.nuxtjs.dev/config-build
121115
build: {
122-
vendor: ["vue-swal"],
116+
vendor: [],
123117
},
124118

125119
// PWA : https://pwa.nuxtjs.org/setup

0 commit comments

Comments
 (0)