import "./index.css" import { Title, Meta } from "@solidjs/meta" import { Header } from "~/component/header" import { Footer } from "~/component/footer" import { Legal } from "~/component/legal" import previewLogoLight from "../../asset/brand/preview-opencode-logo-light.png" import previewLogoDark from "../../asset/brand/preview-opencode-logo-dark.png" import previewWordmarkLight from "../../asset/brand/preview-opencode-wordmark-light.png" import previewWordmarkDark from "../../asset/brand/preview-opencode-wordmark-dark.png" import previewWordmarkSimpleLight from "../../asset/brand/preview-opencode-wordmark-simple-light.png" import previewWordmarkSimpleDark from "../../asset/brand/preview-opencode-wordmark-simple-dark.png" import logoLightPng from "../../asset/brand/opencode-logo-light.png" import logoDarkPng from "../../asset/brand/opencode-logo-dark.png" import wordmarkLightPng from "../../asset/brand/opencode-wordmark-light.png" import wordmarkDarkPng from "../../asset/brand/opencode-wordmark-dark.png" import wordmarkSimpleLightPng from "../../asset/brand/opencode-wordmark-simple-light.png" import wordmarkSimpleDarkPng from "../../asset/brand/opencode-wordmark-simple-dark.png" import logoLightSvg from "../../asset/brand/opencode-logo-light.svg" import logoDarkSvg from "../../asset/brand/opencode-logo-dark.svg" import wordmarkLightSvg from "../../asset/brand/opencode-wordmark-light.svg" import wordmarkDarkSvg from "../../asset/brand/opencode-wordmark-dark.svg" import wordmarkSimpleLightSvg from "../../asset/brand/opencode-wordmark-simple-light.svg" import wordmarkSimpleDarkSvg from "../../asset/brand/opencode-wordmark-simple-dark.svg" export default function Brand() { const downloadFile = (url: string, filename: string) => { const link = document.createElement("a") link.href = url link.download = filename document.body.appendChild(link) link.click() document.body.removeChild(link) } return (
OpenCode | Brand

Brand guidelines

Resources and assets to help you work with the OpenCode brand.

OpenCode brand guidelines
OpenCode brand guidelines
OpenCode brand guidelines
OpenCode brand guidelines
OpenCode brand guidelines
OpenCode brand guidelines
) }