Compare commits

..

No commits in common. "249aa17ce5f34221c75a207c025fbef94e3b76e8" and "453e703ba144893237fa68522b4f11bbd1558e3d" have entirely different histories.

4 changed files with 3136 additions and 3160 deletions

View File

@ -3,7 +3,6 @@
flex-direction: column; flex-direction: column;
color: #eee; color: #eee;
min-height: 100vh; min-height: 100vh;
background-color: #313131;
.section-expand { .section-expand {
flex-grow: 1; flex-grow: 1;

6273
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -8,15 +8,15 @@
"postinstall": "nuxt prepare" "postinstall": "nuxt prepare"
}, },
"devDependencies": { "devDependencies": {
"@types/marked": "^4.0.8", "@types/marked": "^4.0.7",
"marked": "^4.3.0", "marked": "^4.2.3",
"nuxt": "^3.3.3", "nuxt": "^3.0.0",
"prettier": "^2.8.7", "prettier": "^2.8.0",
"yaml": "^2.2.1" "yaml": "^2.1.3"
}, },
"dependencies": { "dependencies": {
"feed": "^4.2.2", "feed": "^4.2.2",
"highlight.js": "^11.7.0", "highlight.js": "^11.7.0",
"sass": "^1.60.0" "sass": "^1.56.1"
} }
} }

View File

@ -179,8 +179,8 @@ const socialLinks = [
}, },
]; ];
const currentYear = computed(() => new Date().getFullYear()); const currentYear = new Date().getFullYear();
const evertAge = computed(() => { const evertAge = (() => {
const today = new Date(); const today = new Date();
const birthDate = new Date('2000-04-18'); const birthDate = new Date('2000-04-18');
let age = today.getFullYear() - birthDate.getFullYear(); let age = today.getFullYear() - birthDate.getFullYear();
@ -189,5 +189,5 @@ const evertAge = computed(() => {
age--; age--;
} }
return age; return age;
}); })();
</script> </script>