update examples for stackblitz (#1379)

This commit is contained in:
Fred K. Schott 2021-09-16 08:06:22 -07:00 committed by GitHub
parent c4634e5ea6
commit cb7a957f41
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
222 changed files with 170 additions and 8175 deletions

View file

@ -0,0 +1,6 @@
{
"startCommand": "npm start",
"env": {
"ENABLE_CJS_IMPORTS": true
}
}

View file

@ -4,6 +4,8 @@
npm init astro -- --template blog-multiple-authors npm init astro -- --template blog-multiple-authors
``` ```
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/snowpackjs/astro/tree/latest/examples/blog-multiple-authors)
> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun! > 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!
Features: Features:

View file

@ -0,0 +1,6 @@
{
"startCommand": "npm start",
"env": {
"ENABLE_CJS_IMPORTS": true
}
}

View file

@ -4,6 +4,8 @@
npm init astro -- --template blog npm init astro -- --template blog
``` ```
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/snowpackjs/astro/tree/latest/examples/blog)
> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun! > 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!
Features: Features:

View file

@ -0,0 +1,6 @@
{
"startCommand": "npm start",
"env": {
"ENABLE_CJS_IMPORTS": true
}
}

View file

@ -4,6 +4,8 @@
npm init astro -- --template docs npm init astro -- --template docs
``` ```
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/snowpackjs/astro/tree/latest/examples/docs)
## Features ## Features
- ✅ **Full Markdown support** - ✅ **Full Markdown support**

View file

@ -0,0 +1,6 @@
{
"startCommand": "npm start",
"env": {
"ENABLE_CJS_IMPORTS": true
}
}

View file

