Updated logo for docs + deps
All checks were successful
Ascently - Docs Deploy / build-and-push (push) Successful in 3m59s
@@ -6,53 +6,53 @@ import node from "@astrojs/node";
|
|||||||
|
|
||||||
// https://astro.build/config
|
// https://astro.build/config
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
site: "https://docs.ascently.app",
|
site: "https://docs.ascently.app",
|
||||||
|
|
||||||
integrations: [
|
integrations: [
|
||||||
starlight({
|
starlight({
|
||||||
title: "Ascently",
|
title: "Ascently",
|
||||||
description:
|
description:
|
||||||
"An offline-first FOSS climb tracking app with an optional sync server.",
|
"An offline-first FOSS climb tracking app with an optional sync server.",
|
||||||
logo: {
|
logo: {
|
||||||
light: "./src/assets/logo.svg",
|
light: "./src/assets/logo.svg",
|
||||||
dark: "./src/assets/logo-dark.svg",
|
dark: "./src/assets/logo.svg",
|
||||||
},
|
},
|
||||||
favicon: "/favicon.png",
|
favicon: "/favicon.png",
|
||||||
social: [
|
social: [
|
||||||
{
|
{
|
||||||
icon: "seti:git",
|
icon: "seti:git",
|
||||||
label: "Gitea",
|
label: "Gitea",
|
||||||
href: "https://git.atri.dad/atridad/Ascently",
|
href: "https://git.atri.dad/atridad/Ascently",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: "email",
|
icon: "email",
|
||||||
label: "Contact",
|
label: "Contact",
|
||||||
href: "mailto:me@atri.dad",
|
href: "mailto:me@atri.dad",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
sidebar: [
|
sidebar: [
|
||||||
{
|
{
|
||||||
label: "Download",
|
label: "Download",
|
||||||
link: "/download/",
|
link: "/download/",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Self-Hosted Sync",
|
label: "Self-Hosted Sync",
|
||||||
items: [
|
items: [
|
||||||
{ label: "Overview", slug: "sync/overview" },
|
{ label: "Overview", slug: "sync/overview" },
|
||||||
{ label: "Quick Start", slug: "sync/quick-start" },
|
{ label: "Quick Start", slug: "sync/quick-start" },
|
||||||
{ label: "API Reference", slug: "sync/api-reference" },
|
{ label: "API Reference", slug: "sync/api-reference" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Privacy",
|
label: "Privacy",
|
||||||
link: "/privacy/",
|
link: "/privacy/",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
customCss: ["./src/styles/custom.css"],
|
customCss: ["./src/styles/custom.css"],
|
||||||
|
}),
|
||||||
|
],
|
||||||
|
|
||||||
|
adapter: node({
|
||||||
|
mode: "standalone",
|
||||||
}),
|
}),
|
||||||
],
|
|
||||||
|
|
||||||
adapter: node({
|
|
||||||
mode: "standalone",
|
|
||||||
}),
|
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -26,8 +26,8 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/node": "^9.5.1",
|
"@astrojs/node": "^9.5.1",
|
||||||
"@astrojs/starlight": "^0.37.1",
|
"@astrojs/starlight": "^0.37.2",
|
||||||
"astro": "^5.16.5",
|
"astro": "^5.16.8",
|
||||||
"qrcode": "^1.5.4",
|
"qrcode": "^1.5.4",
|
||||||
"sharp": "^0.34.5"
|
"sharp": "^0.34.5"
|
||||||
},
|
},
|
||||||
|
|||||||
593
docs/pnpm-lock.yaml
generated
|
Before Width: | Height: | Size: 166 B |
|
Before Width: | Height: | Size: 229 B After Width: | Height: | Size: 42 KiB |
@@ -1,4 +0,0 @@
|
|||||||
<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<polygon points="3.000,26.636 10.736,9.231 18.471,26.636" fill="#FFC107"/>
|
|
||||||
<polygon points="9.661,26.636 19.331,5.364 29.000,26.636" fill="#F44336"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 244 B |
@@ -1,4 +0,0 @@
|
|||||||
<svg width="256" height="256" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<polygon points="24.000,213.091 85.884,73.851 147.769,213.091" fill="#FFC107"/>
|
|
||||||
<polygon points="77.289,213.091 154.645,42.909 232.000,213.091" fill="#F44336"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 259 B |
|
Before Width: | Height: | Size: 244 B After Width: | Height: | Size: 1.2 MiB |
@@ -5,7 +5,7 @@ template: splash
|
|||||||
hero:
|
hero:
|
||||||
tagline: Track your climbing sessions, routes, and progress.
|
tagline: Track your climbing sessions, routes, and progress.
|
||||||
image:
|
image:
|
||||||
file: ../../assets/logo-highres.svg
|
file: ../../assets/logo.svg
|
||||||
alt: "Ascently app icon"
|
alt: "Ascently app icon"
|
||||||
actions:
|
actions:
|
||||||
- text: Download
|
- text: Download
|
||||||
|
|||||||