1
0
Fork 0

Set up for Eleventy and add resources.

Squashed commit of the following:

commit 58781e4e2c883b7a26d371250ed1f3aa88dcc7bf
Author: Mari <mstaib.git@reya.zone>
Date:   Sun Jan 12 17:36:30 2020 +0900

    Set up the basic eleventy templates.

commit a5adff6749345e2a08895b6d6efe976fd6712d60
Author: Mari <mstaib.git@reya.zone>
Date:   Sun Jan 12 16:55:50 2020 +0900

    Install markdown-it and set up .eleventy.js

commit fc6f413e80fc77048af1d9f391d5ad1623b171c2
Author: Mari <mstaib.git@reya.zone>
Date:   Sun Jan 12 16:23:35 2020 +0900

    Add .nvmrc and netlify.toml for deployment

commit fe7ee3d07ea9606e17bf66503aa8758e5669e732
Author: Mari <mstaib.git@reya.zone>
Date:   Sun Jan 12 16:14:24 2020 +0900

    Add .eleventyignore which skips README.md.

commit 4614029ef4529537cc13a64dd8cb854fdc57a6a6
Author: Mari <mstaib.git@reya.zone>
Date:   Sun Jan 12 16:07:03 2020 +0900

    Add npx and cross-env, scripts, more links.

commit 21e7127a5f7bd0245aa46db333c5d1ee6b988476
Author: Mari <mstaib.git@reya.zone>
Date:   Sun Jan 12 15:55:32 2020 +0900

    Add Netlify status badge to README.md.

commit 5a4dc75f8ec8fdbd555aa00c34cf01451eb76517
Author: Mari <mstaib.git@reya.zone>
Date:   Sun Jan 12 15:50:50 2020 +0900

    Install Eleventy.

commit 1680633c111ffd8e8d3348f81995d2e141eae2b4
Author: Mari <mstaib.git@reya.zone>
Date:   Sun Jan 12 15:46:52 2020 +0900

    Add initial tiny package.json.

commit d33a877725172cbd7f5ff0f7d6bfc69293bc7079
Author: Mari <mstaib.git@reya.zone>
Date:   Sun Jan 12 15:42:21 2020 +0900

    Add a basic node-stuff .gitignore.

commit c38c934f7f2a2a20740d7652024ec6472462772e
Author: Mari <mstaib.git@reya.zone>
Date:   Sun Jan 12 15:38:39 2020 +0900

    Add something like a real README.md.

commit 586a2d680aa68983b66e1d5b7eb372f0df31a690
Author: Mari <mstaib.git@reya.zone>
Date:   Sun Jan 12 15:25:02 2020 +0900

    Add commissioned art and favicon package
experiences
Mari 4 years ago
parent 4fd2bd93dd
commit 0a652f237f
  1. 63
      .eleventy.js
  2. 2
      .eleventyignore
  3. 2
      .gitignore
  4. 1
      .nvmrc
  5. 9
      README.md
  6. 10
      _data/metadata.json
  7. 0
      _includes/assets/css/main.css
  8. 0
      _includes/assets/js/main.js
  9. 5
      _includes/components/card.njk
  10. 9
      _includes/components/favicon.njk
  11. 21
      _includes/components/head.njk
  12. 5
      _includes/components/twitter-card.njk
  13. 9
      _includes/layouts/base.njk
  14. 23
      favicon-README.md
  15. BIN
      favicon_package_v0.16.zip
  16. 18
      netlify.toml
  17. 8209
      package-lock.json
  18. 32
      package.json
  19. BIN
      static/favicon/android-chrome-192x192.png
  20. BIN
      static/favicon/android-chrome-512x512.png
  21. BIN
      static/favicon/apple-touch-icon.png
  22. 9
      static/favicon/browserconfig.xml
  23. BIN
      static/favicon/favicon-16x16.png
  24. BIN
      static/favicon/favicon-32x32.png
  25. BIN
      static/favicon/favicon.ico
  26. BIN
      static/favicon/mstile-150x150.png
  27. 113
      static/favicon/safari-pinned-tab.svg
  28. 19
      static/favicon/site.webmanifest
  29. BIN
      static/img/edupatilla-mari-image.png
  30. BIN
      static/img/snaximation-mari-image.png

