diff --git a/astro.config.mjs b/astro.config.mjs index 1cffd7a..8f9444e 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -10,7 +10,7 @@ export default defineConfig({ title: "Interledger", description: "Enable seamless exchange of value across payment networks.", customCss: [ - "./node_modules/@interledger/docs-design-system/src/styles/green-theme.css", + "./node_modules/@interledger/docs-design-system/src/styles/teal-theme.css", "./node_modules/@interledger/docs-design-system/src/styles/ilf-docs.css", "./src/styles/interledger.css", "./src/styles/atom-one-light.min.css", @@ -39,11 +39,11 @@ export default defineConfig({ }, sidebar: [ { - label: "Get started", - link: "/get-started", + label: "Get involved", + link: "/get-involved", }, { - label: "Specs", + label: "Specifications", items: [ { label: "Interledger Protocol V4 (ILPv4)", @@ -100,14 +100,6 @@ export default defineConfig({ }, ], }, - { - label: "Tools", - link: "/tools", - }, - { - label: "Community", - link: "/community", - }, ], }), ], diff --git a/package.json b/package.json index 124442c..002511d 100644 --- a/package.json +++ b/package.json @@ -9,10 +9,11 @@ "astro": "astro" }, "dependencies": { - "@astrojs/starlight": "^0.16.0", - "@interledger/docs-design-system": "^0.2.1", + "@astrojs/node": "^8.2.3", + "@astrojs/starlight": "^0.21.1", + "@interledger/docs-design-system": "^0.3.0", "@types/showdown": "^2.0.6", - "astro": "^4.2.4", + "astro": "^4.4.15", "node-html-parser": "^6.1.12", "sharp": "^0.33.2", "showdown": "^2.1.0" diff --git a/public/fonts/titilliumweb-extralight.woff2 b/public/fonts/titilliumweb-extralight.woff2 new file mode 100644 index 0000000..60c22b8 Binary files /dev/null and b/public/fonts/titilliumweb-extralight.woff2 differ diff --git a/public/fonts/titilliumweb-semibold.woff2 b/public/fonts/titilliumweb-semibold.woff2 new file mode 100644 index 0000000..78592b4 Binary files /dev/null and b/public/fonts/titilliumweb-semibold.woff2 differ diff --git a/public/img/blog/2018-01-29/tree.webp b/public/img/blog/2018-01-29/tree.webp new file mode 100644 index 0000000..aaa044f Binary files /dev/null and b/public/img/blog/2018-01-29/tree.webp differ diff --git a/public/img/blog/2018-10-03/connector.webp b/public/img/blog/2018-10-03/connector.webp new file mode 100644 index 0000000..f89cc19 Binary files /dev/null and b/public/img/blog/2018-10-03/connector.webp differ diff --git a/public/img/blog/2018-10-03/packet-flow.webp b/public/img/blog/2018-10-03/packet-flow.webp new file mode 100644 index 0000000..10d753e Binary files /dev/null and b/public/img/blog/2018-10-03/packet-flow.webp differ diff --git a/public/img/blog/2019-01-23/ilsp-architecture.webp b/public/img/blog/2019-01-23/ilsp-architecture.webp new file mode 100644 index 0000000..5726171 Binary files /dev/null and b/public/img/blog/2019-01-23/ilsp-architecture.webp differ diff --git a/src/components/Header.astro b/src/components/Header.astro index 808931d..0e0da7a 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -2,7 +2,7 @@ import type { Props } from '@astrojs/starlight/props'; import SocialIcons from "@astrojs/starlight/components/SocialIcons.astro"; import ThemeSelect from "@astrojs/starlight/components/ThemeSelect.astro"; -import DevelopersLogo from "../components/DevelopersLogo.astro"; +import DevelopersLogo from "./logos/DevelopersLogo.astro"; ---
Copyright © Interledger Foundation. All rights reserved.
diff --git a/src/components/pages/FoundationHeader.astro b/src/components/pages/FoundationHeader.astro index 49376d1..1636d23 100644 --- a/src/components/pages/FoundationHeader.astro +++ b/src/components/pages/FoundationHeader.astro @@ -1,5 +1,5 @@ --- -import FoundationLogo from "../FoundationLogo.astro"; +import FoundationLogo from "../logos/FoundationLogo.astro"; ---