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"; ---
@@ -21,11 +21,9 @@ import DevelopersLogo from "../components/DevelopersLogo.astro"; Interledger Foundation -
+
-
- -
+
@@ -93,14 +91,7 @@ import DevelopersLogo from "../components/DevelopersLogo.astro"; } .secondary-wrap { - display: flex; align-items: center; - gap: var(--sl-nav-gap); - } - - @media screen and (max-width: 799px) { - .secondary-wrap :global(.divider) { - border-inline-end-color: transparent; - } + gap: var(--space-s); } diff --git a/src/components/Rfc.astro b/src/components/Rfc.astro index 0f87dae..b44f390 100644 --- a/src/components/Rfc.astro +++ b/src/components/Rfc.astro @@ -13,7 +13,7 @@ const getApiData = async () => { }; const specBody = await getApiData(); -const converter = new showdown.Converter({tables: 'true', ghCompatibleHeaderId: 'true'}); +const converter = new showdown.Converter({tables: true, ghCompatibleHeaderId: true}); const html = converter.makeHtml(specBody); const output = parse(html); --- diff --git a/src/components/pages/AnimatedSummitLogo.astro b/src/components/logos/AnimatedSummitLogo.astro similarity index 100% rename from src/components/pages/AnimatedSummitLogo.astro rename to src/components/logos/AnimatedSummitLogo.astro diff --git a/src/components/DevelopersLogo.astro b/src/components/logos/DevelopersLogo.astro similarity index 100% rename from src/components/DevelopersLogo.astro rename to src/components/logos/DevelopersLogo.astro diff --git a/src/components/FoundationLogo.astro b/src/components/logos/FoundationLogo.astro similarity index 100% rename from src/components/FoundationLogo.astro rename to src/components/logos/FoundationLogo.astro diff --git a/src/components/logos/InterledgerIcon.astro b/src/components/logos/InterledgerIcon.astro new file mode 100644 index 0000000..e94f40e --- /dev/null +++ b/src/components/logos/InterledgerIcon.astro @@ -0,0 +1,4 @@ +--- +const { class: className } = Astro.props; +--- +Interledger icon (full color) diff --git a/src/components/logos/OpenPaymentsIcon.astro b/src/components/logos/OpenPaymentsIcon.astro new file mode 100644 index 0000000..fba673a --- /dev/null +++ b/src/components/logos/OpenPaymentsIcon.astro @@ -0,0 +1,4 @@ +--- +const { class: className } = Astro.props; +--- +Open Payments icon (full color) diff --git a/src/components/logos/RafikiIcon.astro b/src/components/logos/RafikiIcon.astro new file mode 100644 index 0000000..5f773e0 --- /dev/null +++ b/src/components/logos/RafikiIcon.astro @@ -0,0 +1,4 @@ +--- +const { class: className } = Astro.props; +--- +Rafiki icon (full color) diff --git a/src/components/pages/Breadcrumbs.astro b/src/components/pages/Breadcrumbs.astro new file mode 100644 index 0000000..e69de29 diff --git a/src/components/pages/FoundationFooter.astro b/src/components/pages/FoundationFooter.astro index db2bd7d..b61d6d9 100644 --- a/src/components/pages/FoundationFooter.astro +++ b/src/components/pages/FoundationFooter.astro @@ -20,8 +20,8 @@ const currentYear = new Date().getFullYear();

Connect with us

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"; ---