@ -0,0 +1,63 @@
const HTMLMinifier = require("html-minifier");
const CleanCSS = require("clean-css");
const UglifyES = require("uglify-es");
const MarkdownIt = require("markdown-it");
const markdownIt = MarkdownIt({
html: true,
breaks: true,
linkify: true
});
module.exports = function(eleventyConfig) {
eleventyConfig.setLibrary("md", markdownIt);
eleventyConfig.addPassthroughCopy({
"static/favicon": ".",
"static/img": "img"
});
eleventyConfig.addTransform("minifyHTML", function(html, path) {
if(path && path.endsWith(".html")) {
return HTMLMinifier.minify(html, {
collapseWhitespace: true,
removeComments: true,
useShortDoctype: true,
});
}
return html;
});
eleventyConfig.addFilter("minifyCSS", function(code) {
return new CleanCSS({}).minify(code).styles;
});
eleventyConfig.addFilter("minifyJS", function(code) {
let minified = UglifyES.minify(code);
if(minified.error) {
console.log("UglifyES failed with an error: ", minified.error);
throw new Error("Javascript minification failure");
}
return minified.code;
});
return {
templateFormats: [
"html",
"md",
"njk"
],
pathPrefix: "",
markdownTemplateEngine: "njk",
htmlTemplateEngine: "njk",
dataTemplateEngine: "njk",
passthroughFileCopy: true,
dir: {
input: ".",
includes: "_includes",
data: "_data",
output: "_site"
}
};
}

@ -0,0 +1,2 @@
README.md
favicon-README.md

2
.gitignore vendored

@ -0,0 +1,2 @@
node_modules/
_site/

@ -0,0 +1 @@
10

