Skip to content

Commit 342dea2

Browse files
authored
Merge pull request #64 from vectorlessflow/dev
Dev
2 parents 76e6eed + b5e2120 commit 342dea2

7 files changed

Lines changed: 641 additions & 38 deletions

File tree

docs/blog/authors.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ zTgx:
33
title: Rust Developer
44
url: https://beautifularea.com
55
page: true
6+
image_url: https://www.beautifularea.com/images/design-mode/beautifularea.png
67
socials:
78
x: pendingcode
89
github: zTgx

docs/docs/intro.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ asyncio.run(main())
4747
```toml
4848
[dependencies]
4949
vectorless = "0.1"
50-
tokio = { version = "1", features = ["full"] }
5150
```
5251

5352
```rust

docs/docusaurus.config.ts

Lines changed: 26 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -82,38 +82,54 @@ const config: Config = {
8282
style: 'light',
8383
links: [
8484
{
85-
title: 'Docs',
85+
title: 'Product',
8686
items: [
8787
{
8888
label: 'Getting Started',
8989
to: '/docs/intro',
9090
},
91+
{
92+
label: 'Documentation',
93+
to: '/docs/intro',
94+
},
95+
{
96+
label: 'Blog',
97+
to: '/blog',
98+
},
9199
],
92100
},
93101
{
94-
title: 'Packages',
102+
title: 'Integrations',
95103
items: [
96104
{
97-
label: 'Rust (crates.io)',
105+
label: 'Python SDK',
106+
href: 'https://pypi.org/project/vectorless/',
107+
},
108+
{
109+
label: 'Rust Crate',
98110
href: 'https://crates.io/crates/vectorless',
99111
},
100112
{
101-
label: 'Python (PyPI)',
102-
href: 'https://pypi.org/project/vectorless/',
113+
label: 'API Reference',
114+
href: 'https://docs.rs/vectorless',
103115
},
104116
],
105117
},
106118
{
107-
title: 'More',
119+
title: 'Community',
108120
items: [
109-
{
110-
label: 'Blog',
111-
to: '/blog',
112-
},
113121
{
114122
label: 'GitHub',
115123
href: 'https://github.com/vectorlessflow/vectorless',
116124
},
125+
{
126+
label: 'Report a Bug',
127+
href: 'https://github.com/vectorlessflow/vectorless/issues',
128+
},
129+
{
130+
label: 'Apache 2.0 License',
131+
href: 'https://github.com/vectorlessflow/vectorless/blob/main/LICENSE',
132+
},
117133
],
118134
},
119135
],

docs/src/css/custom.css

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,46 @@
4747
background-color: var(--ifm-background-color) !important;
4848
}
4949

50-
/* Footer: transparent */
50+
/* ===== Footer ===== */
5151
.footer {
5252
background-color: transparent !important;
53+
padding: 3rem 1.5rem 2rem;
54+
}
55+
56+
/* Column titles */
57+
.footer__title {
58+
font-size: 0.8rem;
59+
font-weight: 700;
60+
text-transform: uppercase;
61+
letter-spacing: 0.08em;
62+
color: var(--text);
63+
margin-bottom: 0.75rem;
64+
}
65+
66+
/* Link items */
67+
.footer__link-item {
68+
font-size: 0.88rem;
69+
color: var(--text-light);
70+
line-height: 1.8;
71+
transition: color 0.15s;
72+
}
73+
74+
.footer__link-item:hover {
75+
color: var(--primary);
76+
}
77+
78+
/* Hide external-link icons */
79+
.footer__link-item svg {
80+
display: none;
81+
}
82+
83+
/* Copyright */
84+
.footer__copyright {
85+
text-align: center;
86+
font-size: 0.8rem;
87+
color: var(--text-light);
88+
letter-spacing: 0.03em;
89+
margin-top: 2rem;
90+
padding-top: 1.5rem;
91+
border-top: 1px solid var(--border);
5392
}

0 commit comments

Comments
 (0)