mirror of https://github.com/mitchell/mjfs-us.git
Compare commits
No commits in common. "69c7b14c0f7d8415f9922a42b2adc7c3b5db5b31" and "f1efbde3358c3ef9971eb473431a64928d68477d" have entirely different histories.
69c7b14c0f
...
f1efbde335
|
@ -14,7 +14,6 @@ export default defineConfig({
|
||||||
{ text: "Home", link: "/" },
|
{ text: "Home", link: "/" },
|
||||||
{ text: "Experience", link: "/jobs/mystro" },
|
{ text: "Experience", link: "/jobs/mystro" },
|
||||||
{ text: "Contact", link: "/contact" },
|
{ text: "Contact", link: "/contact" },
|
||||||
{ text: "Git", link: "http://git.mjfs.us/explore/repos" },
|
|
||||||
],
|
],
|
||||||
|
|
||||||
sidebar: [
|
sidebar: [
|
||||||
|
|
|
@ -44,15 +44,15 @@
|
||||||
* -------------------------------------------------------------------------- */
|
* -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--vp-c-default-1: #7c6f64;
|
--vp-c-default-1: var(--vp-c-gray-1);
|
||||||
--vp-c-default-2: #928374;
|
--vp-c-default-2: var(--vp-c-gray-2);
|
||||||
--vp-c-default-3: #a89984;
|
--vp-c-default-3: var(--vp-c-gray-3);
|
||||||
--vp-c-default-soft: #a89984;
|
--vp-c-default-soft: var(--vp-c-gray-soft);
|
||||||
|
|
||||||
--vp-c-brand-1: #b8bb26;
|
--vp-c-brand-1: var(--vp-c-green-1);
|
||||||
--vp-c-brand-2: #98971a;
|
--vp-c-brand-2: var(--vp-c-green-2);
|
||||||
--vp-c-brand-3: #458588;
|
--vp-c-brand-3: var(--vp-c-green-3);
|
||||||
--vp-c-brand-soft: #83a598;
|
--vp-c-brand-soft: var(--vp-c-green-soft);
|
||||||
|
|
||||||
--vp-c-tip-1: var(--vp-c-brand-1);
|
--vp-c-tip-1: var(--vp-c-brand-1);
|
||||||
--vp-c-tip-2: var(--vp-c-brand-2);
|
--vp-c-tip-2: var(--vp-c-brand-2);
|
||||||
|
@ -94,8 +94,8 @@
|
||||||
--vp-home-hero-name-color: transparent;
|
--vp-home-hero-name-color: transparent;
|
||||||
--vp-home-hero-name-background: -webkit-linear-gradient(
|
--vp-home-hero-name-background: -webkit-linear-gradient(
|
||||||
120deg,
|
120deg,
|
||||||
#458588 30%,
|
#3880a8 30%,
|
||||||
#98971a
|
#32b141
|
||||||
);
|
);
|
||||||
|
|
||||||
--vp-home-hero-image-background-image: linear-gradient(
|
--vp-home-hero-image-background-image: linear-gradient(
|
||||||
|
|
10
package.json
10
package.json
|
@ -5,7 +5,7 @@
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/js": "^9.5.0",
|
"@eslint/js": "^9.5.0",
|
||||||
"@types/bun": "latest",
|
"@types/bun": "latest",
|
||||||
"@vue/typescript-plugin": "^2.0.24",
|
"@vueuse/components": "^10.11.0",
|
||||||
"@vueuse/core": "^10.11.0",
|
"@vueuse/core": "^10.11.0",
|
||||||
"eslint": "9.x",
|
"eslint": "9.x",
|
||||||
"eslint-config-prettier": "^9.1.0",
|
"eslint-config-prettier": "^9.1.0",
|
||||||
|
@ -20,12 +20,12 @@
|
||||||
"typescript": "^5.0.0"
|
"typescript": "^5.0.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "bun --bun vitepress dev",
|
"dev": "bunx --bun vitepress dev",
|
||||||
"build": "bun --bun vitepress build",
|
"build": "bunx --bun vitepress build",
|
||||||
"preview": "caddy file-server --listen :5173 --root ./.vitepress/dist/",
|
"preview": "caddy file-server --listen :5173 --root ./.vitepress/dist/",
|
||||||
"typecheck": "bunx --bun vue-tsc",
|
"typecheck": "bunx --bun vue-tsc",
|
||||||
"format": "bun --bun prettier -w .",
|
"format": "bunx --bun prettier -w .",
|
||||||
"lint": "bun --bun eslint .",
|
"lint": "bunx --bun eslint .",
|
||||||
"check": "bun run format && bun run lint && bun run typecheck",
|
"check": "bun run format && bun run lint && bun run typecheck",
|
||||||
"clean": "rm -rf ./.vitepress/cache/ ./.vitepress/dist/",
|
"clean": "rm -rf ./.vitepress/cache/ ./.vitepress/dist/",
|
||||||
"git:add": "bun run check && git add -p"
|
"git:add": "bun run check && git add -p"
|
||||||
|
|
Loading…
Reference in New Issue