@ -1,2 +1,7 @@
# reyasume
Netlify backing repository for resume.reya.zone.
[![Netlify Status](https://api.netlify.com/api/v1/badges/fe5cac30-89f3-4848-b870-4b7aa62c56c4/deploy-status)](https://app.netlify.com/sites/reyasume/deploys)
# Marissa Staib's resume
This site is built with [Eleventy](https://11ty.dev) and hosted through [Netlify](https://netlify.com).
Its actual publication location is [resume.reya.zone](https://resume.reya.zone). Go ahead and head on over there to check it out, then you can come back here and take a look at the making of the sauce!

@ -0,0 +1,10 @@
{
"title": "Marissa Staib | Resume",
"description": "Skills, education, and experience for Marissa Staib in software."
"url": "https://resume.reya.zone",
"cardimage_path": "/img/edupatilla-mari-image.png",
"contact": {
"email": "mari.soft@reya.zone",
"twitter": "GossipyReya"
}
}

@ -0,0 +1,5 @@
<meta property="og:title" content="{{ metadata.title }}" />
<meta property="og:type" content="website" />
<meta property="og:url" content="{{ page.url }}" />
<meta property="og:description" content="{{ metadata.description }}" />
<meta property="og:image" content="{{ metadata.url }}{{ metadata.cardimage_path }}" />

@ -0,0 +1,9 @@
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="/favicon.ico">
<meta name="msapplication-TileColor" content="#ffc40d">
<meta name="msapplication-config" content="/browserconfig.xml">
<meta name="theme-color" content="#ffebac">

@ -0,0 +1,21 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ metadata.title }}</title>
<meta name="description" content="{{ metadata.description }}" />
{% include "components/favicon.njk" %}
{% include "components/card.njk" %}
{% include "components/twitter-card.njk" %}
{% set css %}
{% include "assets/css/main.css" %}
{% endset %}
<style>{{ css | cssmin | safe }}</style>
{% set js %}
{% include "assets/js/main.js" %}
{% endset %}
<script>{{ js | jsmin | safe }}</script>
</head>

@ -0,0 +1,5 @@
<meta property="twitter:card" content="summary" />
<meta property="twitter:site" content="@{{ metadata.contact.twitter }}" />
<meta property="twitter:title" content="{{ metadata.title }}" />
<meta property="twitter:description" content="{{ metadata.description }}" />
<meta property="twitter:image" content="{{ metadata.url }}{{ metadata.cardimage_path }}" />

@ -0,0 +1,9 @@
<!doctype html>
<html lang="en">
{% include "components/head.njk" %}
<body>
<main>
{{ layoutContent | safe }}
</main>
</body>
</html>

@ -0,0 +1,23 @@
# Your Favicon Package
This package was generated with [RealFaviconGenerator](https://realfavicongenerator.net/) [v0.16](https://realfavicongenerator.net/change_log#v0.16)
## Install instructions
To install this package:
Extract this package in <code>&lt;web site&gt;/</code>. If your site is <code>http://www.example.com</code>, you should be able to access a file named <code>http://www.example.com/favicon.ico</code>.
Insert the following code in the `head` section of your pages:
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="/favicon.ico">
<meta name="msapplication-TileColor" content="#ffc40d">
<meta name="msapplication-config" content="/browserconfig.xml">
<meta name="theme-color" content="#ffebac">
*Optional* - Check your favicon with the [favicon checker](https://realfavicongenerator.net/favicon_checker)

Binary file not shown.

@ -0,0 +1,18 @@
[build]
base = "."
publish = "_site"
command = "npm run build"
# These things are also done as part of the Eleventy build process, but this shouldn't be a problem.
[build.processing]
skip_processing = false
[build.processing.css]
bundle = true
minify = true
[build.processing.js]
bundle = true
minify = true
[build.processing.images]
compress = true
[build.processing.html]
pretty_urls = true

8209
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -0,0 +1,32 @@
{
"name": "reyasume",
"version": "0.0.0",
"description": "Mari's Eleventy resume site on Netlify",
"scripts": {
"clean": "rm -rf _site",
"build": "npx eleventy",
"watch": "npx eleventy --watch",
"serve": "npx eleventy --serve",
"debug": "npx cross-env DEBUG=* npx eleventy",
"debug-serve": "npx cross-env DEBUG=* npx eleventy --serve"
},
"repository": {
"type": "git",
"url": "https://github.com/programmablereya/reyasume"
},
"author": {
"name": "Mari",
"email": "mstaib.git@reya.zone",
"url": "https://reya.zone/"
},
"homepage": "https://resume.reya.zone/",
"dependencies": {
"@11ty/eleventy": "^0.10.0",
"clean-css": "^4.2.1",
"cross-env": "^6.0.3",
"html-minifier": "^4.0.0",
"markdown-it": "^10.0.0",
"npx": "^10.2.0",
"uglify-es": "^3.3.9"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#ffc40d</TileColor>
</tile>
</msapplication>
</browserconfig>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

@ -0,0 +1,113 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="600.000000pt" height="600.000000pt" viewBox="0 0 600.000000 600.000000"
preserveAspectRatio="xMidYMid meet">
<metadata>
Created by potrace 1.11, written by Peter Selinger 2001-2013
</metadata>
<g transform="translate(0.000000,600.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M3150 5764 c-14 -2 -58 -9 -98 -15 -41 -6 -105 -21 -143 -34 l-69
-24 -103 20 c-90 17 -115 18 -210 9 -213 -21 -337 -54 -489 -130 -197 -99
-473 -336 -583 -501 -28 -41 -78 -113 -112 -160 -35 -48 -63 -90 -63 -93 0 -3
-21 -55 -46 -114 -147 -343 -262 -664 -295 -827 -36 -174 -13 -338 66 -469
l36 -60 -54 -55 c-154 -159 -252 -399 -264 -646 -5 -102 -3 -132 16 -205 40
-159 141 -336 265 -466 25 -26 45 -48 43 -49 -1 0 -27 -17 -57 -37 -65 -44
-133 -63 -198 -55 -70 8 -102 51 -127 170 -15 71 -55 -25 -55 -132 0 -94 26
-176 70 -222 20 -22 46 -39 57 -39 20 0 19 -4 -13 -77 -34 -80 -72 -220 -96
-353 -9 -51 -13 -168 -13 -370 0 -310 10 -408 67 -717 l20 -113 30 0 c30 0 30
0 24 43 -21 125 -54 362 -52 365 22 22 696 36 718 14 8 -8 1 -43 -30 -139 -34
-105 -82 -269 -82 -280 0 -2 11 -3 24 -3 17 0 25 8 33 33 5 17 14 31 19 30 5
-1 47 -16 94 -33 l85 -30 1648 0 1647 0 0 65 c0 62 14 221 25 291 5 28 10 32
58 42 177 39 271 47 602 47 182 0 358 -3 393 -7 l62 -8 0 332 0 331 -222 -6
c-286 -7 -665 -52 -713 -83 -12 -8 -24 -12 -27 -8 -16 15 98 292 181 441 l56
101 86 27 c123 37 320 72 492 87 l147 12 0 407 0 408 -47 7 c-46 7 -213 0
-269 -12 -28 -5 -30 -3 -42 41 -7 25 -28 80 -48 121 -20 42 -40 105 -46 140
l-11 65 -25 -43 c-31 -54 -79 -105 -114 -124 -39 -21 -124 -18 -173 6 -50 24
-113 77 -153 128 -28 35 -31 48 -46 187 -23 223 -35 406 -46 750 -13 392 -25
547 -52 660 -12 50 -24 92 -27 95 -3 3 -32 58 -63 123 -145 294 -300 496 -543
705 -327 280 -657 424 -1005 437 -63 2 -126 2 -140 -1z m-663 -445 c97 -30
244 -108 344 -184 111 -83 271 -227 330 -296 l47 -54 -87 22 c-158 41 -391 29
-543 -28 l-58 -21 0 -59 c0 -33 2 -59 5 -59 3 0 28 11 56 25 87 45 224 68 399
69 145 1 160 -1 240 -28 49 -16 92 -37 102 -50 9 -11 30 -37 48 -56 40 -44 42
-43 -170 -65 -169 -17 -553 -65 -692 -86 -94 -14 -91 1 -48 -220 16 -85 30
-159 30 -165 0 -7 -21 -6 -67 4 -48 10 -105 12 -195 9 l-127 -5 -45 136 c-50
149 -124 346 -142 376 -10 17 -24 20 -101 20 -83 1 -94 -1 -165 -37 -43 -21
-97 -58 -123 -83 l-46 -46 7 83 c13 157 84 306 215 451 78 86 257 241 269 233
4 -3 32 9 62 25 68 37 120 56 228 84 111 29 145 30 227 5z m-605 -824 c25 -17
41 -38 51 -69 17 -50 15 -52 -51 -61 -43 -6 -341 -65 -357 -71 -12 -5 -15 3
-15 39 0 40 5 49 44 85 102 94 251 129 328 77z m2606 -91 c33 -16 82 -53 118
-89 196 -199 202 -496 16 -781 -32 -49 -39 -68 -40 -116 -9 -273 -129 -438
-318 -438 l-36 0 5 43 c32 238 1 627 -49 627 -11 0 -14 -5 -10 -16 29 -76 35
-443 11 -641 -31 -245 -94 -496 -152 -603 -102 -184 -235 -343 -397 -474 -265
-213 -476 -325 -748 -398 -116 -31 -328 -30 -478 1 -205 43 -403 126 -480 200
-51 51 -241 363 -344 569 -113 225 -234 541 -261 683 -30 162 -15 378 37 527
17 48 25 61 37 56 134 -55 352 -53 499 5 28 11 52 19 52 16 0 -3 -14 -37 -32
-77 -22 -50 -29 -73 -20 -76 7 -2 12 -8 12 -14 0 -10 45 -63 128 -150 19 -21
39 -35 44 -32 5 3 29 -4 53 -15 52 -24 114 -27 154 -7 38 20 96 86 124 143 37
74 61 153 49 165 -6 6 -78 -2 -213 -26 -236 -40 -309 -50 -309 -42 0 4 14 34
31 67 43 86 107 283 122 374 8 54 17 80 29 86 16 8 17 7 8 -15 -8 -23 -5 -36
11 -36 4 0 13 16 19 35 15 46 27 45 22 -1 -3 -27 -1 -35 9 -32 7 2 16 15 19
29 3 13 14 26 24 27 15 3 17 0 12 -14 -19 -48 2 -57 28 -13 l19 31 66 -6 c36
-4 88 -13 116 -20 l50 -12 15 -90 c17 -102 34 -138 86 -184 92 -81 285 -117
455 -84 255 48 436 136 517 249 44 62 54 105 53 228 l-2 112 51 -82 c108 -176
219 -258 339 -251 l60 3 3 -34 c2 -19 8 -36 15 -38 9 -3 12 68 15 285 3 273 4
291 23 312 66 73 220 89 333 34z m-1043 -36 c3 -7 8 -63 13 -123 l7 -111 -69
48 c-134 93 -335 130 -494 93 -75 -18 -129 -44 -200 -97 -58 -43 -57 -44 -66
49 -6 70 -9 67 84 78 30 4 64 9 75 11 11 3 1 -6 -22 -19 -65 -39 -92 -61 -93
-75 0 -19 16 -13 87 33 36 23 61 45 58 53 -2 6 3 12 13 12 9 1 121 14 247 29
260 33 353 37 360 19z m-320 -180 c83 -13 152 -42 232 -97 103 -72 106 -76 94
-114 -36 -107 -216 -221 -371 -234 -130 -11 -302 41 -367 110 -27 29 -32 45
-44 125 l-13 93 30 24 c56 46 146 87 218 100 72 13 95 12 221 -7z m-1216 -43
c33 -16 53 -52 24 -40 -10 4 -39 10 -64 12 -72 8 -139 -19 -201 -80 -76 -74
-88 -92 -95 -142 -8 -59 13 -60 45 -4 65 113 145 158 257 144 79 -10 93 -26
105 -114 13 -92 6 -129 -30 -173 -47 -56 -130 -82 -265 -83 -117 0 -168 13
-186 47 -7 13 -6 24 6 40 18 26 20 120 5 247 -5 47 -8 87 -5 89 7 7 316 70
348 71 15 1 41 -6 56 -14z m-455 -160 c4 -25 11 -45 17 -45 5 0 9 -16 9 -36 0
-28 -4 -35 -17 -32 -17 3 -30 43 -46 141 -5 34 -4 36 12 27 12 -6 21 -26 25
-55z m31 -165 c8 -26 -4 -48 -16 -29 -12 19 -11 49 0 49 5 0 12 -9 16 -20z
m-470 -1197 c1 -119 5 -166 23 -237 26 -104 93 -250 145 -318 36 -47 37 -58 6
-58 -24 0 -122 149 -154 235 -35 92 -58 251 -50 340 5 59 25 185 29 185 0 0 1
-66 1 -147z m3405 -77 l115 -49 53 -78 c46 -68 59 -80 107 -100 30 -13 55 -26
55 -30 0 -30 -56 -216 -95 -314 -150 -380 -422 -808 -685 -1079 -169 -174
-317 -274 -500 -338 -91 -32 -101 -33 -240 -32 -131 0 -152 3 -220 27 -157 57
-302 171 -412 324 -32 44 -58 82 -58 85 0 2 39 -15 88 -39 179 -89 365 -97
602 -26 191 57 357 159 521 323 222 221 349 465 449 861 35 138 80 391 80 449
0 41 9 73 19 68 3 -2 58 -25 121 -52z m-3435 -1071 c126 -8 343 -32 413 -46
l52 -10 0 -289 0 -289 -182 0 c-99 0 -273 -5 -385 -12 -112 -6 -207 -8 -211
-5 -9 10 16 350 33 433 8 40 24 109 36 154 l22 80 61 -5 c33 -3 106 -8 161
-11z m4105 -188 c0 -2 -18 -52 -41 -111 -43 -116 -129 -405 -129 -436 0 -27
-24 -37 -110 -44 -107 -10 -545 -75 -572 -85 -13 -4 -57 -11 -98 -15 l-75 -6
62 57 c63 60 180 212 298 390 l67 102 57 11 c77 16 470 116 501 129 26 10 40
13 40 8z m-3364 -102 c60 -14 195 -38 301 -53 l192 -27 27 -75 c57 -158 170
-356 287 -499 10 -11 -4 -12 -83 -7 -368 27 -712 103 -890 197 l-65 34 -3 257
-2 257 63 -30 c35 -16 113 -41 173 -54z m2714 -60 c0 -7 -132 -204 -186 -278
-24 -32 -89 -105 -146 -162 l-103 -104 -170 -16 c-93 -8 -190 -17 -214 -19
l-43 -4 71 39 c154 83 331 238 483 424 l65 79 114 22 c63 12 117 22 122 23 4
0 7 -1 7 -4z m-2054 -35 c25 0 36 -6 46 -24 150 -281 280 -425 473 -525 l60
-31 -150 0 c-213 0 -214 0 -273 74 -108 134 -203 301 -261 460 l-22 59 47 -7
c26 -3 62 -6 80 -6z"/>
<path d="M4343 4303 c-18 -10 -46 -30 -62 -46 l-31 -27 0 -173 c1 -229 3 -238
78 -316 62 -64 102 -130 102 -166 0 -10 -25 -95 -56 -188 -67 -205 -75 -256
-45 -286 11 -11 28 -21 36 -21 26 0 101 77 133 138 41 76 55 152 56 287 1 108
2 111 38 175 73 131 98 227 80 308 -6 23 -6 44 -2 47 5 3 2 26 -7 51 -31 90
-195 234 -268 234 -11 0 -35 -8 -52 -17z"/>
<path d="M3077 3311 c-74 -19 -93 -32 -83 -56 5 -13 10 -14 27 -5 72 39 -18
-70 -108 -130 -208 -139 -502 -233 -816 -261 -163 -14 -251 -5 -276 28 -11 13
-22 29 -25 36 -3 9 -7 8 -15 -3 -6 -9 -7 -18 -1 -24 6 -6 10 -18 10 -28 0 -10
9 -23 20 -30 11 -7 20 -17 20 -21 0 -5 25 -34 56 -65 64 -66 196 -236 311
-403 74 -108 81 -121 85 -175 16 -225 250 -398 513 -380 140 9 145 11 225 48
147 68 265 178 325 302 97 200 75 573 -54 897 -23 58 -62 136 -86 174 -33 52
-40 71 -29 73 7 2 14 12 14 23 0 24 -22 24 -113 0z m63 -73 c39 -54 41 -113 5
-156 -54 -64 -292 -184 -495 -250 -217 -71 -428 -101 -503 -73 -23 9 -43 38
-33 48 2 3 40 9 83 14 263 33 542 130 729 254 83 55 159 137 170 182 4 12 8
23 10 23 2 0 17 -19 34 -42z m225 -875 c-16 -120 -65 -235 -131 -312 -21 -25
-73 -70 -115 -101 -260 -193 -632 -136 -762 115 -35 69 -40 140 -14 192 20 38
87 97 142 125 l40 20 -22 -23 c-54 -59 -84 -181 -63 -258 15 -57 81 -123 145
-144 140 -48 342 2 520 128 82 58 186 171 227 244 18 34 34 61 36 61 2 0 0
-21 -3 -47z"/>
<path d="M5313 3 c48 -2 125 -2 170 0 45 1 6 3 -88 3 -93 0 -130 -2 -82 -3z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.7 KiB

@ -0,0 +1,19 @@
{
"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": "#ffebac",
"background_color": "#ffebac",
"display": "standalone"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Loading…
Cancel
Save