Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
14 changes: 14 additions & 0 deletions docs/website/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,20 @@ $ npm install

That command installs our Node.js package defined in `package.json`.

### Python Dependencies

The website build process requires Python dependencies, including `pydoc-markdown` for generating API documentation. Install them with:

```
$ uv pip install -r requirements.txt
```

Or if you're using the project's `uv` environment from the root directory:

```
$ uv pip install -e ".[docs]"
```

### Are you new to Node?

`npm` is a package manager bundled with Node.js. If `npm install` complained that you have an old version, try:
Expand Down
10 changes: 10 additions & 0 deletions docs/website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,16 @@ const config = {
}
],
},
{
title: 'Workspace',
items: [
{
label: 'Scaffoldings',
href: 'https://dlthub.com/workspace',
className: 'footer-link'
}
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} dltHub, Inc.`,
},
Expand Down
34 changes: 34 additions & 0 deletions docs/website/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 28 additions & 2 deletions docs/website/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,21 @@ html[data-theme='dark'] .markdown a.card {
}

.footer__copyright {
color: #191937;
color: #6b7280;
text-align: left !important;
}

.footer__bottom {
text-align: left !important;
}

.footer .container .row:last-child {
justify-content: flex-start !important;
}

.footer .container .row:last-child .col {
text-align: left !important;
padding-left: 0;
}

.details_node_modules-\@docusaurus-theme-classic-lib-theme-Details-styles-module {
Expand Down Expand Up @@ -144,7 +158,7 @@ html[data-theme='dark'] .navbar__items.navbar__items--right .clean-btn svg > pa

}
html[data-theme='dark'] .footer__copyright {
color: #fff
color: #9ca3af;
}

html[data-theme='dark'] .footer__title {
Expand All @@ -163,6 +177,10 @@ html[data-theme='dark'] .footer--dark {
color: #191937 !important;
}

html[data-theme='dark'] .footer__link-item {
color: #ffffff !important;
}

.footer__link-item:hover {
--ifm-color-primary-lightest: #4C4898 !important;
}
Expand Down Expand Up @@ -196,6 +214,14 @@ html[data-theme='dark'] .DocSearch-Reset svg > path {
html[data-theme='dark'] .DocSearch-MagnifierLabel>svg {
color: #191937 !important;
}
.footer__item a {
color: #191937 !important;
}

html[data-theme='dark'] .footer__item a {
color: #ffffff !important;
}

.footer__item a:hover{
color:#4C4898;
text-decoration: none;
Expand Down