cleanup
@@ -1,21 +0,0 @@
|
||||
# build output
|
||||
dist/
|
||||
# generated types
|
||||
.astro/
|
||||
|
||||
# dependencies
|
||||
node_modules/
|
||||
|
||||
# logs
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
|
||||
# environment variables
|
||||
.env
|
||||
.env.production
|
||||
|
||||
# macOS-specific files
|
||||
.DS_Store
|
||||
@@ -1,4 +0,0 @@
|
||||
{
|
||||
"recommendations": ["astro-build.astro-vscode"],
|
||||
"unwantedRecommendations": []
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"command": "./node_modules/.bin/astro dev",
|
||||
"name": "Development server",
|
||||
"request": "launch",
|
||||
"type": "node-terminal"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,41 +0,0 @@
|
||||
# Setting up Astro with Extensions for local development
|
||||
|
||||
Follow these steps to set up Astro with Starlight and additional extensions:
|
||||
|
||||
1. **Install Node.js and npm**
|
||||
|
||||
Ensure you have Node.js and npm installed on your system. You can download them from [nodejs.org](https://nodejs.org/).
|
||||
|
||||
2. **Fork the documentation-coolify repository and open the folder in a code editor**
|
||||
|
||||
3. **Install Dependencies**
|
||||
|
||||
Run the following command inside the local repository:
|
||||
```
|
||||
npm install
|
||||
```
|
||||
|
||||
4. **Optional: Install the Astro and MDX VS Code extension**
|
||||
|
||||
Install the Astro and MDX VS Code extension to get syntax highlighting and other useful features:
|
||||
- [Astro](https://marketplace.visualstudio.com/items?itemName=astro-build.astro-vscode)
|
||||
- [MDX](https://marketplace.visualstudio.com/items?itemName=unifiedjs.vscode-mdx)
|
||||
|
||||
5. **Run your Astro site**
|
||||
|
||||
Start the development server by running the following command inside the local repository:
|
||||
```
|
||||
npm run dev
|
||||
```
|
||||
This will start a local server and give you a URL to preview your changes.
|
||||
|
||||
6. **Create your contribution**
|
||||
|
||||
Either edit a markdown file in the `src/content/docs/` directory or create a new `.mdx` file in the `src/content/docs/` directory and start writing your docs article.
|
||||
|
||||
|
||||
7. **Create a Pull Request**
|
||||
|
||||
Create a new pull request from your forked repository to the main documentation-coolify repository.
|
||||
|
||||
|
||||
@@ -1,14 +0,0 @@
|
||||
FROM node:20 AS build
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package*.json ./
|
||||
RUN npm ci
|
||||
|
||||
COPY . .
|
||||
RUN npm run build
|
||||
|
||||
FROM nginx:alpine AS runtime
|
||||
COPY ./nginx.conf /etc/nginx/nginx.conf
|
||||
COPY --from=build /app/dist /usr/share/nginx/html
|
||||
EXPOSE 80
|
||||
@@ -1,718 +0,0 @@
|
||||
import starlight from "@astrojs/starlight";
|
||||
import tailwind from "@astrojs/tailwind";
|
||||
import { defineConfig } from "astro/config";
|
||||
import starlightImageZoom from "starlight-image-zoom";
|
||||
import starlightLinksValidator from "starlight-links-validator";
|
||||
import starlightOpenAPI, { openAPISidebarGroups } from "starlight-openapi";
|
||||
|
||||
import sitemap from "@astrojs/sitemap";
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
base: "/docs",
|
||||
site: "https://coolify.io/docs",
|
||||
redirects: {
|
||||
"/knowledge-base/applications": "/docs/applications",
|
||||
"/knowledge-base/applications/laravel": "/docs/applications/laravel",
|
||||
"/knowledge-base/applications/phoenix": "/docs/applications/phoenix",
|
||||
"/knowledge-base/applications/jekyll": "/docs/applications/jekyll",
|
||||
"/knowledge-base/applications/nextjs": "/docs/applications/nextjs",
|
||||
"/knowledge-base/applications/nuxt": "/docs/applications/nuxt",
|
||||
"/knowledge-base/applications/rails": "/docs/applications/rails",
|
||||
"/knowledge-base/applications/svelte-kit": "/docs/applications/svelte-kit",
|
||||
"/knowledge-base/applications/symfony": "/docs/applications/symfony",
|
||||
"/knowledge-base/applications/vite": "/docs/applications/vite",
|
||||
"/knowledge-base/applications/vuejs": "/docs/applications/vuejs",
|
||||
"/knowledge-base/databases": "/docs/databases",
|
||||
"/knowledge-base/databases/backups": "/docs/databases/backups",
|
||||
"/knowledge-base/databases/mysql": "/docs/databases/mysql",
|
||||
"/knowledge-base/databases/mariadb": "/docs/databases/mariadb",
|
||||
"/knowledge-base/databases/postgresql": "/docs/databases/postgresql",
|
||||
"/knowledge-base/databases/mongodb": "/docs/databases/mongodb",
|
||||
"/knowledge-base/databases/redis": "/docs/databases/redis",
|
||||
"/knowledge-base/databases/dragonfly": "/docs/databases/dragonfly",
|
||||
"/knowledge-base/databases/keydb": "/docs/databases/keydb",
|
||||
"/knowledge-base/databases/clickhouse": "/docs/databases/clickhouse",
|
||||
"/knowledge-base/services": "/docs/services",
|
||||
"/knowledge-base/services/activepieces": "/docs/services/activepieces",
|
||||
"/knowledge-base/services/browserless": "/docs/services/browserless",
|
||||
"/knowledge-base/services/appsmith": "/docs/services/appsmith",
|
||||
"/knowledge-base/services/appwrite": "/docs/services/appwrite",
|
||||
"/knowledge-base/services/authentik": "/docs/services/authentik",
|
||||
"/knowledge-base/services/babybuddy": "/docs/services/babybuddy",
|
||||
"/knowledge-base/services/budge": "/docs/services/budge",
|
||||
"/knowledge-base/services/changedetection":
|
||||
"/docs/services/changedetection",
|
||||
"/knowledge-base/services/classicpress": "/docs/services/classicpress",
|
||||
"/knowledge-base/services/code-server": "/docs/services/code-server",
|
||||
"/knowledge-base/services/dashboard": "/docs/services/dashboard",
|
||||
"/knowledge-base/services/directus": "/docs/services/directus",
|
||||
"/knowledge-base/services/dokuwiki": "/docs/services/dokuwiki",
|
||||
"/knowledge-base/services/duplicati": "/docs/services/duplicati",
|
||||
"/knowledge-base/services/emby-stat": "/docs/services/emby-stat",
|
||||
"/knowledge-base/services/emby": "/docs/services/emby",
|
||||
"/knowledge-base/services/fider": "/docs/services/fider",
|
||||
"/knowledge-base/services/filebrowser": "/docs/services/filebrowser",
|
||||
"/knowledge-base/services/firefly-iii": "/docs/services/firefly-iii",
|
||||
"/knowledge-base/services/formbricks": "/docs/services/formbricks",
|
||||
"/knowledge-base/services/ghost": "/docs/services/ghost",
|
||||
"/knowledge-base/services/gitea": "/docs/services/gitea",
|
||||
"/knowledge-base/services/glitchtip": "/docs/services/glitchtip",
|
||||
"/knowledge-base/services/grafana": "/docs/services/grafana",
|
||||
"/knowledge-base/services/grocy": "/docs/services/grocy",
|
||||
"/knowledge-base/services/heimdall": "/docs/services/heimdall",
|
||||
"/knowledge-base/services/jellyfin": "/docs/services/jellyfin",
|
||||
"/knowledge-base/services/kuzzle": "/docs/services/kuzzle",
|
||||
"/knowledge-base/services/logto": "/docs/services/logto",
|
||||
"/knowledge-base/services/meilisearch": "/docs/services/meilisearch",
|
||||
"/knowledge-base/services/metabase": "/docs/services/metabase",
|
||||
"/knowledge-base/services/metube": "/docs/services/metube",
|
||||
"/knowledge-base/services/minio": "/docs/services/minio",
|
||||
"/knowledge-base/services/plausible": "/docs/services/plausible",
|
||||
"/knowledge-base/services/statusnook": "/docs/services/statusnook",
|
||||
"/knowledge-base/contribute/coolify": "/docs/contribute/coolify",
|
||||
"/knowledge-base/contribute/service": "/docs/contribute/service",
|
||||
"/knowledge-base/contribute/documentation":
|
||||
"/docs/contribute/documentation",
|
||||
},
|
||||
integrations: [
|
||||
tailwind({
|
||||
// Disable the default base styles:
|
||||
applyBaseStyles: false,
|
||||
}),
|
||||
starlight({
|
||||
head: [
|
||||
{
|
||||
tag: "meta",
|
||||
attrs: {
|
||||
name: "description",
|
||||
content:
|
||||
"An open-source & self-hostable Heroku / Netlify / Vercel alternative.",
|
||||
},
|
||||
},
|
||||
//og:type
|
||||
{
|
||||
tag: "meta",
|
||||
attrs: {
|
||||
property: "og:type",
|
||||
content: "website",
|
||||
},
|
||||
},
|
||||
{
|
||||
tag: "meta",
|
||||
attrs: {
|
||||
property: "og:image",
|
||||
content:
|
||||
"https://coolcdn.b-cdn.net/assets/coolify/og-image-docs.png",
|
||||
},
|
||||
},
|
||||
{
|
||||
tag: "meta",
|
||||
attrs: {
|
||||
property: "og:url",
|
||||
content: "https://coolify.io/docs",
|
||||
},
|
||||
},
|
||||
{
|
||||
tag: "meta",
|
||||
attrs: {
|
||||
property: "og:site_name",
|
||||
content: "Coolify",
|
||||
},
|
||||
},
|
||||
{
|
||||
tag: "meta",
|
||||
attrs: {
|
||||
name: "twitter:image",
|
||||
content:
|
||||
"https://coolcdn.b-cdn.net/assets/coolify/og-image-docs.png",
|
||||
},
|
||||
},
|
||||
{
|
||||
tag: "meta",
|
||||
attrs: {
|
||||
name: "twitter:card",
|
||||
content: "summary_large_image",
|
||||
},
|
||||
},
|
||||
{
|
||||
tag: "meta",
|
||||
attrs: {
|
||||
name: "twitter:site",
|
||||
content: "@coolifyio",
|
||||
},
|
||||
},
|
||||
{
|
||||
tag: "meta",
|
||||
attrs: {
|
||||
name: "twitter:title",
|
||||
content: "Coolify",
|
||||
},
|
||||
},
|
||||
{
|
||||
tag: "meta",
|
||||
attrs: {
|
||||
name: "twitter:description",
|
||||
content:
|
||||
"An open-source & self-hostable Heroku / Netlify / Vercel alternative.",
|
||||
},
|
||||
},
|
||||
{
|
||||
tag: "script",
|
||||
attrs: {
|
||||
defer: true,
|
||||
"data-domain": "coolify.io/docs",
|
||||
src: "https://analytics.coollabs.io/js/script.js",
|
||||
},
|
||||
},
|
||||
],
|
||||
customCss: ["./src/tailwind.css"],
|
||||
favicon: "/coolify.png",
|
||||
plugins: [
|
||||
starlightLinksValidator(),
|
||||
starlightImageZoom(),
|
||||
starlightOpenAPI([
|
||||
{
|
||||
base: "api",
|
||||
label: "API",
|
||||
schema: "./openapi.yaml",
|
||||
},
|
||||
]),
|
||||
],
|
||||
title: "Coolify's Docs",
|
||||
logo: {
|
||||
src: "./src/assets/coolify-transparent.svg",
|
||||
},
|
||||
social: {
|
||||
github: "https://github.com/coollabsio/documentation-coolify",
|
||||
blueSky: "https://bsky.app/profile/coolify.io",
|
||||
"x.com": "https://x.com/coolifyio",
|
||||
discord: "https://discord.gg/coolify",
|
||||
twitch: "https://twitch.tv/heyandras",
|
||||
},
|
||||
sidebar: [
|
||||
{
|
||||
label: "Get Started",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{ label: "Introduction", link: "/" },
|
||||
{ label: "Screenshots", link: "/screenshots" },
|
||||
{ label: "Videos", link: "/videos" },
|
||||
{ label: "Quickstart", link: "/quickstart" },
|
||||
{ label: "Installation - Self-hosted", link: "/installation" },
|
||||
{ label: "Uninstall - Self-hosted", link: "/uninstall" },
|
||||
{ label: "Upgrade - Self-hosted", link: "/upgrade" },
|
||||
{ label: "Downgrade - Self-hosted", link: "/downgrade" },
|
||||
{ label: "Contact", link: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "How to Contribute?",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{
|
||||
label: "Coolify",
|
||||
link: "/contribute/coolify",
|
||||
},
|
||||
{
|
||||
label: "New Service",
|
||||
link: "/contribute/service",
|
||||
},
|
||||
{
|
||||
label: "Documentation",
|
||||
link: "/contribute/documentation",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "Applications",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{ label: "Overview", link: "/applications" },
|
||||
{
|
||||
label: "Django",
|
||||
link: "/applications/django",
|
||||
},
|
||||
{
|
||||
label: "Phoenix",
|
||||
link: "/applications/phoenix",
|
||||
},
|
||||
{
|
||||
label: "Laravel",
|
||||
link: "/applications/laravel",
|
||||
},
|
||||
{
|
||||
label: "Jekyll",
|
||||
link: "/applications/jekyll",
|
||||
},
|
||||
{
|
||||
label: "Next.js",
|
||||
link: "/applications/nextjs",
|
||||
},
|
||||
{
|
||||
label: "Nuxt",
|
||||
link: "/applications/nuxt",
|
||||
},
|
||||
{
|
||||
label: "Ruby on Rails",
|
||||
link: "/applications/rails",
|
||||
},
|
||||
{
|
||||
label: "SvelteKit",
|
||||
link: "/applications/svelte-kit",
|
||||
},
|
||||
{
|
||||
label: "Symfony",
|
||||
link: "/applications/symfony",
|
||||
},
|
||||
{
|
||||
label: "Vite",
|
||||
link: "/applications/vite",
|
||||
},
|
||||
{
|
||||
label: "Vue.js",
|
||||
link: "/applications/vuejs",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "Databases",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{ label: "Overview", link: "/databases" },
|
||||
{
|
||||
label: "Backups",
|
||||
link: "/databases/backups",
|
||||
},
|
||||
{ label: "MySQL", link: "/databases/mysql" },
|
||||
{
|
||||
label: "MariaDB",
|
||||
link: "/databases/mariadb",
|
||||
},
|
||||
{
|
||||
label: "PostgreSQL",
|
||||
link: "/databases/postgresql",
|
||||
},
|
||||
{
|
||||
label: "MongoDB",
|
||||
link: "/databases/mongodb",
|
||||
},
|
||||
{ label: "Redis", link: "/databases/redis" },
|
||||
{
|
||||
label: "DragonFly",
|
||||
link: "/databases/dragonfly",
|
||||
},
|
||||
{ label: "KeyDB", link: "/databases/keydb" },
|
||||
{
|
||||
label: "Clickhouse",
|
||||
link: "/databases/clickhouse",
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
{
|
||||
label: "Services",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{ label: "Overview", link: "/services" },
|
||||
{ label: "Activepieces", link: "/services/activepieces" },
|
||||
{ label: "AnythingLLM", link: "/services/anythingllm" },
|
||||
{ label: "Appsmith", link: "/services/appsmith" },
|
||||
{ label: "Appwrite", link: "/services/appwrite" },
|
||||
{ label: "Argilla", link: "/services/argilla" },
|
||||
{ label: "Authentik", link: "/services/authentik" },
|
||||
{ label: "Baby Buddy", link: "/services/babybuddy" },
|
||||
{ label: "Browserless", link: "/services/browserless" },
|
||||
{ label: "Budge", link: "/services/budge" },
|
||||
{ label: "Beszel", link: "/services/beszel" },
|
||||
{ label: "Changedetection", link: "/services/changedetection" },
|
||||
{ label: "Chaskiq", link: "/services/chaskiq" },
|
||||
{ label: "Chatwoot", link: "/services/chatwoot" },
|
||||
{ label: "Classicpress", link: "/services/classicpress" },
|
||||
{ label: "Cloudflared", link: "/services/cloudflared" },
|
||||
{ label: "Code Server", link: "/services/code-server" },
|
||||
{ label: "Dashboard", link: "/services/dashboard" },
|
||||
{ label: "Directus", link: "/services/directus" },
|
||||
{ label: "Docker Registry", link: "/services/docker-registry" },
|
||||
{ label: "Docmost", link: "/services/docmost" },
|
||||
{ label: "Docuseal", link: "/services/docuseal" },
|
||||
{ label: "Dokuwiki", link: "/services/dokuwiki" },
|
||||
{ label: "Dozzle", link: "/services/dozzle" },
|
||||
{ label: "Duplicati", link: "/services/duplicati" },
|
||||
{ label: "Emby", link: "/services/emby" },
|
||||
{ label: "Emby Stat", link: "/services/emby-stat" },
|
||||
{ label: "Fider", link: "/services/fider" },
|
||||
{ label: "Filebrowser", link: "/services/filebrowser" },
|
||||
{ label: "FileFlows", link: "/services/fileflows" },
|
||||
{ label: "Firefly III", link: "/services/firefly-iii" },
|
||||
{ label: "Formbricks", link: "/services/formbricks" },
|
||||
{ label: "Forgejo", link: "/services/forgejo" },
|
||||
{ label: "Ghost", link: "/services/ghost" },
|
||||
{ label: "Gitea", link: "/services/gitea" },
|
||||
{ label: "Gitlab", link: "/services/gitlab" },
|
||||
{ label: "Glance", link: "/services/glance" },
|
||||
{ label: "Glances", link: "/services/glances" },
|
||||
{ label: "Glitchtip", link: "/services/glitchtip" },
|
||||
{ label: "Gotenberg", link: "/services/gotenberg" },
|
||||
{ label: "Grafana", link: "/services/grafana" },
|
||||
{ label: "Grocy", link: "/services/grocy" },
|
||||
{ label: "Heimdall", link: "/services/heimdall" },
|
||||
{ label: "Homepage", link: "/services/homepage" },
|
||||
{ label: "Infisical", link: "/services/infisical" },
|
||||
{ label: "Invoice Ninja", link: "/services/invoice-ninja" },
|
||||
{ label: "Jellyfin", link: "/services/jellyfin" },
|
||||
{ label: "Jenkins", link: "/services/jenkins" },
|
||||
{ label: "Kimai", link: "/services/kimai" },
|
||||
{ label: "Kuzzle", link: "/services/kuzzle" },
|
||||
{ label: "Label Studio", link: "/services/labelstudio" },
|
||||
{ label: "Langfuse", link: "/services/langfuse" },
|
||||
{ label: "Listmonk", link: "/services/listmonk" },
|
||||
{ label: "Litellm", link: "/services/litellm" },
|
||||
{ label: "Logto", link: "/services/logto" },
|
||||
{ label: "Mailpit", link: "/services/mailpit" },
|
||||
{ label: "Mediawiki", link: "/services/mediawiki" },
|
||||
{ label: "Meilisearch", link: "/services/meilisearch" },
|
||||
{ label: "Metabase", link: "/services/metabase" },
|
||||
{ label: "Metube", link: "/services/metube" },
|
||||
{ label: "Minecraft", link: "/services/minecraft" },
|
||||
{ label: "Minio", link: "/services/minio" },
|
||||
{ label: "Mixpost", link: "/services/mixpost" },
|
||||
{ label: "Moodle", link: "/services/moodle" },
|
||||
{ label: "Mosquitto", link: "/services/mosquitto" },
|
||||
{ label: "N8N", link: "/services/n8n" },
|
||||
{ label: "Nextcloud", link: "/services/nextcloud" },
|
||||
{ label: "Nexus", link: "/services/nexus" },
|
||||
{ label: "Nitropage", link: "/services/nitropage" },
|
||||
{ label: "NocoDB", link: "/services/nocodb" },
|
||||
{ label: "Odoo", link: "/services/odoo" },
|
||||
{ label: "Ollama", link: "/services/ollama" },
|
||||
{ label: "Openblocks", link: "/services/openblocks" },
|
||||
{ label: "Outline", link: "/services/outline" },
|
||||
{ label: "Overseerr", link: "/services/overseerr" },
|
||||
{ label: "Pairdrop", link: "/services/pairdrop" },
|
||||
{ label: "Penpot", link: "/services/penpot" },
|
||||
{ label: "PhpMyAdmin", link: "/services/phpmyadmin" },
|
||||
{ label: "Plane", link: "/services/plane" },
|
||||
{ label: "Plausible", link: "/services/plausible" },
|
||||
{ label: "Plex", link: "/services/plex" },
|
||||
{ label: "Plunk", link: "/services/plunk" },
|
||||
{ label: "Pocketbase", link: "/services/pocketbase" },
|
||||
{ label: "PostHog", link: "/services/posthog" },
|
||||
{ label: "Prefect", link: "/services/prefect" },
|
||||
{ label: "Prowlarr", link: "/services/prowlarr" },
|
||||
{ label: "Qdrant", link: "/services/qdrant" },
|
||||
{ label: "RabbitMQ", link: "/services/rabbitmq" },
|
||||
{ label: "Radarr", link: "/services/radarr" },
|
||||
{ label: "Reactive Resume", link: "/services/reactive-resume" },
|
||||
{ label: "Rocket.Chat", link: "/services/rocketchat" },
|
||||
{ label: "SearXNG", link: "/services/searxng" },
|
||||
{ label: "Shlink", link: "/services/shlink" },
|
||||
{ label: "Slash", link: "/services/slash" },
|
||||
{ label: "Snapdrop", link: "/services/snapdrop" },
|
||||
{ label: "Sonarr", link: "/services/sonarr" },
|
||||
{ label: "Statusnook", link: "/services/statusnook" },
|
||||
{ label: "Stirling PDF", link: "/services/stirling-pdf" },
|
||||
{ label: "Supabase", link: "/services/supabase" },
|
||||
{ label: "Syncthing", link: "/services/syncthing" },
|
||||
{ label: "Tolgee", link: "/services/tolgee" },
|
||||
{ label: "Trigger", link: "/services/trigger" },
|
||||
{ label: "Twenty", link: "/services/twenty" },
|
||||
{ label: "Umami", link: "/services/umami" },
|
||||
{ label: "Unleash", link: "/services/unleash" },
|
||||
{ label: "Unstructured", link: "/services/unstructured" },
|
||||
{ label: "Uptime Kuma", link: "/services/uptime-kuma" },
|
||||
{ label: "Vaultwarden", link: "/services/vaultwarden" },
|
||||
{ label: "Vikunja", link: "/services/vikunja" },
|
||||
{ label: "Weaviate", link: "/services/weaviate" },
|
||||
{ label: "Weblate", link: "/services/weblate" },
|
||||
{ label: "Whoogle", link: "/services/whoogle" },
|
||||
{ label: "Windmill", link: "/services/windmill" },
|
||||
{ label: "Wordpress", link: "/services/wordpress" },
|
||||
{ label: "Zipline", link: "/services/zipline" },
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "Knowledge Base",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{ label: "FAQ", link: "/knowledge-base/faq" },
|
||||
{ label: "Common Issues", link: "/knowledge-base/common-issues" },
|
||||
|
||||
{
|
||||
label: "Internal",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{
|
||||
label: "Scalability",
|
||||
link: "/knowledge-base/internal/scalability",
|
||||
},
|
||||
{
|
||||
label: "Terminal",
|
||||
link: "/knowledge-base/internal/terminal",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "Self-hosted Instance",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{ label: "Monitoring", link: "/knowledge-base/monitoring" },
|
||||
{
|
||||
label: "Notifications",
|
||||
link: "/knowledge-base/notifications",
|
||||
},
|
||||
{
|
||||
label: "Coolify Updates",
|
||||
link: "/knowledge-base/coolify-updates",
|
||||
},
|
||||
{
|
||||
label: "Create Root User with Environment Variables",
|
||||
link: "/knowledge-base/server/create-root-user-with-environment-variables",
|
||||
},
|
||||
{ label: "Commands", link: "/knowledge-base/commands" },
|
||||
{ label: "Delete User", link: "/knowledge-base/delete-user" },
|
||||
{ label: "OAuth", link: "/knowledge-base/oauth" },
|
||||
{ label: "Change Localhost Key", link: "/knowledge-base/change-localhost-key" },
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "DNS & Domains",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{
|
||||
label: "DNS Configuration",
|
||||
link: "/knowledge-base/dns-configuration",
|
||||
},
|
||||
{ label: "Domains", link: "/knowledge-base/domains" },
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "Resources",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{
|
||||
label: "Environment Variables",
|
||||
link: "/knowledge-base/environment-variables",
|
||||
},
|
||||
{
|
||||
label: "Persistent Storage",
|
||||
link: "/knowledge-base/persistent-storage",
|
||||
},
|
||||
{ label: "Drain Logs", link: "/knowledge-base/drain-logs" },
|
||||
{
|
||||
label: "Health checks",
|
||||
link: "/knowledge-base/health-checks",
|
||||
},
|
||||
{
|
||||
label: "Cron Syntax",
|
||||
link: "/knowledge-base/cron-syntax",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "How-Tos",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{
|
||||
label: "Load-balancing on Hetzner",
|
||||
link: "/knowledge-base/how-to/hetzner-loadbalancing",
|
||||
},
|
||||
{
|
||||
label: "Wordpress Multisite",
|
||||
link: "/knowledge-base/how-to/wordpress-multisite",
|
||||
},
|
||||
{
|
||||
label: "Raspberry Pi OS Setup",
|
||||
link: "/knowledge-base/how-to/raspberry-pi-os",
|
||||
},
|
||||
{
|
||||
label: "Private NPM Registry",
|
||||
link: "/knowledge-base/how-to/private-npm-registry",
|
||||
},
|
||||
{
|
||||
label: "Ollama with GPU",
|
||||
link: "/knowledge-base/how-to/ollama-with-gpu",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "Git",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{
|
||||
label: "GitHub",
|
||||
items: [
|
||||
{
|
||||
label: "Integration",
|
||||
link: "/knowledge-base/git/github/integration",
|
||||
},
|
||||
{
|
||||
label: "GitHub Actions",
|
||||
link: "/knowledge-base/git/github/github-actions",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "GitLab",
|
||||
items: [
|
||||
{
|
||||
label: "Integration",
|
||||
link: "/knowledge-base/git/gitlab/integration",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "Bitbucket",
|
||||
items: [
|
||||
{
|
||||
label: "Integration",
|
||||
link: "/knowledge-base/git/bitbucket/integration",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "Gitea",
|
||||
items: [
|
||||
{
|
||||
label: "Integration",
|
||||
link: "/knowledge-base/git/gitea/integration",
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "Server",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{
|
||||
label: "Introduction",
|
||||
link: "/knowledge-base/server/introduction",
|
||||
},
|
||||
{
|
||||
label: "Automated Cleanup",
|
||||
link: "/knowledge-base/server/automated-cleanup",
|
||||
},
|
||||
{
|
||||
label: "Build Server",
|
||||
link: "/knowledge-base/server/build-server",
|
||||
},
|
||||
{
|
||||
label: "Firewall",
|
||||
link: "/knowledge-base/server/firewall",
|
||||
},
|
||||
{
|
||||
label: "Multiple Servers",
|
||||
link: "/knowledge-base/server/multiple-servers",
|
||||
},
|
||||
{
|
||||
label: "Sentinel and Metrics",
|
||||
link: "/knowledge-base/server/sentinel",
|
||||
},
|
||||
{
|
||||
label: "Non-root User",
|
||||
link: "/knowledge-base/server/non-root-user",
|
||||
},
|
||||
{
|
||||
label: "OpenSSH",
|
||||
link: "/knowledge-base/server/openssh",
|
||||
},
|
||||
{
|
||||
label: "Oracle Cloud",
|
||||
link: "/knowledge-base/server/oracle-cloud",
|
||||
},
|
||||
{
|
||||
label: "Proxies",
|
||||
link: "/knowledge-base/server/proxies",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "S3",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{ label: "Introduction", link: "/knowledge-base/s3" },
|
||||
{ label: "AWS", link: "/knowledge-base/s3/aws" },
|
||||
{ label: "R2", link: "/knowledge-base/s3/r2" },
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "Docker",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{ label: "Compose", link: "/knowledge-base/docker/compose" },
|
||||
{
|
||||
label: "Custom Commands",
|
||||
link: "/knowledge-base/docker/custom-commands",
|
||||
},
|
||||
{ label: "Registry", link: "/knowledge-base/docker/registry" },
|
||||
{ label: "Swarm", link: "/knowledge-base/docker/swarm" },
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "Cloudflare",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{
|
||||
label: "Tunnels",
|
||||
link: "/knowledge-base/cloudflare/tunnels",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "Traefik",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{
|
||||
label: "Basic Auth Middleware",
|
||||
link: "/knowledge-base/traefik/basic-auth",
|
||||
},
|
||||
{
|
||||
label: "Custom SSL Certificates",
|
||||
link: "/knowledge-base/traefik/custom-ssl-certs",
|
||||
},
|
||||
{
|
||||
label: "Dashboard",
|
||||
link: "/knowledge-base/traefik/dashboard",
|
||||
},
|
||||
{
|
||||
label: "Dynamic Configurations",
|
||||
link: "/knowledge-base/traefik/dynamic-configurations",
|
||||
},
|
||||
{
|
||||
label: "Healthcheck",
|
||||
link: "/knowledge-base/traefik/healthcheck",
|
||||
},
|
||||
{
|
||||
label: "Load Balancing",
|
||||
link: "/knowledge-base/traefik/load-balancing",
|
||||
},
|
||||
{
|
||||
label: "Redirects",
|
||||
link: "/knowledge-base/traefik/redirects",
|
||||
},
|
||||
{
|
||||
label: "Wildcard Certificates",
|
||||
link: "/knowledge-base/traefik/wildcard-certificates",
|
||||
},
|
||||
{
|
||||
label: "Protecting Services with Authentik",
|
||||
link: "/knowledge-base/traefik/protecting-services-with-authentik",
|
||||
}
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "API Reference",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{ label: "Authorization", link: "/api-reference/authorization" },
|
||||
...openAPISidebarGroups,
|
||||
],
|
||||
},
|
||||
],
|
||||
}),
|
||||
sitemap(),
|
||||
],
|
||||
});
|
||||
@@ -1,31 +0,0 @@
|
||||
worker_processes 1;
|
||||
|
||||
events {
|
||||
worker_connections 1024;
|
||||
}
|
||||
|
||||
http {
|
||||
server {
|
||||
listen 80;
|
||||
server_name _;
|
||||
|
||||
root /usr/share/nginx/html;
|
||||
index index.html index.htm;
|
||||
include /etc/nginx/mime.types;
|
||||
|
||||
gzip on;
|
||||
gzip_min_length 1000;
|
||||
gzip_proxied expired no-cache no-store private auth;
|
||||
gzip_types text/plain text/css application/json application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript;
|
||||
|
||||
error_page 404 /404.html;
|
||||
location = /404.html {
|
||||
root /usr/share/nginx/html;
|
||||
internal;
|
||||
}
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/index.html =404;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,30 +0,0 @@
|
||||
{
|
||||
"name": "documentation-coolify",
|
||||
"type": "module",
|
||||
"version": "0.0.1",
|
||||
"scripts": {
|
||||
"dev": "npx astro dev",
|
||||
"start": "astro dev",
|
||||
"build": "astro build",
|
||||
"preview": "astro preview",
|
||||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/sitemap": "^3.2.1",
|
||||
"@astrojs/starlight": "^0.28.4",
|
||||
"@astrojs/starlight-tailwind": "^2.0.3",
|
||||
"astro": "^4.16.7",
|
||||
"sharp": "^0.33.5",
|
||||
"starlight-image-zoom": "^0.8.0",
|
||||
"starlight-links-validator": "^0.12.3",
|
||||
"starlight-openapi": "^0.8.1"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@rollup/rollup-linux-x64-gnu": "4.9.5",
|
||||
"@rollup/rollup-linux-x64-musl": "4.9.5",
|
||||
"@rollup/rollup-linux-arm64-gnu": "4.9.5",
|
||||
"@rollup/rollup-linux-arm64-musl": "4.9.5",
|
||||
"@rollup/rollup-darwin-x64": "4.9.5",
|
||||
"@rollup/rollup-darwin-arm64": "4.9.5"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 2.1 KiB |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill-rule="evenodd" d="M81 36 64 0 47 36l-1 2-9-10a6 6 0 0 0-9 9l10 10h-2L0 64l36 17h2L28 91a6 6 0 1 0 9 9l9-10 1 2 17 36 17-36v-2l9 10a6 6 0 1 0 9-9l-9-9 2-1 36-17-36-17-2-1 9-9a6 6 0 1 0-9-9l-9 10v-2Zm-17 2-2 5c-4 8-11 15-19 19l-5 2 5 2c8 4 15 11 19 19l2 5 2-5c4-8 11-15 19-19l5-2-5-2c-8-4-15-11-19-19l-2-5Z" clip-rule="evenodd"/><path d="M118 19a6 6 0 0 0-9-9l-3 3a6 6 0 1 0 9 9l3-3Zm-96 4c-2 2-6 2-9 0l-3-3a6 6 0 1 1 9-9l3 3c3 2 3 6 0 9Zm0 82c-2-2-6-2-9 0l-3 3a6 6 0 1 0 9 9l3-3c3-2 3-6 0-9Zm96 4a6 6 0 0 1-9 9l-3-3a6 6 0 1 1 9-9l3 3Z"/><style>path{fill:#000}@media (prefers-color-scheme:dark){path{fill:#fff}}</style></svg>
|
||||
|
Before Width: | Height: | Size: 696 B |
@@ -1,4 +0,0 @@
|
||||
User-agent: *
|
||||
Allow: /
|
||||
|
||||
Sitemap: https://coolify.io/docs/sitemap-index.xml
|
||||
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500" zoomAndPan="magnify" viewBox="0 0 375 374.999991" height="500" preserveAspectRatio="xMidYMid meet" version="1.0"><defs><g/></defs><g fill="#8c52ff" fill-opacity="0.302"><g transform="translate(84.663793, 310.016484)"><g><path d="M 63 -168 L 21 -168 L 21 -42 L 63 -42 Z M 63 0 L 231 0 L 231 -42 L 63 -42 Z M 63 -168 L 231 -168 L 231 -210 L 63 -210 Z M 63 -168 "/></g></g></g><g fill="#8c52ff" fill-opacity="0.502"><g transform="translate(71.405537, 296.758233)"><g><path d="M 63 -168 L 21 -168 L 21 -42 L 63 -42 Z M 63 0 L 231 0 L 231 -42 L 63 -42 Z M 63 -168 L 231 -168 L 231 -210 L 63 -210 Z M 63 -168 "/></g></g></g><g fill="#8c52ff" fill-opacity="1"><g transform="translate(58.147287, 283.499981)"><g><path d="M 63 -168 L 21 -168 L 21 -42 L 63 -42 Z M 63 0 L 231 0 L 231 -42 L 63 -42 Z M 63 -168 L 231 -168 L 231 -210 L 63 -210 Z M 63 -168 "/></g></g></g></svg>
|
||||
|
Before Width: | Height: | Size: 959 B |
|
Before Width: | Height: | Size: 60 KiB |
|
Before Width: | Height: | Size: 40 KiB |
|
Before Width: | Height: | Size: 78 KiB |
|
Before Width: | Height: | Size: 184 KiB |
|
Before Width: | Height: | Size: 68 KiB |
|
Before Width: | Height: | Size: 66 KiB |
|
Before Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 96 KiB |
|
Before Width: | Height: | Size: 117 KiB |
|
Before Width: | Height: | Size: 101 KiB |
|
Before Width: | Height: | Size: 76 KiB |
|
Before Width: | Height: | Size: 50 KiB |
|
Before Width: | Height: | Size: 135 KiB |
|
Before Width: | Height: | Size: 95 KiB |
|
Before Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 50 KiB |
|
Before Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 53 KiB |
|
Before Width: | Height: | Size: 35 KiB |
|
Before Width: | Height: | Size: 33 KiB |
|
Before Width: | Height: | Size: 81 KiB |
|
Before Width: | Height: | Size: 39 KiB |
|
Before Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 58 KiB |
|
Before Width: | Height: | Size: 73 KiB |
|
Before Width: | Height: | Size: 6.4 KiB |
|
Before Width: | Height: | Size: 8.3 KiB |
@@ -1,12 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="378" height="88" viewBox="0 0 378 88" fill="none">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M44 0C7.766 0 0 7.766 0 44C0 80.234 7.766 88 44 88C80.234 88 88 80.234 88 44C88 7.766 80.234 0 44 0ZM39.1171 32.53C39.6448 32.8121 40 33.4016 40 34C40 36.2091 41.7909 38 44 38C46.2091 38 48 36.2091 48 34C48 33.4016 48.3552 32.8121 48.8829 32.53C50.1428 31.8566 51 30.5284 51 29C51 26.7909 49.2091 25 47 25C46.6142 25 46.2411 25.0546 45.8881 25.1566C44.7322 25.4904 43.2678 25.4904 42.1119 25.1566C41.7589 25.0546 41.3858 25 41 25C38.7909 25 37 26.7909 37 29C37 30.5284 37.8572 31.8566 39.1171 32.53ZM40.6174 37.6822C40.4565 37.7954 40.3289 37.9561 40.2566 38.1489L39.2486 40.837C39.0877 41.266 39.079 41.7371 39.2238 42.1717L40.8506 47.0521C40.9488 47.3466 41.1133 47.6174 41.374 47.786C41.8309 48.0815 42.7062 48.5 43.9999 48.5C45.2937 48.5 46.169 48.0815 46.6259 47.786C46.8866 47.6174 47.0511 47.3466 47.1492 47.0521L48.776 42.1717C48.9209 41.7371 48.9122 41.266 48.7513 40.837L47.7433 38.1489C47.671 37.9561 47.5434 37.7954 47.3825 37.6822C46.4922 38.5005 45.3044 39 43.9999 39C42.6955 39 41.5077 38.5005 40.6174 37.6822ZM42 60L41.0211 48.7423C41.6348 49.0994 42.6312 49.5 44 49.5C45.3684 49.5 46.365 49.0996 46.979 48.7423L46 60C46 60 45.5 60.5 44 60.5C42.5 60.5 42 60 42 60ZM42.5 68L42.0111 61.1559C42.0291 61.1635 42.0474 61.171 42.0662 61.1785C42.5095 61.3558 43.1373 61.5 44 61.5C44.8628 61.5 45.4906 61.3558 45.9339 61.1785C45.9526 61.171 45.9709 61.1635 45.9888 61.156L45.5 68C45.5 68 45.25 69 44 69C42.75 69 42.5 68 42.5 68ZM18.4999 40H38.4C37.6448 41.2587 37.9828 42.1357 38.3163 43.001L38.3164 43.0012L38.3164 43.0013L38.3165 43.0014L38.3165 43.0015L38.3166 43.0017C38.3804 43.1673 38.4441 43.3326 38.4999 43.5L19.817 48.8504C18.6241 49.1865 17.3473 48.7543 16.6036 47.7628L15.4279 46.1951C14.7461 45.2861 14.6364 44.0698 15.1446 43.0535L15.8422 41.6582C16.3462 40.6501 17.3729 40.0096 18.4999 40ZM16 38.4663L38.7499 39C38.7499 39 39.1093 38.1012 39.2499 37.5C39.2981 37.294 39.349 37.0881 39.3922 36.9172C39.4529 36.6771 39.3398 36.4307 39.1124 36.3324C36.4624 35.187 21.0442 28.5249 18.4745 27.4663C17.4762 27.0394 16.3252 27.1853 15.4649 27.8476L13.17 29.6144C12.4171 30.1941 11.9975 31.0823 12 32C12.0008 32.2913 12.0441 32.5855 12.1328 32.8738L13.2451 36.4663C13.6189 37.6811 14.7301 38.4133 16 38.4663ZM69.5 40H49.6C50.3552 41.2587 50.0172 42.1357 49.6836 43.001L49.6836 43.0012L49.6835 43.0013L49.6835 43.0014C49.6196 43.1672 49.5559 43.3325 49.5 43.5L68.1829 48.8504C69.3759 49.1865 70.6527 48.7543 71.3963 47.7628L72.5721 46.1951C73.2539 45.2861 73.3636 44.0698 72.8554 43.0535L72.1578 41.6583C71.6537 40.6501 70.6271 40.0096 69.5 40ZM72 38.4663L49.25 39C49.25 39 48.8907 38.1012 48.75 37.5C48.7018 37.294 48.6509 37.0881 48.6077 36.9173C48.547 36.6771 48.6602 36.4307 48.8875 36.3325C51.5376 35.187 66.9558 28.5249 69.5255 27.4663C70.5238 27.0394 71.6748 27.1853 72.5351 27.8476L74.83 29.6144C75.5829 30.1941 76.0025 31.0823 76 32C75.9992 32.2913 75.9559 32.5855 75.8672 32.8738L74.7549 36.4663C74.3811 37.6811 73.2699 38.4133 72 38.4663Z" fill="#ffffff"/>
|
||||
<path d="M317.512 19.922C317.072 21.198 316.852 22.562 316.852 24.014V29.03H311.77V34.706H316.852V63.746H323.716V34.706H330.184V29.03H323.716V24.278C323.716 23.266 323.958 22.496 324.442 21.968C324.97 21.44 325.762 21.176 326.818 21.176H330.184L331.684 16.358C331.244 16.182 330.738 16.028 330.166 15.896C329.594 15.764 328.978 15.676 328.318 15.632C327.702 15.544 327.086 15.5 326.47 15.5C324.314 15.5 321.142 15.918 319.954 16.754C318.81 17.59 317.996 18.646 317.512 19.922Z" fill="#ffffff"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M137.436 61.37C134.136 62.954 130.154 63.746 125.49 63.746H108V18.47H125.49C130.154 18.47 134.136 19.284 137.436 20.912C140.736 22.496 143.266 24.96 145.026 28.304C146.83 31.604 147.732 35.872 147.732 41.108C147.732 46.3 146.83 50.568 145.026 53.912C143.266 57.256 140.736 59.742 137.436 61.37ZM131.628 25.73C129.824 25.114 127.756 24.806 125.424 24.806H115.392V57.41H125.424C127.756 57.41 129.824 57.102 131.628 56.486C133.476 55.87 135.016 54.924 136.248 53.648C137.524 52.372 138.47 50.766 139.086 48.83C139.746 46.85 140.076 44.518 140.076 41.834V40.448C140.076 37.72 139.746 35.388 139.086 33.452C138.47 31.472 137.524 29.844 136.248 28.568C135.016 27.292 133.476 26.346 131.628 25.73Z" fill="#ffffff"/>
|
||||
<path d="M158.826 40.976C158.518 42.208 158.364 43.594 158.364 45.134V63.746H151.5V29.03H157.176L157.77 34.64H158.166C158.562 33.54 159.068 32.506 159.684 31.538C160.344 30.57 161.18 29.778 162.192 29.162C163.248 28.546 164.524 28.238 166.02 28.238C166.724 28.238 167.34 28.304 167.868 28.436C168.44 28.568 168.88 28.678 169.188 28.766V35.234H166.878C165.47 35.234 164.216 35.454 163.116 35.894C162.06 36.334 161.158 36.994 160.41 37.874C159.706 38.71 159.178 39.744 158.826 40.976Z" fill="#ffffff"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M178.765 64.142C180.041 64.406 181.229 64.538 182.329 64.538C184.133 64.538 185.761 64.318 187.213 63.878C188.665 63.482 189.941 62.91 191.041 62.162C192.185 61.37 193.153 60.468 193.945 59.456H194.341V64.538L200.61 64.532L200.611 38.93C200.611 36.686 200.105 34.772 199.093 33.188C198.081 31.604 196.563 30.394 194.539 29.558C192.559 28.678 190.073 28.238 187.081 28.238C184.309 28.238 181.867 28.612 179.755 29.36C177.643 30.108 175.993 31.208 174.805 32.66C173.661 34.068 173.089 35.806 173.089 37.874V38.666C173.089 38.886 173.111 39.106 173.155 39.326H179.755V38.336C179.755 37.544 179.953 36.818 180.349 36.158C180.789 35.454 181.515 34.882 182.527 34.442C183.583 33.958 185.035 33.716 186.883 33.716C188.731 33.716 190.139 33.958 191.107 34.442C192.119 34.926 192.801 35.608 193.153 36.488C193.549 37.368 193.747 38.38 193.747 39.524V42.956C190.491 42.956 187.477 43.132 184.705 43.484C181.977 43.836 179.623 44.452 177.643 45.332C175.663 46.212 174.123 47.422 173.023 48.962C171.923 50.502 171.373 52.46 171.373 54.836C171.373 56.86 171.725 58.51 172.429 59.786C173.133 61.018 174.035 61.986 175.135 62.69C176.279 63.394 177.489 63.878 178.765 64.142ZM188.005 58.268C186.861 58.664 185.607 58.862 184.243 58.862C183.055 58.862 182.021 58.686 181.141 58.334C180.261 57.982 179.601 57.476 179.161 56.816C178.721 56.112 178.501 55.254 178.501 54.242C178.501 52.57 179.139 51.272 180.415 50.348C181.691 49.38 183.473 48.72 185.761 48.368C188.049 48.016 190.711 47.84 193.747 47.84V50.15C193.747 51.426 193.505 52.614 193.021 53.714C192.537 54.77 191.877 55.694 191.041 56.486C190.205 57.234 189.193 57.828 188.005 58.268Z" fill="#ffffff"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M212.646 75.758C211.062 75.758 209.566 75.428 208.158 74.768C206.794 74.108 205.694 73.162 204.858 71.93C204.022 70.698 203.604 69.202 203.604 67.442C203.604 65.506 204.132 63.944 205.188 62.756C206.288 61.524 207.564 60.6 209.016 59.984C207.96 59.5 207.102 58.796 206.442 57.872C205.826 56.948 205.518 55.892 205.518 54.704C205.518 53.076 206.112 51.756 207.3 50.744C208.488 49.732 209.874 49.072 211.458 48.764C209.918 47.752 208.708 46.476 207.828 44.936C206.992 43.396 206.574 41.658 206.574 39.722C206.574 37.39 207.124 35.388 208.224 33.716C209.324 32 210.952 30.658 213.108 29.69C215.308 28.722 217.97 28.238 221.094 28.238H240L238.5 32.492H233.062C233.823 33.3426 234.41 34.3006 234.822 35.366C235.394 36.686 235.68 38.138 235.68 39.722C235.68 42.01 235.152 44.012 234.096 45.728C233.04 47.444 231.434 48.786 229.278 49.754C227.166 50.722 224.548 51.206 221.424 51.206H216.012C214.956 51.206 214.098 51.426 213.438 51.866C212.822 52.306 212.514 52.966 212.514 53.846C212.514 54.594 212.822 55.21 213.438 55.694C214.054 56.178 214.868 56.42 215.88 56.42H230.532C233.084 56.42 235.196 57.278 236.868 58.994C238.54 60.666 239.376 62.822 239.376 65.462C239.376 67.398 238.87 69.136 237.858 70.676C236.89 72.26 235.504 73.492 233.7 74.372C231.94 75.296 229.894 75.758 227.562 75.758H212.646ZM211.722 69.488C212.558 70.28 213.614 70.676 214.89 70.676H227.496C228.42 70.676 229.256 70.5 230.004 70.148C230.752 69.796 231.346 69.29 231.786 68.63C232.226 68.014 232.446 67.31 232.446 66.518C232.446 65.198 232.028 64.164 231.192 63.416C230.4 62.668 229.41 62.294 228.222 62.294H214.89C213.658 62.294 212.624 62.712 211.788 63.548C210.952 64.34 210.534 65.33 210.534 66.518C210.534 67.75 210.93 68.74 211.722 69.488ZM221.16 46.256C223.756 46.256 225.692 45.684 226.968 44.54C228.244 43.352 228.882 41.746 228.882 39.722C228.882 37.654 228.244 36.07 226.968 34.97C225.692 33.826 223.756 33.254 221.16 33.254C218.564 33.254 216.628 33.826 215.352 34.97C214.076 36.07 213.438 37.654 213.438 39.722C213.438 41.042 213.702 42.208 214.23 43.22C214.802 44.188 215.66 44.936 216.804 45.464C217.992 45.992 219.444 46.256 221.16 46.256Z" fill="#ffffff"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M248.208 62.624C250.716 63.9 253.774 64.538 257.382 64.538C261.078 64.538 264.158 63.9 266.622 62.624C269.086 61.304 270.934 59.302 272.166 56.618C273.442 53.934 274.08 50.524 274.08 46.388C274.08 42.208 273.442 38.798 272.166 36.158C270.934 33.474 269.086 31.494 266.622 30.218C264.158 28.898 261.078 28.238 257.382 28.238C253.774 28.238 250.716 28.898 248.208 30.218C245.744 31.494 243.874 33.474 242.598 36.158C241.366 38.798 240.75 42.208 240.75 46.388C240.75 50.524 241.366 53.934 242.598 56.618C243.874 59.302 245.744 61.304 248.208 62.624ZM262.794 57.608C261.386 58.444 259.582 58.862 257.382 58.862C255.226 58.862 253.444 58.444 252.036 57.608C250.628 56.728 249.572 55.408 248.868 53.648C248.208 51.888 247.878 49.666 247.878 46.982V45.794C247.878 43.11 248.208 40.888 248.868 39.128C249.572 37.368 250.628 36.07 252.036 35.234C253.444 34.354 255.226 33.914 257.382 33.914C259.582 33.914 261.386 34.354 262.794 35.234C264.202 36.07 265.236 37.368 265.896 39.128C266.6 40.888 266.952 43.11 266.952 45.794V46.982C266.952 49.666 266.6 51.888 265.896 53.648C265.236 55.408 264.202 56.728 262.794 57.608Z" fill="#ffffff"/>
|
||||
<path d="M287.052 38.6C286.26 39.964 285.864 41.57 285.864 43.418V63.746H279V29.03H284.676L285.27 33.98H285.732C286.568 32.704 287.558 31.648 288.702 30.812C289.846 29.976 291.1 29.338 292.464 28.898C293.872 28.458 295.412 28.238 297.084 28.238C299.284 28.238 301.22 28.634 302.892 29.426C304.564 30.174 305.862 31.406 306.786 33.122C307.754 34.838 308.238 37.148 308.238 40.052V63.746H301.374V41.108C301.374 39.788 301.198 38.688 300.846 37.808C300.538 36.928 300.076 36.224 299.46 35.696C298.844 35.168 298.118 34.794 297.282 34.574C296.446 34.354 295.522 34.244 294.51 34.244C292.926 34.244 291.474 34.64 290.154 35.432C288.878 36.18 287.844 37.236 287.052 38.6Z" fill="#ffffff"/>
|
||||
<path d="M378 28.9665L362.16 75.9285H355.163C355.163 75.9285 358.53 64.9117 359.058 63.4597L345.132 28.9665H352.326L359.058 44.7585C359.366 45.5505 359.696 46.5405 360.048 47.7285C360.444 48.9165 360.818 50.1265 361.17 51.3585C361.566 52.5905 361.896 53.6905 362.16 54.6585H362.49C362.71 53.9985 362.93 53.2505 363.15 52.4145C363.414 51.5345 363.678 50.6325 363.942 49.7085C364.206 48.7845 364.47 47.9045 364.734 47.0685C364.998 46.1885 365.218 45.4405 365.394 44.8245L371.004 28.9665H378Z" fill="#ffffff"/>
|
||||
<path d="M334.672 16.028V63.746H341.536V16.028H334.672Z" fill="#ffffff"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 11 KiB |
@@ -1,12 +0,0 @@
|
||||
<svg width="189" height="44" viewBox="0 0 189 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M22 0C3.883 0 0 3.883 0 22C0 40.117 3.883 44 22 44C40.117 44 44 40.117 44 22C44 3.883 40.117 0 22 0ZM19.5585 16.265C19.8224 16.406 20 16.7008 20 17C20 18.1046 20.8954 19 22 19C23.1046 19 24 18.1046 24 17C24 16.7008 24.1776 16.406 24.4414 16.265C25.0714 15.9283 25.5 15.2642 25.5 14.5C25.5 13.3954 24.6046 12.5 23.5 12.5C23.3071 12.5 23.1205 12.5273 22.944 12.5783C22.3661 12.7452 21.6339 12.7452 21.056 12.5783C20.8794 12.5273 20.6929 12.5 20.5 12.5C19.3954 12.5 18.5 13.3954 18.5 14.5C18.5 15.2642 18.9286 15.9283 19.5585 16.265ZM20.3087 18.8411C20.2282 18.8977 20.1644 18.978 20.1283 19.0744L19.6243 20.4185C19.5438 20.633 19.5395 20.8686 19.6119 21.0859L20.4253 23.526C20.4744 23.6733 20.5566 23.8087 20.687 23.893C20.9154 24.0408 21.3531 24.25 22 24.25C22.6468 24.25 23.0845 24.0408 23.3129 23.893C23.4433 23.8087 23.5255 23.6733 23.5746 23.526L24.388 21.0859C24.4604 20.8686 24.4561 20.633 24.3756 20.4185L23.8716 19.0744C23.8355 18.978 23.7717 18.8977 23.6912 18.8411C23.2461 19.2502 22.6522 19.5 22 19.5C21.3477 19.5 20.7538 19.2502 20.3087 18.8411ZM21 30L20.5105 24.3712C20.8174 24.5497 21.3156 24.75 22 24.75C22.6842 24.75 23.1825 24.5498 23.4895 24.3711L23 30C23 30 22.75 30.25 22 30.25C21.25 30.25 21 30 21 30ZM21.25 34L21.0055 30.5779L21.0331 30.5892C21.2547 30.6779 21.5686 30.75 22 30.75C22.4314 30.75 22.7453 30.6779 22.967 30.5892L22.9944 30.578L22.75 34C22.75 34 22.625 34.5 22 34.5C21.375 34.5 21.25 34 21.25 34ZM9.24995 20H19.2C18.8224 20.6294 18.9914 21.0678 19.1582 21.5005L19.1582 21.5005L19.1582 21.5006L19.1582 21.5006L19.1582 21.5006L19.1582 21.5006C19.1901 21.5835 19.222 21.6662 19.25 21.75L9.90851 24.4252C9.31202 24.5932 8.67362 24.3772 8.3018 23.8814L7.71391 23.0976C7.37302 22.643 7.31818 22.0349 7.57227 21.5267L7.92108 20.8291C8.17311 20.3251 8.68641 20.0048 9.24995 20ZM7.99998 19.2331L19.375 19.5C19.375 19.5 19.5546 19.0506 19.625 18.75C19.6491 18.647 19.6745 18.5441 19.6961 18.4586C19.7264 18.3386 19.6699 18.2154 19.5562 18.1662C18.2312 17.5935 10.5221 14.2625 9.23721 13.7331C8.73807 13.5197 8.16257 13.5926 7.73242 13.9238L6.58499 14.8072C6.20854 15.097 5.99872 15.5412 5.99998 16C6.00037 16.1456 6.02204 16.2928 6.06639 16.4369L6.62254 18.2331C6.80943 18.8405 7.36503 19.2067 7.99998 19.2331ZM34.75 20H24.8C25.1776 20.6294 25.0086 21.0679 24.8418 21.5005L24.8418 21.5005L24.8418 21.5006L24.8418 21.5006C24.8098 21.5835 24.7779 21.6662 24.75 21.75L34.0914 24.4252C34.6879 24.5932 35.3263 24.3772 35.6982 23.8814L36.286 23.0976C36.6269 22.643 36.6818 22.0349 36.4277 21.5267L36.0789 20.8291C35.8268 20.3251 35.3135 20.0048 34.75 20ZM36 19.2331L24.625 19.5C24.625 19.5 24.4453 19.0506 24.375 18.75C24.3509 18.647 24.3255 18.5441 24.3039 18.4586C24.2735 18.3386 24.3301 18.2154 24.4438 18.1662C25.7688 17.5935 33.4779 14.2625 34.7627 13.7331C35.2619 13.5197 35.8374 13.5926 36.2675 13.9238L37.415 14.8072C37.7914 15.097 38.0012 15.5412 38 16C37.9996 16.1456 37.9779 16.2928 37.9336 16.4369L37.3774 18.2331C37.1905 18.8405 36.6349 19.2067 36 19.2331Z" fill="black"/>
|
||||
<path d="M158.756 9.461C158.536 10.099 158.426 10.781 158.426 11.507V14.015H155.885V16.853H158.426V31.373H161.858V16.853H165.092V14.015H161.858V11.639C161.858 11.133 161.979 10.748 162.221 10.484C162.485 10.22 162.881 10.088 163.409 10.088H165.092L165.842 7.679C165.622 7.591 165.369 7.514 165.083 7.448C164.797 7.382 164.489 7.338 164.159 7.316C163.851 7.272 163.543 7.25 163.235 7.25C162.157 7.25 160.571 7.459 159.977 7.877C159.405 8.295 158.998 8.823 158.756 9.461Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M68.718 30.185C67.068 30.977 65.077 31.373 62.745 31.373H54V8.735H62.745C65.077 8.735 67.068 9.142 68.718 9.956C70.368 10.748 71.633 11.98 72.513 13.652C73.415 15.302 73.866 17.436 73.866 20.054C73.866 22.65 73.415 24.784 72.513 26.456C71.633 28.128 70.368 29.371 68.718 30.185ZM65.814 12.365C64.912 12.057 63.878 11.903 62.712 11.903H57.696V28.205H62.712C63.878 28.205 64.912 28.051 65.814 27.743C66.738 27.435 67.508 26.962 68.124 26.324C68.762 25.686 69.235 24.883 69.543 23.915C69.873 22.925 70.038 21.759 70.038 20.417V19.724C70.038 18.36 69.873 17.194 69.543 16.226C69.235 15.236 68.762 14.422 68.124 13.784C67.508 13.146 66.738 12.673 65.814 12.365Z" fill="black"/>
|
||||
<path d="M79.413 19.988C79.259 20.604 79.182 21.297 79.182 22.067V31.373H75.75V14.015H78.588L78.885 16.82H79.083C79.281 16.27 79.534 15.753 79.842 15.269C80.172 14.785 80.59 14.389 81.096 14.081C81.624 13.773 82.262 13.619 83.01 13.619C83.362 13.619 83.67 13.652 83.934 13.718C84.22 13.784 84.44 13.839 84.594 13.883V17.117H83.439C82.735 17.117 82.108 17.227 81.558 17.447C81.03 17.667 80.579 17.997 80.205 18.437C79.853 18.855 79.589 19.372 79.413 19.988Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M89.3826 31.571C90.0206 31.703 90.6146 31.769 91.1646 31.769C92.0666 31.769 92.8806 31.659 93.6066 31.439C94.3326 31.241 94.9706 30.955 95.5206 30.581C96.0926 30.185 96.5766 29.734 96.9726 29.228H97.1706V31.769L100.305 31.766L100.306 18.965C100.306 17.843 100.053 16.886 99.5466 16.094C99.0406 15.302 98.2816 14.697 97.2696 14.279C96.2796 13.839 95.0366 13.619 93.5406 13.619C92.1546 13.619 90.9336 13.806 89.8776 14.18C88.8216 14.554 87.9966 15.104 87.4026 15.83C86.8306 16.534 86.5446 17.403 86.5446 18.437V18.833C86.5446 18.943 86.5556 19.053 86.5776 19.163H89.8776V18.668C89.8776 18.272 89.9766 17.909 90.1746 17.579C90.3946 17.227 90.7576 16.941 91.2636 16.721C91.7916 16.479 92.5176 16.358 93.4416 16.358C94.3656 16.358 95.0696 16.479 95.5536 16.721C96.0596 16.963 96.4006 17.304 96.5766 17.744C96.7746 18.184 96.8736 18.69 96.8736 19.262V20.978C95.2456 20.978 93.7386 21.066 92.3526 21.242C90.9886 21.418 89.8116 21.726 88.8216 22.166C87.8316 22.606 87.0616 23.211 86.5116 23.981C85.9616 24.751 85.6866 25.73 85.6866 26.918C85.6866 27.93 85.8626 28.755 86.2146 29.393C86.5666 30.009 87.0176 30.493 87.5676 30.845C88.1396 31.197 88.7446 31.439 89.3826 31.571ZM94.0026 28.634C93.4306 28.832 92.8036 28.931 92.1216 28.931C91.5276 28.931 91.0106 28.843 90.5706 28.667C90.1306 28.491 89.8006 28.238 89.5806 27.908C89.3606 27.556 89.2506 27.127 89.2506 26.621C89.2506 25.785 89.5696 25.136 90.2076 24.674C90.8456 24.19 91.7366 23.86 92.8806 23.684C94.0246 23.508 95.3556 23.42 96.8736 23.42V24.575C96.8736 25.213 96.7526 25.807 96.5106 26.357C96.2686 26.885 95.9386 27.347 95.5206 27.743C95.1026 28.117 94.5966 28.414 94.0026 28.634Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M106.323 37.379C105.531 37.379 104.783 37.214 104.079 36.884C103.397 36.554 102.847 36.081 102.429 35.465C102.011 34.849 101.802 34.101 101.802 33.221C101.802 32.253 102.066 31.472 102.594 30.878C103.144 30.262 103.782 29.8 104.508 29.492C103.98 29.25 103.551 28.898 103.221 28.436C102.913 27.974 102.759 27.446 102.759 26.852C102.759 26.038 103.056 25.378 103.65 24.872C104.244 24.366 104.937 24.036 105.729 23.882C104.959 23.376 104.354 22.738 103.914 21.968C103.496 21.198 103.287 20.329 103.287 19.361C103.287 18.195 103.562 17.194 104.112 16.358C104.662 15.5 105.476 14.829 106.554 14.345C107.654 13.861 108.985 13.619 110.547 13.619H120L119.25 15.746H116.531C116.912 16.1713 117.205 16.6503 117.411 17.183C117.697 17.843 117.84 18.569 117.84 19.361C117.84 20.505 117.576 21.506 117.048 22.364C116.52 23.222 115.717 23.893 114.639 24.377C113.583 24.861 112.274 25.103 110.712 25.103H108.006C107.478 25.103 107.049 25.213 106.719 25.433C106.411 25.653 106.257 25.983 106.257 26.423C106.257 26.797 106.411 27.105 106.719 27.347C107.027 27.589 107.434 27.71 107.94 27.71H115.266C116.542 27.71 117.598 28.139 118.434 28.997C119.27 29.833 119.688 30.911 119.688 32.231C119.688 33.199 119.435 34.068 118.929 34.838C118.445 35.63 117.752 36.246 116.85 36.686C115.97 37.148 114.947 37.379 113.781 37.379H106.323ZM105.861 34.244C106.279 34.64 106.807 34.838 107.445 34.838H113.748C114.21 34.838 114.628 34.75 115.002 34.574C115.376 34.398 115.673 34.145 115.893 33.815C116.113 33.507 116.223 33.155 116.223 32.759C116.223 32.099 116.014 31.582 115.596 31.208C115.2 30.834 114.705 30.647 114.111 30.647H107.445C106.829 30.647 106.312 30.856 105.894 31.274C105.476 31.67 105.267 32.165 105.267 32.759C105.267 33.375 105.465 33.87 105.861 34.244ZM110.58 22.628C111.878 22.628 112.846 22.342 113.484 21.77C114.122 21.176 114.441 20.373 114.441 19.361C114.441 18.327 114.122 17.535 113.484 16.985C112.846 16.413 111.878 16.127 110.58 16.127C109.282 16.127 108.314 16.413 107.676 16.985C107.038 17.535 106.719 18.327 106.719 19.361C106.719 20.021 106.851 20.604 107.115 21.11C107.401 21.594 107.83 21.968 108.402 22.232C108.996 22.496 109.722 22.628 110.58 22.628Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M124.104 30.812C125.358 31.45 126.887 31.769 128.691 31.769C130.539 31.769 132.079 31.45 133.311 30.812C134.543 30.152 135.467 29.151 136.083 27.809C136.721 26.467 137.04 24.762 137.04 22.694C137.04 20.604 136.721 18.899 136.083 17.579C135.467 16.237 134.543 15.247 133.311 14.609C132.079 13.949 130.539 13.619 128.691 13.619C126.887 13.619 125.358 13.949 124.104 14.609C122.872 15.247 121.937 16.237 121.299 17.579C120.683 18.899 120.375 20.604 120.375 22.694C120.375 24.762 120.683 26.467 121.299 27.809C121.937 29.151 122.872 30.152 124.104 30.812ZM131.397 28.304C130.693 28.722 129.791 28.931 128.691 28.931C127.613 28.931 126.722 28.722 126.018 28.304C125.314 27.864 124.786 27.204 124.434 26.324C124.104 25.444 123.939 24.333 123.939 22.991V22.397C123.939 21.055 124.104 19.944 124.434 19.064C124.786 18.184 125.314 17.535 126.018 17.117C126.722 16.677 127.613 16.457 128.691 16.457C129.791 16.457 130.693 16.677 131.397 17.117C132.101 17.535 132.618 18.184 132.948 19.064C133.3 19.944 133.476 21.055 133.476 22.397V22.991C133.476 24.333 133.3 25.444 132.948 26.324C132.618 27.204 132.101 27.864 131.397 28.304Z" fill="black"/>
|
||||
<path d="M143.526 18.8C143.13 19.482 142.932 20.285 142.932 21.209V31.373H139.5V14.015H142.338L142.635 16.49H142.866C143.284 15.852 143.779 15.324 144.351 14.906C144.923 14.488 145.55 14.169 146.232 13.949C146.936 13.729 147.706 13.619 148.542 13.619C149.642 13.619 150.61 13.817 151.446 14.213C152.282 14.587 152.931 15.203 153.393 16.061C153.877 16.919 154.119 18.074 154.119 19.526V31.373H150.687V20.054C150.687 19.394 150.599 18.844 150.423 18.404C150.269 17.964 150.038 17.612 149.73 17.348C149.422 17.084 149.059 16.897 148.641 16.787C148.223 16.677 147.761 16.622 147.255 16.622C146.463 16.622 145.737 16.82 145.077 17.216C144.439 17.59 143.922 18.118 143.526 18.8Z" fill="black"/>
|
||||
<path d="M189 13.9832L181.08 37.4642H177.581C177.581 37.4642 179.265 31.9559 179.529 31.2299L172.566 13.9832H176.163L179.529 21.8792C179.683 22.2752 179.848 22.7702 180.024 23.3642C180.222 23.9582 180.409 24.5632 180.585 25.1792C180.783 25.7952 180.948 26.3452 181.08 26.8292H181.245C181.355 26.4992 181.465 26.1252 181.575 25.7072C181.707 25.2672 181.839 24.8162 181.971 24.3542C182.103 23.8922 182.235 23.4522 182.367 23.0342C182.499 22.5942 182.609 22.2202 182.697 21.9122L185.502 13.9832H189Z" fill="black"/>
|
||||
<path d="M167.336 7.514V31.373H170.768V7.514H167.336Z" fill="black"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 29 KiB |
@@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" data-name="Layer 1" viewBox="0 0 309.88 252.72">
|
||||
<defs>
|
||||
<style>.cls-1{fill:#003545;}</style>
|
||||
</defs>
|
||||
<title>MDB-VLogo_RGB</title>
|
||||
<path class="cls-1" d="M61.74,214.91,73,258.46h-8.5L57,227.09,42.86,258.46H35.68L21.62,227.27,13.9,258.46H5.58l11.16-43.55H24.1l15.2,33.72,15.14-33.72Z" transform="translate(-5.58 -6.4)"></path>
|
||||
<path class="cls-1" d="M105.11,231.74v-5.07h8.21v31.79h-8.21v-5.12c-2.17,3.68-6.63,5.79-12.06,5.79-11.35,0-17.68-8-17.68-17.2,0-8.87,6-16,16.47-16C97.81,226,102.76,228,105.11,231.74Zm-21,10.62c0,5.85,3.68,10.86,10.8,10.86,6.87,0,10.61-4.89,10.61-10.68s-3.86-10.74-11-10.74C87.68,231.8,84.12,236.74,84.12,242.36Z" transform="translate(-5.58 -6.4)"></path>
|
||||
<path class="cls-1" d="M131.83,258.46h-8.2V226.67h8.2v7.12A12.58,12.58,0,0,1,143.29,226a14.84,14.84,0,0,1,5.13.84l-1.75,6a18,18,0,0,0-4.34-.6c-5.92,0-10.5,4.46-10.5,11Z" transform="translate(-5.58 -6.4)"></path>
|
||||
<path class="cls-1" d="M152.52,218.28a4.17,4.17,0,0,1,4.4-4.28,4.33,4.33,0,0,1,4.47,4.41,4.15,4.15,0,0,1-4.47,4.22A4.22,4.22,0,0,1,152.52,218.28Zm.36,8.39h8.21V249.9c0,1.44.3,2.47,1.5,2.47a8.85,8.85,0,0,0,1.57-.18l1.27,6a14.36,14.36,0,0,1-5.43,1c-3.44,0-7.12-1-7.12-8.81Z" transform="translate(-5.58 -6.4)"></path>
|
||||
<path class="cls-1" d="M197.76,231.74v-5.07H206v31.79h-8.21v-5.12c-2.17,3.68-6.63,5.79-12.06,5.79-11.34,0-17.68-8-17.68-17.2,0-8.87,6-16,16.47-16C190.46,226,195.41,228,197.76,231.74Zm-21,10.62c0,5.85,3.68,10.86,10.8,10.86,6.88,0,10.62-4.89,10.62-10.68s-3.87-10.74-11-10.74C180.33,231.8,176.77,236.74,176.77,242.36Z" transform="translate(-5.58 -6.4)"></path>
|
||||
<path class="cls-1" d="M218.57,214.91h19.67c16.53,0,24.79,9.11,24.67,21.77.12,13.16-9,21.78-23.22,21.78H218.57Zm5.43,3.86v35.89h15c13.15,0,18.16-8.87,18.16-18.1,0-10.43-6.27-17.79-18.16-17.79Z" transform="translate(-5.58 -6.4)"></path>
|
||||
<path class="cls-1" d="M296.45,258.46h-25V214.91H294c8.62,0,16.83,1.62,16.71,11.28,0,6.81-4.23,8.69-8.69,9.41,6.33.54,10.14,4.58,10.14,11.1C312.2,256.47,303.63,258.46,296.45,258.46Zm-1.87-24.55c8.63,0,10.56-3.32,10.56-7.54,0-6.34-3.86-7.78-10.56-7.78H276.66v15.32Zm.24,3.68H276.66v17.19H295.6c5.31,0,10.92-1.75,10.92-8.44C306.52,238.62,300.07,237.59,294.82,237.59Z" transform="translate(-5.58 -6.4)"></path>
|
||||
<path class="cls-1" d="M314.08,7.35a4.18,4.18,0,0,0-2.84-.95c-2.83,0-6.49,1.92-8.46,2.95l-.78.4a26.86,26.86,0,0,1-10.57,2.66c-3.76.12-7,.34-11.22.78-25,2.57-36.15,21.73-46.89,40.26C227.47,63.53,221.43,74,213.15,82a54.4,54.4,0,0,1-5.45,4.63C199.13,93,188.37,97.55,180,100.77c-8.06,3.08-16.86,5.85-25.36,8.53-7.79,2.45-15.14,4.77-21.9,7.28-3.05,1.13-5.64,2-7.93,2.76-6.16,2-10.6,3.53-17.09,8-2.53,1.73-5.07,3.6-6.79,5a71.62,71.62,0,0,0-13.55,14.27A84.25,84.25,0,0,1,76,160.27c-1.37,1.34-3.8,2-7.44,2-4.26,0-9.43-.88-14.9-1.81-5.64-1-11.47-1.95-16.47-1.95-4.06,0-7.17.66-9.49,2,0,0-3.91,2.28-5.56,5.23l1.62.73a33.21,33.21,0,0,1,6.92,5,34.72,34.72,0,0,0,7.2,5.12A6.18,6.18,0,0,1,40.1,178c-.68,1-1.68,2.29-2.73,3.67-5.77,7.55-9.14,12.32-7.21,14.92a6.07,6.07,0,0,0,3,.68c12.58,0,19.34-3.27,27.89-7.41,2.48-1.2,5-2.43,8-3.7,5-2.17,10.38-5.63,16.09-9.29C92.61,172,100.42,167,108,164.59a62.3,62.3,0,0,1,19.23-2.7c8,0,16.42,1.07,24.54,2.11,6.05.78,12.32,1.58,18.47,1.95,2.39.14,4.6.21,6.75.21a78.21,78.21,0,0,0,8.61-.45l.69-.24c4.31-2.65,6.33-8.34,8.29-13.84,1.26-3.54,2.32-6.72,4-8.74a2.55,2.55,0,0,1,.32-.27.4.4,0,0,1,.49.08s0,.05,0,.16c-1,21.51-9.66,35.17-18.42,47.31l-5.85,6.27s8.19,0,12.85-1.8c17-5.08,29.83-16.28,39.17-34.14a145.7,145.7,0,0,0,6.17-14.09c.16-.4,1.63-1.14,1.49.93-.05.61-.09,1.29-.14,2h0c0,.42,0,.85-.08,1.28-.24,3-.95,9.34-.95,9.34l5.25-2.81c12.66-8,22.42-24.14,29.82-49.25,3.08-10.46,5.34-20.85,7.33-30,2.38-11,4.43-20.43,6.78-24.09,3.69-5.74,9.32-9.62,14.77-13.39.74-.51,1.49-1,2.22-1.54,6.85-4.81,13.66-10.36,15.16-20.71l0-.23C316.05,10.22,315.13,8.25,314.08,7.35Z" transform="translate(-5.58 -6.4)"></path>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.9 KiB |
|
Before Width: | Height: | Size: 6.7 KiB |
|
Before Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 32 KiB |
@@ -1,10 +0,0 @@
|
||||
<svg width="85" height="27" viewBox="0 0 85 27" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1878_297)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M75.2909 13.8125C75.2909 10.8448 77.4892 9.12284 80.2371 9.12284C82.2888 9.12284 84.1207 10.1121 85 12.5668C84.7435 13.8125 83.2047 15.2047 82.5453 15.4246C81.9957 14.2522 81.3728 13.556 80.7866 13.556C80.0539 13.556 80.0172 14.069 80.0172 14.7284C80.0172 15.1955 80.151 15.8834 80.3119 16.7112C80.5549 17.9615 80.8599 19.5309 80.8599 21.1401C80.8599 24.0711 78.8082 26.2328 75.6573 26.2328C72.7721 26.2328 71.1778 24.3414 70.4665 21.3198C68.5818 24.6972 65.8257 26.2328 63.7134 26.2328C60.411 26.2328 59.6338 23.7919 59.7121 21.3161C58.3852 23.6612 55.831 26.2328 53.3815 26.2328C50.8809 26.2328 49.9976 24.0563 50.2002 21.5215C48.702 24.3122 45.9919 26.2328 43.3793 26.2328C40.5442 26.2328 39.141 23.9806 39.5951 21.189C37.6878 23.5333 34.1374 26.2328 30.4461 26.2328C26.2373 26.2328 24.4053 23.9632 24.1882 21.1193C22.1568 24.375 19.4187 26.3427 16.1573 26.3427C11.4493 26.3427 9.76537 22.1561 9.52032 18.7315C7.77547 21.0681 5.81377 23.4923 3.40733 26.1961C3.15086 26.4526 2.93103 26.5991 2.67457 26.5991C1.8319 26.5991 0.109914 22.8621 0 21.4698C0.723099 20.3478 5.28119 15.3398 8.95093 11.3079C10.2409 9.89066 11.4211 8.594 12.2863 7.6291C10.0389 8.30726 7.72169 9.65975 4.79957 11.7608C4.28664 12.1272 2.85776 8.7931 2.8944 6.22845C6.26509 3.73707 11.3944 2.16164 15.5345 2.16164C21.3233 2.16164 24.6573 5.38578 24.6573 9.8556C24.6573 13.5927 21.5431 17.6961 17 17.8427C14.6377 17.904 13.1237 16.578 12.3494 14.9405C12.4419 17.473 13.7587 20.5905 17.2931 20.5905C21.1462 20.5905 22.9965 18.2646 25.7559 14.7958C25.9352 14.5704 26.1183 14.3403 26.306 14.1056C28.6509 11.2112 31.3621 8.64655 35.319 8.64655C37.7371 8.64655 39.3858 10.1487 39.3858 12.4203C39.3858 15.1681 36.1616 18.9784 31.6552 18.9784C30.8855 18.9784 30.1839 18.877 29.5917 18.6766C29.5768 18.7921 29.5668 18.9058 29.5668 19.0151C29.5668 20.2974 30.0431 21.0668 32.1315 21.0668C35.2091 21.0668 38.1034 19.2349 41.6207 14.9483C45.0647 10.7349 47.6659 8.90302 50.4138 8.90302C52.2687 8.90302 53.6765 9.90832 54.2969 11.6014C57.9796 6.28253 61.1038 2.51388 63.75 0C66.3513 1.09914 68.2198 3.26078 67.7069 3.70043C65.7651 5.45905 59.2802 12.5302 56.7155 16.7435C56.056 17.8427 55.4332 19.0517 55.4332 19.6379C55.4332 20.1875 55.7629 20.3707 56.1293 20.3707C57.8898 20.3707 61.4176 16.2147 64.4645 12.6253C65.6026 11.2845 66.6736 10.0228 67.5603 9.08621C69.6121 9.92888 71.7004 11.7241 71.1875 12.347C68.4763 15.5711 66.4246 18.2091 66.4246 19.7112C66.4246 20.1142 66.5711 20.3707 67.1207 20.3707C68.1466 20.3707 69.0991 19.4547 70.6746 17.5129C71.0043 17.1099 71.4073 17.1099 71.6638 17.7328C72.3599 19.4181 73.3858 20.3341 74.1918 20.3341C75.1444 20.3341 75.6207 19.4914 75.6207 18.2091C75.6207 17.3327 75.5137 16.3138 75.4217 15.4365C75.3521 14.7733 75.2909 14.191 75.2909 13.8125ZM16.194 13.3362C18.1358 13.3362 20.2608 12.2737 20.2608 10.1121C20.2608 8.80024 19.4466 7.59084 17.2708 7.22257C17.156 7.40192 17.042 7.58017 16.9287 7.75739C15.8231 9.4858 14.7804 11.116 13.7281 12.7095C14.3586 13.0636 15.156 13.3362 16.194 13.3362ZM35.8319 13.9957C35.8319 13.4095 35.4655 13.0065 34.8793 13.0065C33.4094 13.0065 31.1923 15.0693 30.149 17.0613C30.5341 17.2101 30.9862 17.2931 31.472 17.2931C34.0733 17.2931 35.8319 15.3147 35.8319 13.9957ZM45.4677 19.3082C45.4677 19.9677 45.834 20.4073 46.6034 20.4073C48.9849 20.4073 51.9526 16.0841 51.9526 14.3254C51.9526 13.5927 51.5496 13.153 50.8901 13.153C48.7285 13.153 45.4677 17.2565 45.4677 19.3082ZM76.0599 6.08207C75.2172 7.47431 73.9349 9.04974 73.4586 9.52603C71.2603 8.61008 69.2086 6.77819 69.5017 6.26525C70.3077 4.83638 71.6267 3.29758 72.103 2.82129C74.3012 3.73724 76.353 5.60577 76.0599 6.08207Z" fill="#FF4438"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1878_297">
|
||||
<rect width="85" height="26.5991" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 95 KiB |
|
Before Width: | Height: | Size: 62 KiB |
|
Before Width: | Height: | Size: 67 KiB |
|
Before Width: | Height: | Size: 284 KiB |
|
Before Width: | Height: | Size: 51 KiB |
|
Before Width: | Height: | Size: 83 KiB |
|
Before Width: | Height: | Size: 190 KiB |
|
Before Width: | Height: | Size: 136 KiB |
|
Before Width: | Height: | Size: 41 KiB |
|
Before Width: | Height: | Size: 67 KiB |
|
Before Width: | Height: | Size: 142 KiB |
|
Before Width: | Height: | Size: 81 KiB |
|
Before Width: | Height: | Size: 47 KiB |
|
Before Width: | Height: | Size: 50 KiB |
|
Before Width: | Height: | Size: 95 KiB |
|
Before Width: | Height: | Size: 72 KiB |
|
Before Width: | Height: | Size: 73 KiB |
|
Before Width: | Height: | Size: 46 KiB |
|
Before Width: | Height: | Size: 49 KiB |
|
Before Width: | Height: | Size: 52 KiB |
|
Before Width: | Height: | Size: 89 KiB |
|
Before Width: | Height: | Size: 324 KiB |
|
Before Width: | Height: | Size: 187 KiB |
|
Before Width: | Height: | Size: 356 KiB |
|
Before Width: | Height: | Size: 592 KiB |
|
Before Width: | Height: | Size: 140 KiB |
|
Before Width: | Height: | Size: 2.3 MiB |
|
Before Width: | Height: | Size: 177 KiB |
|
Before Width: | Height: | Size: 368 KiB |
|
Before Width: | Height: | Size: 216 KiB |
|
Before Width: | Height: | Size: 2.5 MiB |
|
Before Width: | Height: | Size: 2.6 MiB |
|
Before Width: | Height: | Size: 8.6 MiB |
|
Before Width: | Height: | Size: 8.7 KiB |
|
Before Width: | Height: | Size: 570 KiB |
@@ -1,10 +0,0 @@
|
||||
<svg width="133" height="70" viewBox="0 0 133 70" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M35.1 69.1C54.1538 69.1 69.6 53.6538 69.6 34.6C69.6 15.5462 54.1538 0.0999756 35.1 0.0999756C16.0462 0.0999756 0.599976 15.5462 0.599976 34.6C0.599976 53.6538 16.0462 69.1 35.1 69.1Z" fill="url(#paint0_linear_5_45)"/>
|
||||
<path d="M132.5 69C94.6 69 63.8 38.2001 63.8 0.300049H87.8C87.8 25 107.9 45.1 132.6 45.1V69H132.5Z" fill="#F8C0A7"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_5_45" x1="6.24248" y1="16.3694" x2="61.3093" y2="51.1279" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0151877" stop-color="#FF675F"/>
|
||||
<stop offset="1" stop-color="#F73D3D"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 694 B |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 285 75" fill="#383838"><path d="M146.4 73.1h-30.5V59.8h30.5a3.2 3.2 0 0 0 2.3-1 3.2 3.2 0 0 0 1-2.3q0-.8-.3-1.3a1.5 1.5 0 0 0-.7-.6 4.7 4.7 0 0 0-1-.3l-1.3-.1h-13.9q-3.4 0-6.5-1.3-3-1.3-5.2-3.6a16.9 16.9 0 0 1-3.6-5.3 16.3 16.3 0 0 1-1.3-6.5 16.4 16.4 0 0 1 1.3-6.4q1.3-3.1 3.6-5.4 2.2-2.2 5.2-3.5a16.3 16.3 0 0 1 6.5-1.3h27v13.3h-27a3.2 3.2 0 0 0-2.3 1 3.2 3.2 0 0 0-1 2.3 3.3 3.3 0 0 0 1 2.4 3.3 3.3 0 0 0 1.2.8 3.2 3.2 0 0 0 1.1.2h13.9a18.1 18.1 0 0 1 6 1 17.3 17.3 0 0 1 .4.2q3 1.1 5.3 3.2a15.1 15.1 0 0 1 3.6 4.9 14.7 14.7 0 0 1 1.3 5.4 17.2 17.2 0 0 1 0 .9 16 16 0 0 1-1 5.8 15.4 15.4 0 0 1-.3.7 17.3 17.3 0 0 1-3.6 5.2 16.4 16.4 0 0 1-5.3 3.6 16.2 16.2 0 0 1-6.4 1.3Zm64.5-13.3v13.3h-43.6l22-39h-22V21h43.6l-22 39h22ZM35 73.1H0v-70h35q4.4 0 8.2 1.6a21.4 21.4 0 0 1 6.6 4.6q2.9 2.8 4.5 6.6 1.7 3.8 1.7 8.2a15.4 15.4 0 0 1-.3 3.2 17.6 17.6 0 0 1-.2.8 19.4 19.4 0 0 1-1.5 4 17 17 0 0 1-2.4 3.4 13.5 13.5 0 0 1-2.6 2.3 12.5 12.5 0 0 1-.4.3q1.7 1 3 2.5 1.4 1.6 2.4 3.5a18.3 18.3 0 0 1 1.5 4A17.4 17.4 0 0 1 56 51a15.3 15.3 0 0 1 0 1.1q0 4.3-1.7 8.2a21.4 21.4 0 0 1-4.5 6.6q-2.8 2.9-6.6 4.5-3.8 1.7-8.2 1.7Zm76-43L86 60.4l1.5.3a16.7 16.7 0 0 0 1.6 0q2 0 3.8-.4 1.8-.6 3.4-1.6 1.6-1 2.8-2.4a12.8 12.8 0 0 0 2-3.2l9.8 9.8q-1.9 2.6-4.3 4.7a27 27 0 0 1-5.2 3.6 26.1 26.1 0 0 1-6 2.2 26.8 26.8 0 0 1-6.3.8 26.4 26.4 0 0 1-10.4-2 26.2 26.2 0 0 1-8.5-5.8 26.7 26.7 0 0 1-5.5-8.3 30.4 30.4 0 0 1-.2-.4q-2.1-5-2.1-11.1a31.9 31.9 0 0 1 .7-7 27 27 0 0 1 1.4-4.3 27 27 0 0 1 3.8-6.6 24.5 24.5 0 0 1 2-2.2 26 26 0 0 1 8.4-5.6 27 27 0 0 1 10.4-2 26.3 26.3 0 0 1 6.4.8 26.9 26.9 0 0 1 6 2.2q2.7 1.5 5.2 3.6 2.4 2.1 4.3 4.8Zm152.3 0-25 30.2 1.5.3a16.7 16.7 0 0 0 1.6 0q2 0 3.8-.4 1.8-.6 3.4-1.6 1.5-1 2.8-2.4a12.8 12.8 0 0 0 2-3.2l9.8 9.8q-1.9 2.6-4.3 4.7a27 27 0 0 1-5.2 3.6 26.1 26.1 0 0 1-6 2.2 26.8 26.8 0 0 1-6.3.8 26.4 26.4 0 0 1-10.4-2 26.2 26.2 0 0 1-8.5-5.8A26.7 26.7 0 0 1 217 58a30.4 30.4 0 0 1-.2-.4q-2.1-5-2.1-11.1a31.9 31.9 0 0 1 .7-7 27 27 0 0 1 1.4-4.3 27 27 0 0 1 3.8-6.6 24.5 24.5 0 0 1 2-2.2 26 26 0 0 1 8.4-5.6 27 27 0 0 1 10.4-2 26.3 26.3 0 0 1 6.4.8 26.9 26.9 0 0 1 6 2.2q2.7 1.5 5.2 3.6 2.4 2.1 4.3 4.8ZM283.4 0v73.1H270V0h13.4ZM14 17v14.1h21a7 7 0 0 0 2.3-.4 6.6 6.6 0 0 0 .4-.1Q39 30 40 29a6.9 6.9 0 0 0 1.5-2.3q.5-1.3.5-2.7a7 7 0 0 0-.4-2.3 6.6 6.6 0 0 0-.1-.5q-.6-1.2-1.5-2.2a7 7 0 0 0-2.3-1.5 6.9 6.9 0 0 0-2.5-.5 7.9 7.9 0 0 0-.2 0H14Zm0 28.1v14h21a7 7 0 0 0 2.3-.4 6.6 6.6 0 0 0 .4-.2Q39 58 40 57.1a7 7 0 0 0 1.5-2.3 6.9 6.9 0 0 0 .5-2.5 7.9 7.9 0 0 0 0-.2 7 7 0 0 0-.4-2.3 6.6 6.6 0 0 0-.1-.4Q40.9 48 40 47a7 7 0 0 0-2.3-1.4 6.9 6.9 0 0 0-2.5-.6 7.9 7.9 0 0 0-.2 0H14Zm63.3 8.3 15.5-20.6a8 8 0 0 0-1.4-.4 7 7 0 0 0-.4 0 17.2 17.2 0 0 0-1.6-.1 19.2 19.2 0 0 0-.3 0 13.3 13.3 0 0 0-5.1 1q-2.5 1-4.2 2.8a13.1 13.1 0 0 0-2.5 3.6 15.5 15.5 0 0 0-.3.9 14.7 14.7 0 0 0-1 3.5 18.7 18.7 0 0 0 0 2.4 17.6 17.6 0 0 0 0 .7v.8a29.4 29.4 0 0 0 0 .1 19.2 19.2 0 0 0 .2 2 20.2 20.2 0 0 0 .4 1.6 18.6 18.6 0 0 0 0 .2 7.5 7.5 0 0 0 .4.9 6 6 0 0 0 .3.6Zm152.3 0L245 32.8a8 8 0 0 0-1.4-.4 7 7 0 0 0-.4 0 17.2 17.2 0 0 0-1.6-.1 19.2 19.2 0 0 0-.3 0 13.3 13.3 0 0 0-5.1 1q-2.5 1-4.2 2.8a13.1 13.1 0 0 0-2.5 3.6 15.5 15.5 0 0 0-.4.9 14.7 14.7 0 0 0-.8 3.5 18.7 18.7 0 0 0-.2 2.4 17.6 17.6 0 0 0 0 .7v.8a29.4 29.4 0 0 0 .1.1 19.2 19.2 0 0 0 .2 2 20.2 20.2 0 0 0 .4 1.6 18.6 18.6 0 0 0 0 .2 7.5 7.5 0 0 0 .4.9 6 6 0 0 0 .3.6Z"></path></svg>
|
||||
|
Before Width: | Height: | Size: 3.3 KiB |
|
Before Width: | Height: | Size: 86 KiB |
|
Before Width: | Height: | Size: 71 KiB |
|
Before Width: | Height: | Size: 215 KiB |
@@ -1,5 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg viewBox="0 0 500 500" xmlns="http://www.w3.org/2000/svg">
|
||||
<ellipse style="stroke: rgb(255, 0, 144); paint-order: stroke; stroke-width: 33px;" cx="250.056" cy="250.167" rx="232.1" ry="232.1"/>
|
||||
<path d="M 378.902 316.317 L 338.419 316.317 C 319.864 316.317 303.559 328.688 298.498 346.117 L 173.676 346.117 C 150.623 346.117 131.506 327.001 131.506 303.949 C 131.506 280.896 150.623 261.778 173.676 261.778 L 320.988 261.778 C 355.286 261.778 382.838 234.228 382.838 199.93 C 382.838 165.633 355.286 138.081 320.988 138.081 L 197.854 138.081 L 197.854 135.27 C 197.854 112.218 179.299 93.663 156.245 93.663 L 115.763 93.663 C 92.711 93.663 74.156 112.218 74.156 135.27 L 74.156 145.953 C 74.156 169.006 92.711 187.56 115.763 187.56 L 156.245 187.56 C 174.802 187.56 191.107 175.191 196.166 157.76 L 320.988 157.76 C 344.04 157.76 363.158 176.878 363.158 199.93 C 363.158 222.983 344.04 242.099 320.988 242.099 L 173.676 242.099 C 139.378 242.099 111.828 269.651 111.828 303.949 C 111.828 338.246 139.378 365.797 173.676 365.797 L 296.812 365.797 L 296.812 368.608 C 296.812 391.661 315.366 410.216 338.419 410.216 L 378.902 410.216 C 401.954 410.216 420.508 391.661 420.508 368.608 L 420.508 357.926 C 420.508 334.872 401.392 316.317 378.902 316.317 Z M 178.174 146.515 C 178.174 158.322 168.616 168.444 156.245 168.444 L 115.763 168.444 C 103.956 168.444 93.836 158.885 93.836 146.515 L 93.836 135.832 C 93.836 124.025 103.393 113.904 115.763 113.904 L 156.245 113.904 C 168.054 113.904 178.174 123.463 178.174 135.832 L 178.174 146.515 Z M 400.83 368.608 C 400.83 380.416 391.271 390.536 378.902 390.536 L 338.419 390.536 C 326.612 390.536 316.49 380.978 316.49 368.608 L 316.49 357.926 C 316.49 346.117 326.048 335.997 338.419 335.997 L 378.902 335.997 C 390.709 335.997 400.83 345.555 400.83 357.926 L 400.83 368.608 Z" style="fill: rgb(255, 0, 144); paint-order: fill; stroke: rgb(255, 0, 144); stroke-width: 7px;"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 913 KiB |
|
Before Width: | Height: | Size: 9.2 KiB |
|
Before Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 142 KiB |
|
Before Width: | Height: | Size: 90 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 18 KiB |