Skip to content
This repository was archived by the owner on Apr 14, 2026. It is now read-only.

Commit a184714

Browse files
authored
Merge pull request #19 from catalystsystem/v1
Upgrade documentation to v1
2 parents 4cfa1da + 6869376 commit a184714

30 files changed

Lines changed: 1649 additions & 3120 deletions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Catalyst Documentation
1+
## Intent Documentation
22

33
[![Built with Starlight](https://astro.badg.es/v2/built-with-starlight/tiny.svg)](https://starlight.astro.build)
44

_typos.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
[default.extend-words]
2-
# Don't correct the surname "Teh"
32
OIF = "OIF"

astro.config.mjs

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ export default defineConfig({
2424
integrations: [
2525
starlight({
2626
plugins: [starlightLinksValidator()],
27-
title: "Catalyst Documentation",
27+
title: "LI.FI Intent Documentation",
28+
tableOfContents: false,
2829
editLink: {
2930
baseUrl: `https://github.com/catalystsystem/catalyst-documentation/edit/${process.env["CF_PAGES_BRANCH"]}`,
3031
},
@@ -40,7 +41,7 @@ export default defineConfig({
4041
favicon: "/favicon.ico",
4142
sidebar: [
4243
{
43-
label: "Catalyst Intent System",
44+
label: "Introduction",
4445
link: "/",
4546
},
4647
{
@@ -49,12 +50,12 @@ export default defineConfig({
4950
directory: "1-system-architecture",
5051
},
5152
},
52-
{
53-
label: "For Developers",
54-
autogenerate: {
55-
directory: "2-devs",
56-
},
57-
},
53+
// {
54+
// label: "For Developers",
55+
// autogenerate: {
56+
// directory: "2-devs",
57+
// },
58+
// },
5859
{
5960
label: "For Solvers",
6061
autogenerate: {

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
},
1212
"dependencies": {
1313
"@astrojs/check": "^0.9.4",
14-
"@astrojs/starlight": "^0.34.0",
15-
"@astrojs/svelte": "^7.0.10",
16-
"astro": "^5.7.3",
17-
"astro-d2": "^0.7.0",
14+
"@astrojs/starlight": "^0.34.4",
15+
"@astrojs/svelte": "^7.1.0",
16+
"astro": "^5.9.4",
17+
"astro-d2": "^0.8.0",
1818
"astro-iconify": "^1.2.0",
1919
"rehype-mathjax": "^7.1.0",
2020
"remark-math": "^6.0.0",
21-
"sharp": "^0.34.1",
22-
"starlight-links-validator": "^0.16.0",
23-
"svelte": "^5.27.3",
21+
"sharp": "^0.34.2",
22+
"starlight-links-validator": "^0.17.0",
23+
"svelte": "^5.34.5",
2424
"typescript": "^5.8.3"
2525
},
2626
"packageManager": "pnpm@9.11.0+sha256.1c0e33f70e5df9eede84a357bdfa0b1f9dba6e58194628d48a1055756f553754"

pnpm-lock.yaml

Lines changed: 715 additions & 691 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/d2/docs/index-0.svg

Lines changed: 376 additions & 376 deletions
Loading

public/d2/docs/protocol/liquidity-pools-0.svg

Lines changed: 0 additions & 985 deletions
This file was deleted.

public/d2/docs/protocol/tx-lifecycle-0.svg

Lines changed: 0 additions & 198 deletions
This file was deleted.

src/assets/intent-flow.svg

Lines changed: 4 additions & 0 deletions
Loading

src/assets/landing.css

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
:root {
22
--purple-hsl: 234, 85%, 65%;
33
--overlay-blurple: hsla(var(--purple-hsl), 0.2);
4+
--gray-rgb: 237, 238, 243;
5+
--gray-color: rgb(var(--gray-rgb));
6+
--sl-color-backdrop-overlay: hsla(0, 0%, 98%, 0.66);
47
}
58

69
:root[data-theme="light"] {
@@ -40,3 +43,31 @@ mobile-starlight-toc nav {
4043
[data-has-hero] .hero > img {
4144
filter: drop-shadow(0 0 3rem var(--overlay-blurple));
4245
}
46+
47+
.pagination-links {
48+
border-top: 1px solid;
49+
border-color: var(--gray-color);
50+
}
51+
52+
div.pagination-links > a {
53+
border: 0px;
54+
box-shadow: none;
55+
}
56+
57+
.sl-steps > li:last-child::after {
58+
content: none;
59+
}
60+
61+
62+
site-search > dialog {
63+
background-color: hsla(0, 0%, 98%, 0.1);
64+
-webkit-backdrop-filter: blur(16px);
65+
backdrop-filter: blur(16px);
66+
box-shadow: none;
67+
border: 1px solid transparent;
68+
}
69+
70+
site-search > dialog::backdrop {
71+
background-color: transparent;
72+
backdrop-filter: blur(0.1rem);
73+
}

0 commit comments

Comments
 (0)