Skip to content

Commit

Permalink
Sy 1209 update logos (#820)
Browse files Browse the repository at this point in the history
* feat(media): Add name resources
* docs: update file paths for icons
  • Loading branch information
pjdotson committed Sep 13, 2024
1 parent ab17586 commit 172c8b1
Show file tree
Hide file tree
Showing 52 changed files with 518 additions and 222 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<br />
<p align="center">
<a href="https://synnaxlabs.com/">
<img src="x/media/static/logo/icon-white-on-black.png" width="20%"/>
<img src="x/media/static/logo/icon-white-padded.png" width="20%"/>
</a>
<br />
<br />
Expand Down
27 changes: 13 additions & 14 deletions aspen/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<br />
<p align="center">
<a href="https://synnaxlabs.com/">
<img src="../x/media/static/logo/icon-white-on-black.png" width="20%"/>
<img src="../x/media/static/logo/icon-white-padded.png" width="20%"/>
</a>
<br />
<br />
Expand Down Expand Up @@ -31,30 +31,29 @@ synchronizing changes when it rejoins the cluster.

# Stability and Important Considerations

* Aspen is in active development and is not yet ready for production use. The key-value
API is stable, but the cluster API will likely change.
- Aspen is in active development and is not yet ready for production use. The key-value
API is stable, but the cluster API will likely change.

* Aspen maintains an entire copy of the key-value store on each node in the cluster. This
results in excellent read performance, but also means total storage requirements scale
linearly with cluster size.
- Aspen maintains an entire copy of the key-value store on each node in the cluster. This
results in excellent read performance, but also means total storage requirements scale
linearly with cluster size.

* Aspen is eventually consistent, meaning that reads may be stale for some period of time.
- Aspen is eventually consistent, meaning that reads may be stale for some period of time.

* The gossip protocol lacks three essential features: failure detection, failure recovery,
and efficient propagation guarantees. These are features that are currently in active
development.
- The gossip protocol lacks three essential features: failure detection, failure recovery,
and efficient propagation guarantees. These are features that are currently in active
development.

* While multi-node writes batched writes are supported, they are not yet transactional.
Single node batch writes are transactional (if the underlying key-value store supports
them).
- While multi-node writes batched writes are supported, they are not yet transactional.
Single node batch writes are transactional (if the underlying key-value store supports
them).

## Installation

```
go get github.com/synnaxlabs/aspen
```


## Usage

```go
Expand Down
2 changes: 1 addition & 1 deletion client/py/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<p align="center">
<a href="https://synnaxlabs.com/">
<img src="../../x/media/static/logo/title-white-on-black.svg" width="65%"/>
<img src="../../x/media/static/logo/icon-white-padded.png" width="20%"/>
</a>
</p>

Expand Down
2 changes: 1 addition & 1 deletion client/ts/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<a href="https://synnaxlabs.com/" style="display: block; text-align: center;">
<img src="../../x/media/static/logo/icon-white-on-black.png" width="20%"/>
<img src="../../x/media/static/logo/icon-white-padded.png" width="20%"/>
</a>

# Synnax TypeScript Client Library
Expand Down
2 changes: 1 addition & 1 deletion console/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<p align="center">
<a href="https://docs.synnaxlabs.com/reference/console/get-started">
<img src="../x/media/static/logo/icon-white-on-black.png" width="20%"/>
<img src="../x/media/static/logo/icon-white-padded.png" width="20%"/>
</a>
</p>

Expand Down
2 changes: 1 addition & 1 deletion pluto/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<p align="center">
<a href="https://synnaxlabs.com/">
<img src="../x/media/static/logo/icon-white-on-black.png" width="20%"/>
<img src="../x/media/static/logo/icon-white-padded.png" width="20%"/>
</a>
</p>

Expand Down
2 changes: 1 addition & 1 deletion synnax/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<p align="center">
<a href="https://synnaxlabs.com/">
<img src="../x/media/static/logo/icon-white-on-black.png" width="20%"/>
<img src="../x/media/static/logo/icon-white-padded.png" width="20%"/>
</a>
</p>

Expand Down
3 changes: 0 additions & 3 deletions x/media/.vscode/settings.json

This file was deleted.

2 changes: 1 addition & 1 deletion x/media/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@

import synnaxConfig from "eslint-config-synnaxlabs";

export default synnaxConfig
export default synnaxConfig;
7 changes: 6 additions & 1 deletion x/media/src/Logo/Logo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,12 @@ export const Logo = ({
const Internal = VARIANTS[variant];
return (
<Internal
className={clsx('synnax-logo',`synnax-logo--${color}`, `synnax-logo--${variant}`, className)}
className={clsx(
"synnax-logo",
`synnax-logo--${color}`,
`synnax-logo--${variant}`,
className,
)}
{...props}
/>
);
Expand Down
3 changes: 1 addition & 2 deletions x/media/src/Logo/LogoWatermark.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ import { ReactElement } from "react";
import { Logo, LogoProps } from "@/Logo/Logo";

/**
* LogoWatermark displays the Synnax logo as a watermark in the center of the
* screen.
* LogoWatermark displays the Synnax logo as a watermark in the center of the screen.
*
* @param props - The same props as Logo.
*/
Expand Down
2 changes: 1 addition & 1 deletion x/media/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
// License, use of this software will be governed by the Apache License, Version 2.0,
// included in the file licenses/APL.txt.

export { Icon, type IconProps} from "@/Icon";
export { Icon, type IconProps } from "@/Icon";
export * from "@/Logo";
File renamed without changes
28 changes: 28 additions & 0 deletions x/media/static/logo/icon-black-transparent.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 0 additions & 12 deletions x/media/static/logo/icon-black.svg

This file was deleted.

58 changes: 48 additions & 10 deletions x/media/static/logo/icon-gradient-macos.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions x/media/static/logo/icon-gradient-padded-transparent.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
37 changes: 37 additions & 0 deletions x/media/static/logo/icon-gradient-padded.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
44 changes: 44 additions & 0 deletions x/media/static/logo/icon-gradient-transparent.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 0 additions & 12 deletions x/media/static/logo/icon-gradient.svg

This file was deleted.

20 changes: 0 additions & 20 deletions x/media/static/logo/icon-padded-transparent.svg

This file was deleted.

Loading

0 comments on commit 172c8b1

Please sign in to comment.