Skip to content

Commit

Permalink
docs: light and dark mode logo
Browse files Browse the repository at this point in the history
# Conflicts:
#	README.md
  • Loading branch information
domoritz authored and carlopi committed Oct 6, 2024
1 parent 844406c commit 1c3b308
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 15 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<div align="center">
<img src="https://raw.githubusercontent.com/duckdb/duckdb-wasm/main/misc/duckdb_wasm.svg" height="80">
<picture>
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/duckdb/duckdb-wasm/main/misc/duckdb_wasm.svg">
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/duckdb/duckdb-wasm/main/misc/duckdb_wasm_light.svg">
<img alt="The DuckDB WASM logo." src="https://raw.githubusercontent.com/duckdb/duckdb-wasm/main/misc/duckdb_wasm.svg" height="80">
</picture>
<h1>DuckDB-Wasm</h1>
</div>

Expand Down Expand Up @@ -31,9 +35,11 @@ Duckdb-Wasm speaks Arrow fluently, reads Parquet, CSV and JSON files backed by F
Try it out at [shell.duckdb.org](https://shell.duckdb.org) or [Observable](https://observablehq.com/@observablehq/duckdb), read the [API documentation](https://shell.duckdb.org/docs/modules/index.html), check out the [web-app examples](https://github.com/duckdb-wasm-examples), and chat with us on [Discord](https://discord.duckdb.org).

## DuckDB and DuckDB-Wasm

DuckDB-Wasm is currently based on DuckDB v1.1.1.

## DuckDB-Wasm with DuckDB Extension

```sql
--- Excplicitly load extensions
LOAD icu;
Expand All @@ -44,6 +50,7 @@ FROM read_json('https://some.url/file.json');
```

## Build from source

```shell
git clone https://github.com/duckdb/duckdb-wasm.git
cd duckdb-wasm
Expand Down
15 changes: 1 addition & 14 deletions misc/duckdb_wasm.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions misc/duckdb_wasm_light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 1c3b308

Please sign in to comment.