
Security News
Potemkin Understanding in LLMs: New Study Reveals Flaws in AI Benchmarks
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
oceanprotocol-art
Advanced tools
🐳 Ocean Protocol's assets for community distribution.
All assets in this repo can also be viewed and downloaded from oceanprotocol.com/art. You'll find a living styleguide there too.
Our branding typefaces are Sharp Sans Medium/Bold in use as body text, and Sharp Sans Display No. 1 Bold for headings.
Those are commercial fonts and the license doesn't allow us to distribute them. Hence you won't find them in this repository. If you're a member of the Ocean Protocol team ask a designer to hand you the font files.
If you only need them for use on the web, you can grab them from inside the private site
repo's fonts folder.
It's encouraged to use this repo as a dependency within your projects to keep the assets in sync. The whole repo is published as a npm module so just run for installation:
npm install oceanprotocol-art
From the root of your project folder execute the following to put the submodule under lib/art/
:
git submodule add git@github.com:oceanprotocol/art.git lib/art
Then, from time to time, update the submodule to get latest upstream changes:
# go into submodule folder
cd ./lib/art
git checkout master
git pull
# get back to your project root
cd ../../
# or if you're a busy person, update all your submodules at once from the root of your project
git submodule foreach git pull origin master
Import the required assets into your project, which will return the file source path:
import Logo from './lib/art/logo/logo.svg'
<img src={Logo} />
But you usually want SVG assets to be inlined for full control over styling with CSS. To achieve that, you can incorporate svgr into your build process to import SVG assets as actual React components:
import Logo from './lib/art/logo/logo.svg'
<Logo className="logo" />
And then style away in CSS:
.logo {
fill: #141414;
stroke: none;
}
All assets are licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.
FAQs
Ocean Protocol's assets for community distribution.
The npm package oceanprotocol-art receives a total of 0 weekly downloads. As such, oceanprotocol-art popularity was classified as not popular.
We found that oceanprotocol-art demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.