dev #9
5 changed files with 5088 additions and 3576 deletions
|
@ -1,14 +0,0 @@
|
||||||
image: node:lts
|
|
||||||
pages:
|
|
||||||
cache:
|
|
||||||
paths:
|
|
||||||
- node_modules/
|
|
||||||
script:
|
|
||||||
- npm install
|
|
||||||
- npm run build
|
|
||||||
artifacts:
|
|
||||||
paths:
|
|
||||||
- public
|
|
||||||
expire_in: 3 days
|
|
||||||
only:
|
|
||||||
- main
|
|
8606
package-lock.json
generated
8606
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -11,8 +11,10 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/sitemap": "^1.2.1",
|
"@astrojs/check": "^0.3.3",
|
||||||
"astro": "^2.8.0",
|
"@astrojs/sitemap": "^3.0.3",
|
||||||
"iconoir": "^6.1.0"
|
"astro": "^4.0.7",
|
||||||
|
"iconoir": "^6.1.0",
|
||||||
|
"typescript": "^5.3.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,18 +42,20 @@ const fulllink = `/${slug}`
|
||||||
width: 200px;
|
width: 200px;
|
||||||
}
|
}
|
||||||
li > a {
|
li > a {
|
||||||
|
display: inline-flex;
|
||||||
color: white;
|
color: white;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: flex-end;
|
||||||
font-size: 1.4em;
|
font-size: 1.4em;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
gap: 0.2em;
|
||||||
}
|
}
|
||||||
li > a:hover {
|
li > a:hover {
|
||||||
color: var(--c-purplepink);
|
color: var(--c-purplepink);
|
||||||
}
|
}
|
||||||
.current {
|
.current {
|
||||||
color: var(--c-darkpurple);
|
color: var(--c-darkpurple) !important;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -2,17 +2,17 @@
|
||||||
{
|
{
|
||||||
"link": "/",
|
"link": "/",
|
||||||
"text": "Home",
|
"text": "Home",
|
||||||
"icon": "iconoir-home-alt"
|
"icon": "iconoir-home"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"link": "/servants",
|
"link": "/servants",
|
||||||
"text": "Servants",
|
"text": "Servants",
|
||||||
"icon": "iconoir-database-script"
|
"icon": "iconoir-task-list"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"link": "/ta-collection",
|
"link": "/ta-collection",
|
||||||
"text": "TA Collection",
|
"text": "TA Collection",
|
||||||
"icon": "iconoir-db"
|
"icon": "iconoir-database"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"link": "/blog",
|
"link": "/blog",
|
||||||
|
|
Loading…
Reference in a new issue