@ -0,0 +1,9 @@
# Astro + Lit Example
```
npm init astro -- --template framework-lit
```
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/snowpackjs/astro/tree/latest/examples/framework-lit)
This example showcases Astro working with [Lit](https://lit.dev/).

View file

@ -0,0 +1,6 @@
{
"startCommand": "npm start",
"env": {
"ENABLE_CJS_IMPORTS": true
}
}

View file

@ -4,6 +4,8 @@
npm init astro -- --template framework-multiple npm init astro -- --template framework-multiple
``` ```
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/snowpackjs/astro/tree/latest/examples/framework-multiple)
This example showcases Astro's built-in support for multiple frameworks ([React](https://reactjs.org), [Preact](https://preactjs.com), [Svelte](https://svelte.dev), and [Vue (`v3.x`)](https://v3.vuejs.org/)). This example showcases Astro's built-in support for multiple frameworks ([React](https://reactjs.org), [Preact](https://preactjs.com), [Svelte](https://svelte.dev), and [Vue (`v3.x`)](https://v3.vuejs.org/)).
No configuration is needed to enable these frameworks—just start writing components in `src/components`. No configuration is needed to enable these frameworks—just start writing components in `src/components`.

View file

@ -0,0 +1,6 @@
{
"startCommand": "npm start",
"env": {
"ENABLE_CJS_IMPORTS": true
}
}

View file

@ -1,38 +1,11 @@
# Using Preact with Astro # Astro + Preact Example
This example showcases Astro's built-in support for [Preact](https://www.preactjs.com/). ```
## Installation
### Automatic
Bootstrap your Astro project with this template!
```shell
npm init astro -- --template framework-preact npm init astro -- --template framework-preact
``` ```
### Manual [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/snowpackjs/astro/tree/latest/examples/framework-preact)
To use Preact components in your Astro project: This example showcases Astro working with [Preact](https://preactjs.com).
1. Install `@astrojs/renderer-preact`
```shell
npm i @astrojs/renderer-preact
```
2. Add `"@astrojs/renderer-preact"` to your `renderers` in `astro.config.mjs`.
```js
export default {
renderers: [
"@astrojs/renderer-preact",
// optionally, others...
]
}
```
## Usage
Write your Preact components as `.jsx` or `.tsx` files in your project. Write your Preact components as `.jsx` or `.tsx` files in your project.

View file

@ -0,0 +1,6 @@
{
"startCommand": "npm start",
"env": {
"ENABLE_CJS_IMPORTS": true
}
}

View file

@ -1,38 +1,11 @@
# Using React with Astro # Astro + React Example
This example showcases Astro's built-in support for [React](https://reactjs.org/). ```
## Installation
### Automatic
Bootstrap your Astro project with this template!
```shell
npm init astro -- --template framework-react npm init astro -- --template framework-react
``` ```
### Manual [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/snowpackjs/astro/tree/latest/examples/framework-react)
To use React components in your Astro project: This example showcases Astro working with [React](https://reactjs.org/).
1. Install `@astrojs/renderer-react`
```shell
npm i @astrojs/renderer-react
```
2. Add `"@astrojs/renderer-react"` to your `renderers` in `astro.config.mjs`.
```js
export default {
renderers: [
"@astrojs/renderer-react",
// optionally, others...
]
}
```
## Usage
Write your React components as `.jsx` or `.tsx` files in your project. Write your React components as `.jsx` or `.tsx` files in your project.

View file

@ -0,0 +1,6 @@
{
"startCommand": "npm start",
"env": {
"ENABLE_CJS_IMPORTS": true
}
}

View file

@ -1,38 +1,11 @@
# Using Solid with Astro # Astro + Solid.js Example
This example showcases Astro's built-in support for [Solid](https://www.solidjs.com/). ```
npm init astro -- --template framework-solid
## Installation
### Automatic
Bootstrap your Astro project with this template!
```shell
npm init astro --template framework-solid
``` ```
### Manual [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/snowpackjs/astro/tree/latest/examples/framework-solid)
To use Solid components in your Astro project: This example showcases Astro working with [Solid](https://www.solidjs.com/).
1. Install `@astrojs/renderer-solid`
```shell
npm i @astrojs/renderer-solid
```
2. Add `"@astrojs/renderer-solid"` to your `renderers` in `astro.config.mjs`.
```js
export default {
renderers: [
"@astrojs/renderer-solid",
// optionally, others...
]
}
```
## Usage
Write your Solid components as `.jsx` or `.tsx` files in your project. Write your Solid components as `.jsx` or `.tsx` files in your project.

View file

@ -0,0 +1,6 @@
{
"startCommand": "npm start",
"env": {
"ENABLE_CJS_IMPORTS": true
}
}

View file

@ -1,38 +1,9 @@
# Using Svelte with Astro # Astro + Svelte Example
This example showcases Astro's built-in support for [Svelte](https://svelte.dev/). ```
## Installation
### Automatic
Bootstrap your Astro project with this template!
```shell
npm init astro -- --template framework-svelte npm init astro -- --template framework-svelte
``` ```
### Manual [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/snowpackjs/astro/tree/latest/examples/framework-svelte)
To use Svelte components in your Astro project: This example showcases Astro working with [Svelte](https://svelte.dev/).
1. Install `@astrojs/renderer-svelte`
```shell
npm i @astrojs/renderer-svelte
```
2. Add `"@astrojs/renderer-svelte"` to your `renderers` in `astro.config.mjs`.
```js
export default {
renderers: [
"@astrojs/renderer-svelte",
// optionally, others...
]
}
```
## Usage
Write your Svelte components as `.svelte` files in your project.

View file

@ -0,0 +1,6 @@
{
"startCommand": "npm start",
"env": {
"ENABLE_CJS_IMPORTS": true
}
}

View file

@ -1,38 +1,10 @@
# Using Vue with Astro # Astro + Vue Example
This example showcases Astro's built-in support for [Vue](https://v3.vuejs.org/). ```
## Installation
### Automatic
Bootstrap your Astro project with this template!
```shell
npm init astro -- --template framework-vue npm init astro -- --template framework-vue
``` ```
### Manual [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/snowpackjs/astro/tree/latest/examples/framework-vue)
To use Vue components in your Astro project: This example showcases Astro working with [Vue](https://v3.vuejs.org/).
1. Install `@astrojs/renderer-vue`
```shell
npm i @astrojs/renderer-vue
```
2. Add `"@astrojs/renderer-vue"` to your `renderers` in `astro.config.mjs`.
```js
export default {
renderers: [
"@astrojs/renderer-vue",
// optionally, others...
]
}
```
## Usage
Write your Vue components as `.vue` files in your project.

View file

@ -0,0 +1,6 @@
{
"startCommand": "npm start",
"env": {
"ENABLE_CJS_IMPORTS": true
}
}

View file

@ -1,12 +1,20 @@
# [Astro](https://astro.build) # Astro Starter Kit: Minimal
```
npm init astro -- --template minimal
```
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/snowpackjs/astro/tree/latest/examples/minimal)
> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!
## 🚀 Project Structure
Inside of your Astro project, you'll see the following folders and files: Inside of your Astro project, you'll see the following folders and files:
``` ```
/ /
├── public/ ├── public/
│ ├── robots.txt
│ └── favicon.ico
├── src/ ├── src/
│ └── pages/ │ └── pages/
│ └── index.astro │ └── index.astro

View file

@ -0,0 +1,6 @@
{
"startCommand": "npm start",
"env": {
"ENABLE_CJS_IMPORTS": true
}
}

View file

@ -4,6 +4,8 @@
npm init astro -- --template portfolio npm init astro -- --template portfolio
``` ```
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/snowpackjs/astro/tree/latest/examples/portfolio)
> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun! > 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!
## 🧞 Commands ## 🧞 Commands

View file

@ -1,18 +0,0 @@
# build output
dist
# dependencies
node_modules/
.snowpack/
# logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# environment variables
.env
.env.production
# macOS-specific files
.DS_Store

View file

@ -1,2 +0,0 @@
## force pnpm to hoist
shamefully-hoist = true

View file

@ -1,4 +0,0 @@
{
"singleQuote": true,
"trailingComma": "all"
}

View file

@ -1,21 +0,0 @@
MIT License
Copyright (c) 2019 Fred K. Schott
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View file

@ -1,37 +0,0 @@
# Astro Demo
## Getting set up
1. Check out Astro at: https://github.com/snowpackjs/astro
1. Install and build Astro:
```shell
npm install
npm run build
```
2. Link Astro:
```shell
npm link
```
2. In this project link Astro and install other deps:
```shell
npm link astro
npm install
```
3. Run the Astro dev environment.
```shell
npm start
```
4. Build the website. (Not yet working.)
```shell
npm run build
```

View file

@ -1,21 +0,0 @@
// Full Astro Configuration API Documentation:
// https://docs.astro.build/reference/configuration-reference
// @type-check enabled!
// VSCode and other TypeScript-enabled text editors will provide auto-completion,
// helpful tooltips, and warnings if your exported object is invalid.
// You can disable this by removing "@ts-check" and `@type` comments below.
// @ts-check
export default /** @type {import('astro').AstroUserConfig} */ ({
projectRoot: '.',
pages: './src/pages',
dist: './dist',
public: './public',
// Set "renderers" to "[]" to disable all default, builtin component support.
renderers: [
'@astrojs/renderer-vue',
'@astrojs/renderer-svelte',
'@astrojs/renderer-preact',
],
});

View file

@ -1,27 +0,0 @@
{
"name": "@example/snowpack",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"test": "jest /__test__/",
"format": "prettier --write \"src/**/*.js\" && yarn format:css",
"lint": "prettier --check \"src/**/*.js\""
},
"dependencies": {
"date-fns": "^2.19.0",
"deepmerge": "^4.2.2",
"docsearch.js": "^2.6.3",
"htm": "^3.0.4"
},
"devDependencies": {
"@contentful/rich-text-html-renderer": "^14.1.2",
"@contentful/rich-text-types": "^14.1.2",
"astro": "^0.20.7"
},
"snowpack": {
"workspaceRoot": "../.."
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 423 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 881 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

View file

@ -1,19 +0,0 @@
{
"name": "",
"short_name": "",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" x="0" y="0" viewBox="0 0 256 282" xml:space="preserve"><style>.st0{fill:#2e5e82}</style><path class="st0" d="M128 178.846l58-14.5V156c0-3.309-2.691-6-6-6H76c-3.309 0-6 2.691-6 6v8.346l58 14.5z"/><path class="st0" d="M128 189.154l-58-14.5V212c0 3.309 2.691 6 6 6h104c3.309 0 6-2.691 6-6v-37.346l-58 14.5zM64 266h32v16H64zM160 266h32v16h-32zM70 92h20v14H70zM70 0h20v80H70zM58 0H16C7.163 0 0 7.163 0 16v48c0 8.836 7.163 16 16 16h42V0z"/><path class="st0" d="M70 0h20v106H70zM166 92h20v14h-20z"/><path class="st0" d="M198 92v26h-44V92h-52v26H58V92H32v148c0 8.836 7.163 16 16 16h160c8.836 0 16-7.163 16-16V92h-26zm0 120c0 9.925-8.075 18-18 18H76c-9.925 0-18-8.075-18-18v-56c0-9.925 8.075-18 18-18h104c9.925 0 18 8.075 18 18v56zM102 0h52v80h-52zM166 0h20v80h-20zM240 0h-42v80h42c8.836 0 16-7.163 16-16V16c0-8.837-7.163-16-16-16z"/><path class="st0" d="M166 0h20v106h-20z"/></svg>

Before

Width:  |  Height:  |  Size: 914 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 161 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 328 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 361 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 245 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 546 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 275 KiB

View file

@ -1,13 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="52px" height="12px" viewBox="0 0 52 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buttons</title>
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="window" transform="translate(-15.000000, -13.000000)">
<g id="buttons" transform="translate(15.000000, 13.000000)">
<circle id="Oval" fill="#1479B8" cx="6" cy="6" r="6"></circle>
<circle id="Oval" fill="#58B2EA" cx="26" cy="6" r="6"></circle>
<circle id="Oval" fill="#6FC8FF" cx="46" cy="6" r="6"></circle>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 722 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 143 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 457 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 322 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 139 KiB

View file

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="15px" height="12px" viewBox="0 0 15 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>snowpack-logo-black</title>
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="window" transform="translate(-311.000000, -13.000000)" fill="#FFFFFF" fill-rule="nonzero">
<g id="snowpack-logo-black" transform="translate(311.000000, 13.000000)">
<path d="M14.8808653,10.8445312 L8.1309317,0.34453125 C7.99288619,0.12984375 7.75523227,0 7.5,0 C7.24476854,0 7.00711463,0.12984375 6.86906911,0.34453125 L0.119135485,10.8445312 C-0.0292405545,11.0753205 -0.0397571943,11.3687106 0.0917138792,11.6095312 C0.223245453,11.8502911 0.475722639,12 0.750066781,12 L14.249934,12 C14.5243845,12 14.7768039,11.8502344 14.9082869,11.6092969 C15.0397573,11.3685585 15.0292398,11.0752353 14.8808653,10.8445312 Z M7.51445903,2.12068966 L9.51724138,5.22723371 L7.51445903,5.22723371 L6.01336908,6.72413793 L5.12068966,5.8339477 L7.51445903,2.12068966 Z" id="Shape"></path>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 260 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 311 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 495 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 341 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 74 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 32 KiB

View file

@ -1,12 +0,0 @@
<svg width="399" height="440" viewBox="0 0 399 440" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M334.919 218.102C334.379 218.43 316.57 215.442 294.254 213.931C276.029 212.696 254.798 212.743 237.51 213.914C223.491 214.863 205.072 207.816 202.871 216.191C194.633 247.542 176.908 274.846 154.36 296.119C137.397 312.122 117.983 324.257 96.985 331.734C71.986 318.892 60.18 290.33 70.833 265.287C79.282 245.424 89.113 223.547 70.963 218.542C57.75 214.898 50.495 227.555 45.416 241.087C35.686 267.01 17.197 293.835 11.928 325.608C6.36603 359.15 11.91 394.755 40.92 414.861C108.482 461.687 181.82 385.833 259.145 366.765C287.169 359.854 317.93 360.968 342.62 346.668C361.161 335.929 373.384 318.133 376.853 298.152C382.433 266.015 365.714 234.086 334.919 218.102Z" fill="#C21325" stroke="white" stroke-width="20"/>
<path d="M202.871 216.191C194.633 247.542 176.908 274.846 154.36 296.119C137.397 312.122 117.983 324.257 96.984 331.734C71.985 318.892 60.179 290.33 70.832 265.287C79.281 245.424 89.112 223.547 70.962 218.542C57.749 214.898 50.494 227.555 45.415 241.087C35.685 267.01 17.196 293.835 11.927 325.608C6.36504 359.15 11.909 394.755 40.919 414.861C108.481 461.687 181.819 385.833 259.145 366.765C287.169 359.854 317.93 360.968 342.62 346.668C361.161 335.929 373.384 318.133 376.853 298.153C382.433 266.016 365.714 234.087 334.919 218.103" stroke="white" stroke-width="20"/>
<path d="M264.892 91.17L319.213 201.982L384.306 10H145.317L210.26 201.641L264.892 91.17Z" fill="#C21325"/>
<path d="M264.892 91.17L319.213 201.982L384.305 10H145.317L210.26 201.641L264.892 91.17Z" stroke="white" stroke-width="20"/>
<path d="M198.988 257.528C221.601 257.528 239.933 239.196 239.933 216.583C239.933 193.97 221.601 175.638 198.988 175.638C176.375 175.638 158.043 193.97 158.043 216.583C158.043 239.196 176.375 257.528 198.988 257.528Z" fill="#C21325"/>
<path d="M198.988 257.528C221.601 257.528 239.933 239.196 239.933 216.583C239.933 193.97 221.601 175.638 198.988 175.638C176.375 175.638 158.043 193.97 158.043 216.583C158.043 239.196 176.375 257.528 198.988 257.528Z" stroke="white" stroke-width="20"/>
<path d="M332.372 257.528C354.985 257.528 373.317 239.196 373.317 216.583C373.317 193.97 354.985 175.638 332.372 175.638C309.759 175.638 291.427 193.97 291.427 216.583C291.427 239.196 309.759 257.528 332.372 257.528Z" fill="#C21325" stroke="white" stroke-width="20"/>
<path d="M332.372 257.528C354.985 257.528 373.317 239.196 373.317 216.583C373.317 193.97 354.985 175.638 332.372 175.638C309.759 175.638 291.427 193.97 291.427 216.583C291.427 239.196 309.759 257.528 332.372 257.528Z" stroke="white" stroke-width="20"/>
<path d="M65.099 257.822C87.7123 257.822 106.044 239.49 106.044 216.877C106.044 194.264 87.7123 175.932 65.099 175.932C42.4857 175.932 24.1541 194.264 24.1541 216.877C24.1541 239.49 42.4857 257.822 65.099 257.822Z" fill="#C21325"/>
<path d="M65.099 257.822C87.7123 257.822 106.044 239.49 106.044 216.877C106.044 194.264 87.7123 175.932 65.099 175.932C42.4857 175.932 24.1541 194.264 24.1541 216.877C24.1541 239.49 42.4857 257.822 65.099 257.822Z" stroke="white" stroke-width="20"/>
</svg>

Before

Width:  |  Height:  |  Size: 3 KiB

View file

@ -1,105 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 412 411" style="enable-background:new 0 0 412 411;" xml:space="preserve">
<title>Tilted sphere with longitudinal stripes</title>
<g fill="#ff0000">
<g>
<linearGradient id="logo-color-SVGID_1_" gradientUnits="userSpaceOnUse" x1="163.8164" y1="-672.4328" x2="163.8164" y2="-266.5325" gradientTransform="matrix(0.866 0.5 -0.5 0.866 -168.6902 527.1097)">
<stop offset="0" style="stop-color:#84CFF3"/>
<stop offset="0" style="stop-color:#A9E0F9"/>
<stop offset="0.5293" style="stop-color:#668CC1"/>
<stop offset="1" style="stop-color:#2C559C"/>
</linearGradient>
<path style="fill:url(#logo-color-SVGID_1_);" d="M224.26,216.546c-56.609,98.05-110.723,172.788-120.866,166.932
s27.525-90.089,84.134-188.139S298.252,22.551,308.395,28.407S280.87,118.496,224.26,216.546z"/>
</g>
<g>
<linearGradient id="logo-color-SVGID_2_" gradientUnits="userSpaceOnUse" x1="-219.7428" y1="-108.4554" x2="-219.7428" y2="214.2954" gradientTransform="matrix(0.9848 0.1736 -0.1736 0.9848 332.8062 206.2297)">
<stop offset="0" style="stop-color:#84CFF3"/>
<stop offset="0" style="stop-color:#A9E0F9"/>
<stop offset="0.5293" style="stop-color:#668CC1"/>
<stop offset="1" style="stop-color:#2C559C"/>
</linearGradient>
<path style="fill:url(#logo-color-SVGID_2_);" d="M168.388,67.113c0,0-56.017,42.973-75.193,229.181c-6.53,43.26-3.894,78.97,10.145,87.076
c-60.859-35.137-42.317-163.195,0.097-236.657c12.391-21.461,27.608-41.802,44.414-59.687
c6.623-7.047,13.492-13.714,20.533-19.916"/>
<linearGradient id="logo-color-SVGID_3_" gradientUnits="userSpaceOnUse" x1="-138.856" y1="-175.1664" x2="-138.856" y2="130.3041" gradientTransform="matrix(0.9848 0.1736 -0.1736 0.9848 332.8062 206.2297)">
<stop offset="0" style="stop-color:#84CFF3"/>
<stop offset="0" style="stop-color:#A9E0F9"/>
<stop offset="0.5293" style="stop-color:#668CC1"/>
<stop offset="1" style="stop-color:#2C559C"/>
</linearGradient>
<path style="fill:url(#logo-color-SVGID_3_);" d="M168.388,67.113c0,0-56.017,42.973-75.193,229.181
c6.413-42.484,21.664-92.249,43.634-130.303C184.706,83.068,279.401,11.591,308.341,28.3
c-39.614-22.871-93.509-2.11-139.956,38.81"/>
</g>
<g>
<linearGradient id="logo-color-SVGID_4_" gradientUnits="userSpaceOnUse" x1="-3595.6011" y1="-2655.7827" x2="-3572.4814" y2="-2228.2261" gradientTransform="matrix(-0.6428 -0.766 -0.766 0.6428 -3893.9177 -910.2711)">
<stop offset="0" style="stop-color:#84CFF3"/>
<stop offset="0" style="stop-color:#A9E0F9"/>
<stop offset="1" style="stop-color:#2C559C"/>
</linearGradient>
<path style="fill:url(#logo-color-SVGID_4_);" d="M344.658,168.607c0,0-9.208,69.999-160.881,179.709
c-34.2,27.285-66.443,42.858-80.482,34.752c60.859,35.137,162.489-44.95,204.903-118.413
c12.391-21.461,22.398-44.81,29.483-68.307c2.792-9.259,5.13-18.541,6.982-27.74"/>
<linearGradient id="logo-color-SVGID_5_" gradientUnits="userSpaceOnUse" x1="-3469.5286" y1="-2641.7751" x2="-3678.5356" y2="-2011.9231" gradientTransform="matrix(-0.6428 -0.766 -0.766 0.6428 -3893.9177 -910.2711)">
<stop offset="0" style="stop-color:#84CFF3"/>
<stop offset="0" style="stop-color:#A9E0F9"/>
<stop offset="0.5293" style="stop-color:#668CC1"/>
<stop offset="1" style="stop-color:#2C559C"/>
</linearGradient>
<path style="fill:url(#logo-color-SVGID_5_);" d="M344.658,168.607c0,0-9.208,69.999-160.881,179.709
c33.586-26.795,69.058-64.886,91.028-102.94c47.876-82.924,62.429-200.67,33.489-217.378
c39.614,22.871,48.582,79.926,36.368,140.61"/>
</g>
<g>
<linearGradient id="logo-color-SVGID_6_" gradientUnits="userSpaceOnUse" x1="61.3711" y1="-586.1053" x2="61.3711" y2="-260.8823" gradientTransform="matrix(0.866 0.5 -0.5 0.866 -168.6902 527.1097)">
<stop offset="0" style="stop-color:#84CFF3"/>
<stop offset="0" style="stop-color:#A9E0F9"/>
<stop offset="0.5293" style="stop-color:#668CC1"/>
<stop offset="1" style="stop-color:#2C559C"/>
</linearGradient>
<path style="fill:url(#logo-color-SVGID_6_);" d="M27.152,230.307C13.031,109.538,122.464,18.433,122.464,18.433l-0.001-0.002
c-1.687,0.753-3.365,1.529-5.033,2.328C81.438,38,50.093,65.908,28.632,103.079c-56.609,98.05-23.015,223.426,75.035,280.035
c-54.798-31.638-80.137-89.541-76.52-152.808"/>
<linearGradient id="logo-color-SVGID_7_" gradientUnits="userSpaceOnUse" x1="72.6895" y1="-670.8823" x2="72.6895" y2="-354.9577" gradientTransform="matrix(0.866 0.5 -0.5 0.866 -168.6902 527.1097)">
<stop offset="0" style="stop-color:#84CFF3"/>
<stop offset="0" style="stop-color:#A9E0F9"/>
<stop offset="0.5293" style="stop-color:#668CC1"/>
<stop offset="1" style="stop-color:#2C559C"/>
</linearGradient>
<path style="fill:url(#logo-color-SVGID_7_);" d="M27.152,230.307C13.031,109.538,122.464,18.433,122.464,18.433l-0.001-0.002
c57.946-25.86,127.049-24.54,186.205,9.613c-85.755-49.511-191.147-4.378-247.756,93.672
c-18.961,32.841-30.044,67.454-33.177,100.827c-0.244,2.596-0.439,5.185-0.587,7.764"/>
</g>
<g>
<linearGradient id="logo-color-SVGID_8_" gradientUnits="userSpaceOnUse" x1="-3053.2617" y1="-745.8848" x2="-3053.2617" y2="-206.5073" gradientTransform="matrix(-0.866 -0.5 -0.5 0.866 -2582.2083 -866.3355)">
<stop offset="0" style="stop-color:#84CFF3"/>
<stop offset="0" style="stop-color:#A9E0F9"/>
<stop offset="0.5293" style="stop-color:#668CC1"/>
<stop offset="1" style="stop-color:#2C559C"/>
</linearGradient>
<path style="fill:url(#logo-color-SVGID_8_);" d="M274.26,372.975C385.91,324.82,410.093,184.496,410.093,184.496l0.002,0
c0.191,1.838,0.358,3.679,0.5,5.522c3.065,39.791-5.432,80.89-26.893,118.062c-56.609,98.05-181.985,131.644-280.035,75.035
c54.798,31.638,117.614,24.63,170.595-10.136"/>
<linearGradient id="logo-color-SVGID_9_" gradientUnits="userSpaceOnUse" x1="-3041.9434" y1="-722.2291" x2="-3041.9434" y2="-60.6206" gradientTransform="matrix(-0.866 -0.5 -0.5 0.866 -2582.2083 -866.3355)">
<stop offset="0" style="stop-color:#84CFF3"/>
<stop offset="0" style="stop-color:#A9E0F9"/>
<stop offset="0.5293" style="stop-color:#668CC1"/>
<stop offset="1" style="stop-color:#2C559C"/>
</linearGradient>
<path style="fill:url(#logo-color-SVGID_9_);" d="M274.26,372.975C385.91,324.82,410.093,184.496,410.093,184.496l0.002,0
c-6.578-63.113-42.272-122.298-101.428-156.451c85.755,49.511,99.365,163.349,42.756,261.399
c-18.961,32.841-43.395,59.746-70.73,79.146c-2.126,1.509-4.27,2.973-6.431,4.39"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6.5 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 22 KiB

View file

@ -1,6 +0,0 @@
<svg width="256" height="296" viewBox="0 0 256 296" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M128 0L256 73.9V221.7L128 295.6L0 221.7V73.9L128 0Z" fill="#673AB8"/>
<path d="M34.865 220.478C51.881 242.258 105.96 225.663 157.015 185.774C208.07 145.886 237.255 97.429 220.239 75.648C203.222 53.868 149.144 70.464 98.089 110.352C47.034 150.242 17.849 198.698 34.865 220.478ZM42.135 214.798C36.491 207.576 38.957 193.396 49.708 175.545C61.03 156.748 80.249 135.997 103.768 117.622C127.288 99.247 152.071 85.618 173.049 79.18C192.971 73.067 207.326 74.105 212.969 81.328C218.613 88.551 216.147 102.731 205.396 120.582C194.074 139.379 174.855 160.129 151.336 178.505C127.816 196.88 103.032 210.509 82.055 216.946C62.133 223.06 47.778 222.022 42.135 214.799V214.798Z" fill="white"/>
<path d="M220.239 220.478C237.256 198.698 208.07 150.241 157.015 110.352C105.96 70.464 51.88 53.868 34.865 75.648C17.848 97.428 47.034 145.886 98.089 185.774C149.144 225.663 203.222 242.259 220.239 220.478ZM212.969 214.798C207.326 222.022 192.971 223.06 173.049 216.946C152.071 210.509 127.288 196.88 103.769 178.505C80.249 160.129 61.029 139.379 49.709 120.582C38.957 102.731 36.491 88.552 42.134 81.328C47.778 74.105 62.133 73.067 82.054 79.18C103.032 85.618 127.816 99.247 151.335 117.622C174.855 135.997 194.074 156.748 205.395 175.545C216.147 193.395 218.613 207.575 212.969 214.799V214.798Z" fill="white"/>
<path d="M127.552 167.667C138.379 167.667 147.155 158.89 147.155 148.063C147.155 137.237 138.379 128.46 127.552 128.46C116.725 128.46 107.948 137.237 107.948 148.063C107.948 158.89 116.725 167.667 127.552 167.667V167.667Z" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-11.5 -10.23174 23 20.46348">
<title>React Logo</title>
<circle cx="0" cy="0" r="2.05" fill="#61dafb"/>
<g stroke="#61dafb" stroke-width="1" fill="none">
<ellipse rx="11" ry="4.2"/>
<ellipse rx="11" ry="4.2" transform="rotate(60)"/>
<ellipse rx="11" ry="4.2" transform="rotate(120)"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 366 B

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" fill="white"><!-- Font Awesome Free 5.15.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path d="M301.84 378.92c-.3.6-.6 1.08 0 0zm249.13-87a131.16 131.16 0 0 0-58 13.5c-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2-1.4-6.6-14.3-6.7-24 2.5-25.29 5.9a122.83 122.83 0 0 0-5.3 19.1c-2.3 11.7-25.79 53.5-39.09 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2-1.4-6.6-14.29-6.7-24 2.5-25.3 5.9-2.7 11.4-5.3 19.1-33.89 77.3-42.08 95.4c-4.2 9.2-7.8 16.6-10.4 21.6-.4.8-.7 1.3-.9 1.7.3-.5.5-1 .5-.8-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2s-1.4 2-1.4 2 10.1-42.4-19.39-42.4c-18.4 0-44 20.2-56.58 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.79-38.2-101.87-65.2-99.07-116.5 1-18.7 7.5-67.8 127.07-127.4 98-48.8 176.35-35.4 189.84-5.6 19.4 42.5-41.89 121.6-143.66 133-38.79 4.3-59.18-10.7-64.28-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.79 28.9 18.7 6.1 64.18 9.5 119.17-11.8 61.78-23.8 109.87-90.1 95.77-145.6C386.52 18.32 293-.18 204.57 31.22c-52.69 18.7-109.67 48.1-150.66 86.4-48.69 45.6-56.48 85.3-53.28 101.9 11.39 58.9 92.57 97.3 125.06 125.7-1.6.9-3.1 1.7-4.5 2.5-16.29 8.1-78.18 40.5-93.67 74.7-17.5 38.8 2.9 66.6 16.29 70.4 41.79 11.6 84.58-9.3 107.57-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.29-4.9 16.39-9.4 23.49-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.49 5 15.39 5 13.8 0 20-11.4 26.89-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.39 0 18.79-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.59-46 16.2-31.8 31.69-71.5 31.69-71.5a201.24 201.24 0 0 0 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2a.31.31 0 0 0 .1.2c-3 4-6.4 8.3-9.9 12.5-12.79 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.69 2.5 11.5-.8 19.6-3.6 23.5-5.4a82.2 82.2 0 0 0 20.19-10.6c12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5C434.8 301.72 450.1 270 450.1 270a201.24 201.24 0 0 0 6.2 25.8c2.4 8.1 7.09 17 11.39 25.7-18.59 15.1-30.09 32.6-34.09 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5a79.46 79.46 0 0 0 21.59-11.1c12.5-9.2 24.59-22.1 23.79-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.09-10.2 62.09-7.2 55.68 6.5 66.58 41.3 64.48 55.8s-13.8 22.6-17.7 25-5.1 3.3-4.8 5.1c.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.19-11.8 30.29-38.7 1.6-34-31.09-71.4-89-71.1zm-429.18 144.7c-18.39 20.1-44.19 27.7-55.28 21.3C54.61 451 59.31 421.42 82 400c13.8-13 31.59-25 43.39-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.29 30.4.3 57.2-19.1 78.3zm134.36-91.4c-6.4 15.7-19.89 55.7-28.09 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.09-11.3 21.19-14.9 23.79-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.89-13.9 0 .5.1 1 .1 1.6-.13 17.9-17.32 30-25.12 34.8zm85.58-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.59-15.3 19-24.5a36.18 36.18 0 0 1 1.9 10.8c-.1 22.5-16.2 30.9-25.89 34.4z"/></svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 98.1 118">
<path fill="#ff3e00" d="M91.8 15.6C80.9-.1 59.2-4.7 43.6 5.2L16.1 22.8A31.25 31.25 0 001.9 43.9c-1.3 7.3-.2 14.8 3.3 21.3-2.4 3.6-4 7.6-4.7 11.8-1.6 8.9.5 18.1 5.7 25.4 11 15.7 32.6 20.3 48.2 10.4l27.5-17.5c7.5-4.7 12.7-12.4 14.2-21.1 1.3-7.3.2-14.8-3.3-21.3 2.4-3.6 4-7.6 4.7-11.8 1.7-9-.4-18.2-5.7-25.5"/>
<path fill="#fff" d="M40.9 103.9a21.8 21.8 0 01-23.4-8.7c-3.2-4.4-4.4-9.9-3.5-15.3l.6-2.6.5-1.6 1.4 1c3.3 2.4 6.9 4.2 10.8 5.4l1 .3-.1 1c-.1 1.4.3 2.9 1.1 4.1a6.62 6.62 0 008.8 2L65.5 72c1.4-.9 2.3-2.2 2.6-3.8.3-1.6-.1-3.3-1-4.6a6.56 6.56 0 00-8.8-1.9l-10.5 6.7a18.6 18.6 0 01-5.6 2.4 21.8 21.8 0 01-23.4-8.7 20.2 20.2 0 01-3.4-15.3c.9-5.2 4.1-9.9 8.6-12.7l27.5-17.5c1.7-1.1 3.6-1.9 5.6-2.5a21.8 21.8 0 0123.4 8.7c3.2 4.4 4.4 9.9 3.5 15.3-.2.9-.4 1.7-.7 2.6l-.5 1.6-1.4-1c-3.3-2.4-6.9-4.2-10.8-5.4l-1-.3.1-1c.1-1.4-.3-2.9-1.1-4.1a6.56 6.56 0 00-8.8-1.9L32.4 46.1c-1.4.9-2.3 2.2-2.6 3.8s.1 3.3 1 4.6a6.56 6.56 0 008.8 1.9l10.5-6.7c1.7-1.1 3.6-1.9 5.6-2.5a21.8 21.8 0 0123.4 8.7c3.2 4.4 4.4 9.9 3.5 15.3-.9 5.2-4.1 9.9-8.6 12.7l-27.5 17.5c-1.7 1.1-3.6 1.9-5.6 2.5"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1,12 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 54 33">
<g clip-path="url(#prefix__clip0)">
<path fill="#06B6D4" fill-rule="evenodd"
d="M27 0c-7.2 0-11.7 3.6-13.5 10.8 2.7-3.6 5.85-4.95 9.45-4.05 2.054.513 3.522 2.004 5.147 3.653C30.744 13.09 33.808 16.2 40.5 16.2c7.2 0 11.7-3.6 13.5-10.8-2.7 3.6-5.85 4.95-9.45 4.05-2.054-.513-3.522-2.004-5.147-3.653C36.756 3.11 33.692 0 27 0zM13.5 16.2C6.3 16.2 1.8 19.8 0 27c2.7-3.6 5.85-4.95 9.45-4.05 2.054.514 3.522 2.004 5.147 3.653C17.244 29.29 20.308 32.4 27 32.4c7.2 0 11.7-3.6 13.5-10.8-2.7 3.6-5.85 4.95-9.45 4.05-2.054-.513-3.522-2.004-5.147-3.653C23.256 19.31 20.192 16.2 13.5 16.2z"
clip-rule="evenodd" />
</g>
<defs>
<clipPath id="prefix__clip0">
<path fill="#fff" d="M0 0h54v32.4H0z" />
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 820 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

View file

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created by AtomCrusher for the English Wikipedia -->
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="612" height="612">
<!-- Block -->
<path d="m376 0c0 1.08 0 2.16 0 3.3 0 38.76-31.42 70.17-70.17 70.17-38.76 0-70.17-31.42-70.17-70.17l0 0c0-1.14 0-2.22 0-3.3L0 0l0 612 612 0 0-612z" fill="#654ff0"/>
<!-- Letters -->
<path d="m142.16 329.81 40.56 0 27.69 147.47 0.5 0 33.28-147.47 37.94 0 30.06 149.28 0.59 0 31.56-149.28 39.78 0-51.69 216.69-40.25 0-29.81-147.47-0.78 0-31.91 147.47-41 0zm287.69 0 63.94 0 63.5 216.69-41.84 0-13.81-48.22-72.84 0-10.66 48.22-40.75 0zm24.34 53.41-17.69 79.5 55.06 0-20.31-79.5z" fill="#fff"/>
</svg>

Before

Width:  |  Height:  |  Size: 709 B

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 642 150" style="enable-background:new 0 0 642 150;" xml:space="preserve">
<style type="text/css">
.st0{fill:#616161;}
.st1{fill:#F57C00;}
</style>
<g>
<polygon class="st0" points="51.1,113 43.2,110.6 42.8,15 24.6,23.7 23.6,105 17.1,103 16.6,27.5 1,35 1,115 72.7,149.5 72.7,0.5
51.9,10.5 "/>
<g>
<path class="st1" d="M81.7,3.3v66.8l92.5,1.6V31.8L81.7,3.3z M102.4,36.3l56.7,10.9v6.4l-56.7-7V36.3z"/>
<path class="st1" d="M81.7,79.9v66.9l92.5-28.6V78.3L81.7,79.9z M102.4,102.9l56.7-6.6v6.4l-56.7,10.5V102.9z"/>
</g>
<g>
<path class="st0" d="M362.1,58.9c-2.7-2.6-7.1-3.9-13.3-3.9H333c-6.2,0-10.6,1.3-13.2,3.9c-2.7,2.6-4,6.3-4,11.2v30.5
c0,4.9,1.3,8.6,4,11.2c2.7,2.6,7.1,3.9,13.2,3.9h15.9c6.2,0,10.6-1.3,13.3-3.9c2.7-2.6,4-6.3,4-11.2V70.1
C366.1,65.2,364.8,61.5,362.1,58.9z M345.8,98.6c0,1.8-1,2.7-3,2.7H339c-2,0-3-0.9-3-2.7V72c0-1.8,1-2.7,3-2.7h3.7
c2,0,3,0.9,3,2.7V98.6z"/>
<path class="st0" d="M408.7,54.4h1.8v18h-6.9c-5.1,0-7.7,2.8-7.7,8.3v35h-20.7V55h20.3v9.4c0.7-3.1,2.1-5.5,4.4-7.3
C402.2,55.3,405.2,54.4,408.7,54.4z"/>
<path class="st0" d="M437.4,115.7h-20.7V34.3h20.7v48.3L448.8,55h21.4l-13,29.9l13,30.8h-21.5l-11.3-28.3V115.7z"/>
<path class="st0" d="M506.5,55h3.3c10.8,0,16.2,5,16.2,15.1v30.5c0,10-5.4,15.1-16.2,15.1h-3.3c-6.2,0-9.9-2.6-11.1-7.8v7.8h-20.3
V34.3h20.7v27.2C497.4,57.2,500.9,55,506.5,55z M505.3,97.8V72.9c0-1.8-1-2.7-3-2.7h-3.1c-2.2,0-3.3,1.2-3.3,3.7v23
c0,2.4,1.1,3.7,3.3,3.7h3.1C504.3,100.5,505.3,99.6,505.3,97.8z"/>
<path class="st0" d="M551.8,55h15.8c6.2,0,10.6,1.3,13.3,3.9c2.7,2.6,4,6.3,4,11.2v30.5c0,4.9-1.3,8.6-4,11.2
c-2.7,2.6-7.1,3.9-13.3,3.9h-15.8c-6.2,0-10.6-1.3-13.2-3.9c-2.7-2.6-4-6.3-4-11.2V70.1c0-4.9,1.3-8.6,4-11.2
C541.3,56.3,545.7,55,551.8,55z M564.6,98.6V72c0-1.8-1-2.7-3-2.7h-3.6c-2,0-3,0.9-3,2.7v26.6c0,1.8,1,2.7,3,2.7h3.6
C563.6,101.3,564.6,100.4,564.6,98.6z"/>
<path class="st0" d="M625.9,84.3l15.1,31.4h-20.9l-6.6-18l-6,18h-20.2l13.9-31L586.7,55h21.6l5.2,16.9l5.2-16.9h20.5L625.9,84.3z"
/>
<path class="st0" d="M306,100.6v-63h-20.7v60.2c0,1.8-1,2.7-3,2.7H278c-2,0-3-0.9-3-2.7V37.6h-20.1v60.2c0,1.8-1,2.7-3,2.7h-4.3
c-2,0-3-0.9-3-2.7V37.6h-20.7v63c0,4.9,1.3,8.6,4,11.2c2.7,2.6,7.1,3.9,13.3,3.9h3.4h9.2c4.2,0,8.3-1.4,11.2-4.6
c2.9,3.2,7,4.6,11.2,4.6h9.2h3.4c6.2,0,10.6-1.3,13.3-3.9C304.7,109.2,306,105.5,306,100.6z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 196 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 609 KiB

View file

@ -1 +0,0 @@
<svg aria-hidden="true" focusable="false" data-prefix="fal" data-icon="plug" class="svg-inline--fa fa-plug fa-w-12" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path fill="#2e5e82" d="M352,128H304V16a16,16,0,0,0-32,0V128H112V16a16,16,0,0,0-32,0V128H32A32,32,0,0,0,0,160v32a32,32,0,0,0,32,32v32c0,82.75,63.37,150.22,144,158.38V512h32V414.38c80.63-8.16,144-75.63,144-158.38V224a32,32,0,0,0,32-32V160A32,32,0,0,0,352,128ZM320,256a128,128,0,0,1-256,0V224H320Zm32-64H32V160H352Z"></path></svg>

Before

Width:  |  Height:  |  Size: 512 B

View file

@ -1 +0,0 @@
<svg aria-hidden="true" focusable="false" data-prefix="far" data-icon="plug" class="svg-inline--fa fa-plug fa-w-12" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path fill="#2e5e82" d="M312,24a24,24,0,0,0-48,0v88h48ZM120,24a24,24,0,0,0-48,0v88h48ZM368,144H16A16,16,0,0,0,0,160v16a16,16,0,0,0,16,16H32v64c0,80.14,59.11,145.92,136,157.58V512h48V413.58C292.89,401.92,352,336.14,352,256V192h16a16,16,0,0,0,16-16V160A16,16,0,0,0,368,144ZM304,256a112,112,0,0,1-224,0V192H304Z"></path></svg>

Before

Width:  |  Height:  |  Size: 507 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 949 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 360 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 74 KiB

View file

@ -1 +0,0 @@
<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="rocket" class="svg-inline--fa fa-rocket fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M505.12019,19.09375c-1.18945-5.53125-6.65819-11-12.207-12.1875C460.716,0,435.507,0,410.40747,0,307.17523,0,245.26909,55.20312,199.05238,128H94.83772c-16.34763.01562-35.55658,11.875-42.88664,26.48438L2.51562,253.29688A28.4,28.4,0,0,0,0,264a24.00867,24.00867,0,0,0,24.00582,24H127.81618l-22.47457,22.46875c-11.36521,11.36133-12.99607,32.25781,0,45.25L156.24582,406.625c11.15623,11.1875,32.15619,13.15625,45.27726,0l22.47457-22.46875V488a24.00867,24.00867,0,0,0,24.00581,24,28.55934,28.55934,0,0,0,10.707-2.51562l98.72834-49.39063c14.62888-7.29687,26.50776-26.5,26.50776-42.85937V312.79688c72.59753-46.3125,128.03493-108.40626,128.03493-211.09376C512.07526,76.5,512.07526,51.29688,505.12019,19.09375ZM384.04033,168A40,40,0,1,1,424.05,128,40.02322,40.02322,0,0,1,384.04033,168Z"></path></svg>

Before

Width:  |  Height:  |  Size: 1,005 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 117 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 247 KiB

Some files were not shown because too many files have changed in this diff Show more