Skip to content

Commit 7c48088

Browse files
0.4.0 release (#55)
* update docs * Update 1-overview.mdx * Update last_commit_sync.txt * update docs * update * add descriptions * add llm docs * latest * fix: keys * fix: npm build * refactor: remove scrolling code, keep highlights * Docs design updates (#59) * update headings * Update global.css * Update global.css * Update global.css * fix: content --------- Co-authored-by: Reece Williams <[email protected]> * Update global.css * update docs * update * update docs --------- Co-authored-by: Reece Williams <[email protected]>
1 parent 308379d commit 7c48088

32 files changed

+2062
-1384
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Live site: https://docs.wavs.xyz/
66

77
## Build Locally
88

9-
```
9+
```bash
1010
npm i
1111
npm run dev
1212
```
@@ -39,7 +39,7 @@ Because the actual class names are generated by Fumadocs, you'll have to overwri
3939

4040
### Callouts
4141

42-
```
42+
```mdx
4343
import { Callout } from 'fumadocs-ui/components/callout';
4444
<Callout title="Info" type="info">
4545
Hello World
@@ -56,7 +56,7 @@ import { Callout } from 'fumadocs-ui/components/callout';
5656

5757
### Cards
5858

59-
```
59+
```mdx
6060
import {Layers, Microscope } from 'lucide-react';
6161

6262
<Cards>
@@ -78,7 +78,7 @@ import {Layers, Microscope } from 'lucide-react';
7878

7979
### Tabs
8080

81-
```
81+
```mdx
8282
import { Tab, Tabs } from 'fumadocs-ui/components/tabs';
8383

8484
<Tabs items={['Javascript', 'Rust']}>

app/global.css

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,15 +123,15 @@ html.light {
123123
.prose li a {
124124
color: var(--tw-prose-links);
125125
text-decoration: none;
126-
opacity: 0.90; /* Slightly lighter when not hovered */
126+
opacity: 1;
127127
transition: color 0.2s ease, opacity 0.2s ease, text-decoration 0.2s ease;
128128
}
129129

130130
.prose p a:hover,
131131
.prose li a:hover {
132-
color: hsl(var(--text-accent)); /* Darker on hover */
132+
color: var(--tw-prose-links); /* Same color on hover */
133133
text-decoration: underline;
134-
opacity: 1; /* Full opacity on hover */
134+
opacity: 0.80;
135135
}
136136

137137
/* Ensure links in headings don't inherit --tw-prose-links */
@@ -161,3 +161,30 @@ html.light {
161161
font-family: monospace;
162162
}
163163

164+
/* ****** HEADING COLORS ****** */
165+
/* .prose h1,
166+
.prose h2,
167+
.prose h3,
168+
.prose h4,
169+
.prose h5,
170+
.prose h6 {
171+
color: #8A6244;
172+
} */
173+
174+
/* ****** CALLOUT INFO ICON ****** */
175+
.fill-blue-500 {
176+
fill: #9376A4 !important;
177+
}
178+
179+
/* ****** CARD ICONS ****** */
180+
[data-card] svg,
181+
.card svg,
182+
a[href] svg {
183+
stroke: #A87B5A !important;
184+
}
185+
186+
/* ****** BLOCKQUOTE ****** */
187+
.prose blockquote {
188+
color: #9376A4 !important;
189+
}
190+

content/docs/benefits.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: WAVS benefits
3+
description: Key advantages and use cases of WAVS platform
34
---
45
import { Callout } from 'fumadocs-ui/components/callout';
56
import { Tab, Tabs } from "fumadocs-ui/components/tabs";
@@ -23,7 +24,7 @@ WAVS redefines the AVS paradigm, making AVSs easier to build, less expensive to
2324
- WASI components have instantaneous initialization vs. Docker's redundant OS layers and slower boot times.
2425
2. Simplified Development
2526
- Focus on your application logic, not overhead:
26-
- With templates, theres no need to write multiple custom contracts to parse events or aggregate signatures.
27+
- With templates, there's no need to write multiple custom contracts to parse events or aggregate signatures.
2728
- WAVS handles common AVS infrastructure, leaving AVS developers to focus on their core logic.
2829
3. Multichain Ready
2930
- WAVS is built to operate across multiple blockchain environments and will be released with support for EVM networks.

0 commit comments

Comments
 (0)