Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
5e52119
chore: added custom icon svgs and wrote cheatsheet
Genesis3800 Oct 7, 2025
4bb2eca
fix: patched css for better rendering of custom icons
Genesis3800 Oct 7, 2025
9ee46c7
chore: Moved getting started page for nexus sdk for simplifying sideb…
Genesis3800 Oct 7, 2025
2e28b00
chore: ported over tutorial from PR number 670 into current PR
Genesis3800 Oct 7, 2025
9c91694
chore: Moved nexus-core and nexus-widgets references for simplifying …
Genesis3800 Oct 7, 2025
5c7e602
chore: renamed overview page and moved quickstart page up a top-level…
Genesis3800 Oct 7, 2025
8338e54
chore: added some more landing page links and created a skeleton page…
Genesis3800 Oct 7, 2025
413d319
rainbowkit tutorial options
christineRPM Oct 7, 2025
caa16b4
chore: updated a landing page placeholder
Genesis3800 Oct 8, 2025
45e7304
chore: updated sdk overview page
Genesis3800 Oct 8, 2025
d30ef76
chore: updated quickstart page
Genesis3800 Oct 8, 2025
b6e4ed7
chore: updated transfer page for nexus-core
Genesis3800 Oct 8, 2025
5cbc0c9
add porto wallet
christineRPM Oct 9, 2025
095a592
chore: removed redundant line from page
Genesis3800 Oct 9, 2025
2c67d0b
chore: updated bridge function page
Genesis3800 Oct 9, 2025
7c3b193
chore: adding method signatures to each page
Genesis3800 Oct 9, 2025
718f6cb
chore: updated all pages inside nexus-core reference
Genesis3800 Oct 9, 2025
50fe8ac
fix: updated broken callout
Genesis3800 Oct 9, 2025
3b85774
fix: updated widgets section of nexus sdk reference and removed swaps…
Genesis3800 Oct 9, 2025
16607c4
chore: added a landing page for nexus sdk reference and added links f…
Genesis3800 Oct 9, 2025
9724a91
chore: changed defaultMenuCollapseLevel
Genesis3800 Oct 10, 2025
cadec46
chore: minor update for consistency
Genesis3800 Oct 10, 2025
c9ca574
add rainbowkit guide
robin-rrt Oct 10, 2025
5e47289
Merge pull request #675 from christineRPM/se-nexus-tutorials
Genesis3800 Oct 10, 2025
72112b9
chore: pulled in content from Robin and minor fix
Genesis3800 Oct 10, 2025
2490d6c
feat: Made minor updates, Nexus SDK updated docs ready to roll out
Genesis3800 Oct 10, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 33 additions & 1 deletion app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,36 @@
width: 100%;
object-fit: cover;
}



/* make the SVG follow surrounding text color */
.svg-inherit { color: inherit; }

/* always recolor fills; don't add a stroke unless it already exists */
.svg-inherit * { fill: currentColor; }
.svg-inherit [fill="none"] { fill: none; }
.svg-inherit [stroke]:not([stroke="none"]) { stroke: currentColor; }

/* 24×24 container, centers any aspect-ratio icon */
.icon-24 {
width: 24;
height: 24;
display: inline-flex;
align-items: center;
justify-content: center;
line-height: 0;
}

/* scale the SVG so the larger dimension becomes 24px */
.icon-24 > svg {
max-width: 50%;
max-height: 100%;
width: auto;
height: auto;
}


/* color inheritance (from earlier) */
.svg-inherit { color: inherit; }
.svg-inherit [fill]:not([fill="none"]) { fill: currentColor; }
.svg-inherit [stroke]:not([stroke="none"]) { stroke: currentColor; }
2 changes: 1 addition & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default async function RootLayout({
pageMap={await getPageMap()}
docsRepositoryBase="https://github.com/availproject/docs/tree/main"
editLink="Edit this page on GitHub"
sidebar={{ defaultMenuCollapseLevel: 2, autoCollapse: true, toggleButton: true }}
sidebar={{ defaultMenuCollapseLevel: 1, autoCollapse: true, toggleButton: true }}
footer={footer}
search={
<Search
Expand Down
7 changes: 5 additions & 2 deletions app/nexus/_meta.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
export default {
"introduction-to-nexus": "Introduction to Nexus",
"concepts": "Concepts",
"nexus-overview": "Nexus SDK Overview",
"nexus-quickstart": "Quickstart",
"nexus-examples": "More examples with Nexus SDK",
"avail-nexus-sdk": "Nexus SDK Reference",
}

"nexus-cheatsheet": "Nexus cheat sheet",
}
5 changes: 2 additions & 3 deletions app/nexus/avail-nexus-sdk/_meta.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
export default {

"overview": "Get Started",
"examples": "Examples",
"nexus-core": "Nexus (Headless)",
"nexus-widgets": "Nexus Widgets"
}
4 changes: 0 additions & 4 deletions app/nexus/avail-nexus-sdk/examples/_meta.ts

This file was deleted.

This file was deleted.

76 changes: 0 additions & 76 deletions app/nexus/avail-nexus-sdk/examples/nexus-core/transfer/page.mdx

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export default {
"fetch-unified-balances": "Unified Balance",
"transfer": "Transfer",
"bridge-tokens": "Bridge",
"bridge": "Bridge",
"bridge-and-execute": "Bridge & Execute",
"api-reference": "API Reference"
}
Loading