This commit is contained in:
Chris W 2023-12-08 14:30:53 -07:00
parent 908ae90d50
commit d5da4b58a7
208 changed files with 1394 additions and 9233 deletions

View File

@ -1,6 +0,0 @@
.husky
.vscode
node_modules
public
dist
.yarn

View File

@ -1,23 +0,0 @@
module.exports = {
env: {
node: true,
es2022: true,
browser: true,
},
extends: ["eslint:recommended", "plugin:astro/recommended"],
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
},
overrides: [
{
files: ["*.astro"],
parser: "astro-eslint-parser",
parserOptions: {
parser: "@typescript-eslint/parser",
extraFileExtensions: [".astro"],
},
rules: {},
},
],
};

View File

@ -1 +1 @@
{"public":{"assets":{}}}
{"public":{"images":{}}}

View File

@ -0,0 +1 @@
{}

View File

@ -1 +1 @@
{"taxonomy":{"tags":["crystal","databases","devops","postgres","programming","redis","servers"],"categories":[]}}
{}

18
.gitignore vendored
View File

@ -1,6 +1,7 @@
# build output
dist/
.output/
# generated types
.astro/
# dependencies
node_modules/
@ -18,18 +19,3 @@ pnpm-debug.log*
# macOS-specific files
.DS_Store
# ignore .astro directory
.astro
# ignore Jampack cache files
.jampack/
# yarn
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
.pnp.*

View File

@ -1,4 +0,0 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
npx lint-staged

View File

@ -1,4 +0,0 @@
{
"MD033": false,
"MD013": false
}

2
.npmrc
View File

@ -1,2 +0,0 @@
# Expose Astro dependencies for `pnpm` users
shamefully-hoist=true

View File

@ -1,13 +0,0 @@
# Ignore everything
/*
# Except these files & folders
!/src
!/public
!/.github
!tsconfig.json
!astro.config.mjs
!package.json
!.prettierrc
!.eslintrc.js
!README.md

View File

@ -1,11 +0,0 @@
{
"arrowParens": "avoid",
"semi": true,
"tabWidth": 2,
"printWidth": 80,
"singleQuote": false,
"jsxSingleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true,
"endOfLine": "lf"
}

View File

@ -1,4 +1,4 @@
{
"recommendations": ["astro-build.astro-vscode"],
"recommendations": ["astro-build.astro-vscode", "unifiedjs.vscode-mdx"],
"unwantedRecommendations": []
}

View File

@ -1,4 +1,2 @@
{
"[markdown]": {
}
}

21
LICENSE
View File

@ -1,21 +0,0 @@
MIT License
Copyright (c) 2023 Sat Naing
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.

68
README.md Normal file
View File

@ -0,0 +1,68 @@
# Astro Starter Kit: Blog
```sh
npm create astro@latest -- --template blog
```
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/blog)
[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/blog)
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/blog/devcontainer.json)
> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!
![blog](https://github.com/withastro/astro/assets/2244813/ff10799f-a816-4703-b967-c78997e8323d)
Features:
- ✅ Minimal styling (make it your own!)
- ✅ 100/100 Lighthouse performance
- ✅ SEO-friendly with canonical URLs and OpenGraph data
- ✅ Sitemap support
- ✅ RSS Feed support
- ✅ Markdown & MDX support
## 🚀 Project Structure
Inside of your Astro project, you'll see the following folders and files:
```text
├── public/
├── src/
│   ├── components/
│   ├── content/
│   ├── layouts/
│   └── pages/
├── astro.config.mjs
├── README.md
├── package.json
└── tsconfig.json
```
Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
The `src/content/` directory contains "collections" of related Markdown and MDX documents. Use `getCollection()` to retrieve posts from `src/content/blog/`, and type-check your frontmatter using an optional schema. See [Astro's Content Collections docs](https://docs.astro.build/en/guides/content-collections/) to learn more.
Any static assets, like images, can be placed in the `public/` directory.
## 🧞 Commands
All commands are run from the root of the project, from a terminal:
| Command | Action |
| :------------------------ | :----------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:4321` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
| `npm run astro -- --help` | Get help using the Astro CLI |
## 👀 Want to learn more?
Check out [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
## Credit
This theme is based off of the lovely [Bear Blog](https://github.com/HermanMartinus/bearblog/).

View File

@ -1,43 +1,22 @@
import { defineConfig } from "astro/config";
import tailwind from "@astrojs/tailwind";
import react from "@astrojs/react";
import remarkToc from "remark-toc";
import remarkCollapse from "remark-collapse";
import sitemap from "@astrojs/sitemap";
import { defineConfig } from 'astro/config';
import icon from "astro-icon";
import mdx from '@astrojs/mdx';
import sitemap from '@astrojs/sitemap';
import tailwind from "@astrojs/tailwind";
// https://astro.build/config
export default defineConfig({
site: "https://watzon.tech/", // replace this with your deployed domain
site: 'https://watzon.tech',
integrations: [
mdx(),
tailwind({
config: {
applyBaseStyles: false,
},
}),
react(),
sitemap(),
],
markdown: {
remarkPlugins: [
remarkToc,
[
remarkCollapse,
{
test: "Table of contents",
},
],
],
shikiConfig: {
theme: "one-dark-pro",
wrap: true,
},
extendDefaultPlugins: true,
},
vite: {
optimizeDeps: {
exclude: ["@resvg/resvg-js"],
},
},
});
tailwind(),
icon({
include: {
mdi: ['*'],
ic: ['*'],
}
}),
]
});

BIN
bun.lockb Executable file

Binary file not shown.

View File

@ -1,92 +1,58 @@
{
"$schema": "https://frontmatter.codes/frontmatter.schema.json",
"frontMatter.framework.id": "astro",
"frontMatter.preview.host": "http://localhost:4321",
"frontMatter.content.publicFolder": "public",
"frontMatter.content.pageFolders": [
{
"title": "blog",
"path": "[[workspace]]/src/content/posts"
}
],
"frontMatter.taxonomy.contentTypes": [
{
"name": "blog",
"previewPath": "'blog'",
"name": "default",
"pageBundle": false,
"clearEmpty": true,
"previewPath": "'posts'",
"filePrefix": null,
"clearEmpty": true,
"fields": [
{
"name": "author",
"type": "string",
"single": true,
"required": true
},
{
"name": "date",
"type": "datetime",
"default": "{{now}}",
"required": true
},
{
"title": "Title",
"name": "title",
"type": "string",
"single": true,
"required": true
"single": true
},
{
"name": "postSlug",
"title": "Description",
"name": "description",
"type": "string"
},
{
"title": "Author",
"name": "author",
"type": "string",
"single": true,
"required": false
"single": true
},
{
"name": "featured",
"type": "boolean",
"required": true,
"default": true
"title": "Publishing date",
"name": "pubDate",
"type": "datetime",
"default": "{{now}}",
"isPublishDate": true
},
{
"name": "draft",
"type": "boolean",
"required": true,
"default": true
"title": "Hero image",
"name": "heroImage",
"type": "image",
"isPreviewImage": true
},
{
"title": "tags",
"title": "Tags",
"name": "tags",
"type": "tags"
},
{
"title": "OG image",
"name": "ogImage",
"type": "image"
},
{
"name": "description",
"type": "string",
"single": true,
"required": true
},
{
"name": "canonicalURL",
"type": "string",
"single": true,
"required": false
}
]
}
],
"frontMatter.content.supportedFileTypes": [
"md",
"markdown",
"mdx"
],
"frontMatter.framework.id": "astro",
"frontMatter.preview.host": "http://localhost:4321",
"frontMatter.content.publicFolder": {
"path": "src/assets",
"relative": true
},
"frontMatter.content.pageFolders": [
{
"path": "[[workspace]]/src/pages",
"title": "pages"
},
{
"title": "blog",
"path": "[[workspace]]/src/content/blog"
}
]
}

View File

@ -1,3 +0,0 @@
[[redirects]]
from = "/.well-known/webfinger"
to = "/.well-known/webfinger.json"

View File

@ -1,60 +1,29 @@
{
"name": "watzon-tech",
"version": "2.3.0",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro check --watch & astro dev",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build && jampack ./dist",
"build": "astro check && astro build",
"preview": "astro preview",
"sync": "astro sync",
"astro": "astro",
"format:check": "prettier --plugin-search-dir=. --check .",
"format": "prettier --plugin-search-dir=. --write .",
"cz": "cz",
"prepare": "husky install",
"lint": "eslint ."
"astro": "astro"
},
"dependencies": {
"@astrojs/mdx": "^1.1.2",
"@astrojs/rss": "^2.4.1",
"@resvg/resvg-js": "^2.4.1",
"astro": "^2.4.5",
"fuse.js": "^6.6.2",
"github-slugger": "^2.0.0",
"remark-collapse": "^0.1.2",
"remark-toc": "^8.0.1",
"satori": "^0.8.1",
"tailwindcss": "^3.3.2"
"@astrojs/check": "^0.3.1",
"@astrojs/mdx": "^2.0.0",
"@astrojs/rss": "^4.0.1",
"@astrojs/sitemap": "^3.0.3",
"@astrojs/tailwind": "^5.0.3",
"astro": "^4.0.3",
"tailwindcss": "^3.0.24",
"typescript": "^5.3.3"
},
"devDependencies": {
"@astrojs/react": "^2.1.3",
"@astrojs/sitemap": "^1.3.1",
"@astrojs/tailwind": "^3.1.2",
"@divriots/jampack": "^0.11.2",
"@tailwindcss/typography": "^0.5.9",
"@types/github-slugger": "^1.3.0",
"@types/react": "^18.2.6",
"@typescript-eslint/parser": "^5.59.5",
"astro-eslint-parser": "^0.14.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.40.0",
"eslint-plugin-astro": "^0.27.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,mdx,json}": [
"prettier --plugin-search-dir=. --write"
]
"@iconify-json/arcticons": "^1.1.85",
"@iconify-json/ic": "^1.1.16",
"@iconify-json/mdi": "^1.1.60",
"@iconify/icons-arcticons": "^1.2.77",
"astro-icon": "next"
}
}
}

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 48 KiB

View File

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="3174.3913873364954" height="537.1545240249022" viewBox="0 0 3174.3913873364954 537.1545240249022">
<g transform="scale(8.719569366824782) translate(10, 10)">
<defs id="SvgjsDefs3566"/><g id="SvgjsG3567" featureKey="symbolFeature-0" transform="matrix(0.6934338212013245,0,0,0.6934338212013245,8.266375432300744e-8,-12.4845057771533)" fill="#000"><path xmlns="http://www.w3.org/2000/svg" d="M28.416,76.572c-1.024,0-2.048-0.393-2.832-1.172L1.172,50.844C0.42,50.092,0,49.068,0,48c0-1.068,0.42-2.088,1.176-2.848 l24.412-24.548c1.56-1.568,4.092-1.576,5.656,0.004c1.56,1.58,1.56,4.12-0.004,5.696L9.664,48l21.58,21.704 c1.56,1.571,1.56,4.116,0,5.688C30.464,76.18,29.432,76.572,28.416,76.572L28.416,76.572z"/><path xmlns="http://www.w3.org/2000/svg" d="M67.588,76.572c-1.023,0-2.052-0.393-2.828-1.18c-1.568-1.572-1.568-4.117,0-5.697L86.344,48L64.76,26.304 c-1.568-1.58-1.568-4.12,0-5.696c1.568-1.58,4.088-1.576,5.656-0.008l24.412,24.552C95.58,45.9,96,46.928,96,48 c0,1.068-0.42,2.088-1.172,2.844L70.416,75.393C69.641,76.18,68.611,76.572,67.588,76.572L67.588,76.572z"/><path xmlns="http://www.w3.org/2000/svg" d="M38.348,78c-0.476,0-0.964-0.084-1.436-0.264c-2.06-0.805-3.092-3.133-2.296-5.213l19.868-51.947 c0.795-2.076,3.107-3.096,5.168-2.304c2.06,0.796,3.088,3.124,2.296,5.204L42.072,75.424C41.476,77.016,39.952,78,38.348,78z"/></g><g id="SvgjsG3568" featureKey="nameLeftFeature-0" transform="matrix(1.7611019611358643,0,0,1.7611019611358643,86.43644666437456,-1.2633956466278047)" fill="#000"><path d="M9.42 8.1 l-3.32 11.9 l-2.04 0 l-3.74 -14.36 l2.1 0 l2.68 11.68 l0.04 0 l3.22 -11.68 l2.12 0 l3.22 11.68 l0.04 0 l2.68 -11.68 l2.14 0 l-3.78 14.36 l-2.04 0 l-3.28 -11.9 l-0.04 0 z M28.419999999999998 15.82 l-5.76 0 l-1.5 4.18 l-2 0 l5.4 -14.36 l2.2 0 l5.2 14.36 l-2.12 0 z M23.259999999999998 14.1 l4.46 0 l-2.12 -6.32 l-0.04 0 z M32.5 7.359999999999999 l0 -1.72 l11.66 0 l0 1.72 l-4.86 0 l0 12.64 l-1.94 0 l0 -12.64 l-4.86 0 z M56.199999999999996 18.28 l0 1.72 l-11.3 0 l0 -1.62 l8.8 -11.02 l-8.14 0 l0 -1.72 l10.64 0 l0 1.68 l-8.84 10.96 l8.84 0 z M69.44 12.82 c0 -3.38 -1.88 -5.84 -5 -5.84 s-5 2.46 -5 5.84 s1.88 5.84 5 5.84 s5 -2.46 5 -5.84 z M71.44 12.82 c0 3.1 -1.64 7.56 -7 7.56 s-7 -4.46 -7 -7.56 s1.64 -7.56 7 -7.56 s7 4.46 7 7.56 z M83.25999999999999 17.240000000000002 l0 -11.6 l1.88 0 l0 14.36 l-2.18 0 l-7.3 -11.6 l-0.04 0 l0 11.6 l-1.88 0 l0 -14.36 l2.3 0 l7.18 11.6 l0.04 0 z"/></g><g id="SvgjsG3569" featureKey="nameRightFeature-0" transform="matrix(1.9300446510314941,0,0,1.9300446510314941,243.52836032985113,-4.201760521171311)" fill="#000"><path d="M1.6269 20.067797 c-0.45763 0 -0.86441 -0.37288 -0.86441 -0.84746 c0 -0.45763 0.40678 -0.86441 0.86441 -0.86441 s0.84746 0.40678 0.84746 0.86441 c0 0.47458 -0.38983 0.84746 -0.84746 0.84746 z M14.32228813559322 6.441000000000001 c0.15254 0 0.22051 0.067797 0.22051 0.22034 l0 0.84746 c0 0.13559 -0.067797 0.22034 -0.22034 0.22034 l-4.3729 0 l0 12.034 c0 0.15254 -0.067797 0.23712 -0.20339 0.23712 l-0.67797 0 c-0.30508 0 -0.45763 -0.18644 -0.45763 -0.47441 l0 -11.797 l-4.3729 0 c-0.15254 0 -0.23729 -0.084746 -0.23729 -0.22034 l0 -0.83051 c0 -0.16949 0.084746 -0.23729 0.23729 -0.23729 l10.085 0 z M25.27098474576271 7.728999999999999 l-7.3556 0.00049656 l0 4.9659 l4.5424 0 c0.15254 0 0.23729 0.067797 0.23729 0.23729 l0 0.81339 c0 0.15254 -0.084746 0.22034 -0.23729 0.22034 l-4.5424 0 l0 4.7458 l7.3559 0 c0.15254 0 0.23712 0.084746 0.23712 0.23712 l0 0.81356 c0 0.16949 -0.067797 0.23712 -0.23729 0.23712 l-8.4746 0 c-0.15254 0 -0.22034 -0.08458 -0.22034 -0.22017 l0 -13.119 c0 -0.15254 0.084746 -0.22034 0.22034 -0.22034 l8.4746 0 c0.15254 0 0.23712 0.084746 0.23712 0.22034 l0 0.84746 c0 0.13559 -0.067797 0.22034 -0.23729 0.22034 z M38.72879661016949 17.729 c0.11864 0.08458 0.084746 0.22017 -0.067797 0.37271 c-1.2544 1.2542 -2.8814 2.0168 -4.8983 2.0168 c-3.8136 0 -6.9322 -3.0168 -6.9322 -6.8812 c0 -3.8475 3.1186 -6.9153 6.9322 -6.9153 c1.9322 0 3.661 0.74576 4.9322 2.0169 c0.15254 0.15254 0.16949 0.27119 0.067797 0.35593 l-0.71186 0.59322 c-0.11864 0.10169 -0.22034 0.10169 -0.33898 -0.016949 c-0.71186 -0.74559 -2.1186 -1.6608 -3.8475 -1.6608 c-3.678 0 -5.7119 2.9831 -5.7119 5.6271 c0 2.678 2.0339 5.5932 5.7119 5.5932 c1.7288 0 3.0508 -0.88136 3.7966 -1.6271 c0.13559 -0.13559 0.23729 -0.16949 0.35593 -0.067797 z M51.84716949152542 6.441000000000001 c0.15254 0 0.23729 0.067963 0.23729 0.22051 l0 13.119 c0 0.13559 -0.067797 0.22017 -0.20339 0.22017 l-0.6778 0 c-0.30508 0 -0.44068 -0.18644 -0.44068 -0.45763 l0 -5.5593 l-8.5593 0 l0 5.7797 c0 0.15254 -0.067797 0.23712 -0.22034 0.23712 l-0.86441 0 c-0.16966 0 -0.23746 -0.08458 -0.23746 -0.23712 l0 -13.102 c0 -0.15254 0.067797 -0.22034 0.22034 -0.22034 l0.88136 0 c0.13559 0 0.22034 0.067797 0.22034 0.22034 l0 6 l8.5593 0 l0 -6 c0 -0.15254 0.067797 -0.22034 0.20339 -0.22034 l0.88136 0 z"/></g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

View File

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="3174.3913873364954"
height="537.1545240249022" viewBox="0 0 3174.3913873364954 537.1545240249022">
<g transform="scale(8.719569366824782) translate(10, 10)">
<defs id="SvgjsDefs3566"></defs><g id="SvgjsG3567" featureKey="symbolFeature-0" transform="matrix(0.6934338212013245,0,0,0.6934338212013245,8.266375432300744e-8,-12.4845057771533)" fill="#3fbac2"><path xmlns="http://www.w3.org/2000/svg" d="M28.416,76.572c-1.024,0-2.048-0.393-2.832-1.172L1.172,50.844C0.42,50.092,0,49.068,0,48c0-1.068,0.42-2.088,1.176-2.848 l24.412-24.548c1.56-1.568,4.092-1.576,5.656,0.004c1.56,1.58,1.56,4.12-0.004,5.696L9.664,48l21.58,21.704 c1.56,1.571,1.56,4.116,0,5.688C30.464,76.18,29.432,76.572,28.416,76.572L28.416,76.572z"></path><path xmlns="http://www.w3.org/2000/svg" d="M67.588,76.572c-1.023,0-2.052-0.393-2.828-1.18c-1.568-1.572-1.568-4.117,0-5.697L86.344,48L64.76,26.304 c-1.568-1.58-1.568-4.12,0-5.696c1.568-1.58,4.088-1.576,5.656-0.008l24.412,24.552C95.58,45.9,96,46.928,96,48 c0,1.068-0.42,2.088-1.172,2.844L70.416,75.393C69.641,76.18,68.611,76.572,67.588,76.572L67.588,76.572z"></path><path xmlns="http://www.w3.org/2000/svg" d="M38.348,78c-0.476,0-0.964-0.084-1.436-0.264c-2.06-0.805-3.092-3.133-2.296-5.213l19.868-51.947 c0.795-2.076,3.107-3.096,5.168-2.304c2.06,0.796,3.088,3.124,2.296,5.204L42.072,75.424C41.476,77.016,39.952,78,38.348,78z"></path></g><g id="SvgjsG3568" featureKey="nameLeftFeature-0" transform="matrix(1.7611019611358643,0,0,1.7611019611358643,86.43644666437456,-1.2633956466278047)" fill="#f5f5f5"><path d="M9.42 8.1 l-3.32 11.9 l-2.04 0 l-3.74 -14.36 l2.1 0 l2.68 11.68 l0.04 0 l3.22 -11.68 l2.12 0 l3.22 11.68 l0.04 0 l2.68 -11.68 l2.14 0 l-3.78 14.36 l-2.04 0 l-3.28 -11.9 l-0.04 0 z M28.419999999999998 15.82 l-5.76 0 l-1.5 4.18 l-2 0 l5.4 -14.36 l2.2 0 l5.2 14.36 l-2.12 0 z M23.259999999999998 14.1 l4.46 0 l-2.12 -6.32 l-0.04 0 z M32.5 7.359999999999999 l0 -1.72 l11.66 0 l0 1.72 l-4.86 0 l0 12.64 l-1.94 0 l0 -12.64 l-4.86 0 z M56.199999999999996 18.28 l0 1.72 l-11.3 0 l0 -1.62 l8.8 -11.02 l-8.14 0 l0 -1.72 l10.64 0 l0 1.68 l-8.84 10.96 l8.84 0 z M69.44 12.82 c0 -3.38 -1.88 -5.84 -5 -5.84 s-5 2.46 -5 5.84 s1.88 5.84 5 5.84 s5 -2.46 5 -5.84 z M71.44 12.82 c0 3.1 -1.64 7.56 -7 7.56 s-7 -4.46 -7 -7.56 s1.64 -7.56 7 -7.56 s7 4.46 7 7.56 z M83.25999999999999 17.240000000000002 l0 -11.6 l1.88 0 l0 14.36 l-2.18 0 l-7.3 -11.6 l-0.04 0 l0 11.6 l-1.88 0 l0 -14.36 l2.3 0 l7.18 11.6 l0.04 0 z"></path></g><g id="SvgjsG3569" featureKey="nameRightFeature-0" transform="matrix(1.9300446510314941,0,0,1.9300446510314941,243.52836032985113,-4.201760521171311)" fill="#f5f5f5"><path d="M1.6269 20.067797 c-0.45763 0 -0.86441 -0.37288 -0.86441 -0.84746 c0 -0.45763 0.40678 -0.86441 0.86441 -0.86441 s0.84746 0.40678 0.84746 0.86441 c0 0.47458 -0.38983 0.84746 -0.84746 0.84746 z M14.32228813559322 6.441000000000001 c0.15254 0 0.22051 0.067797 0.22051 0.22034 l0 0.84746 c0 0.13559 -0.067797 0.22034 -0.22034 0.22034 l-4.3729 0 l0 12.034 c0 0.15254 -0.067797 0.23712 -0.20339 0.23712 l-0.67797 0 c-0.30508 0 -0.45763 -0.18644 -0.45763 -0.47441 l0 -11.797 l-4.3729 0 c-0.15254 0 -0.23729 -0.084746 -0.23729 -0.22034 l0 -0.83051 c0 -0.16949 0.084746 -0.23729 0.23729 -0.23729 l10.085 0 z M25.27098474576271 7.728999999999999 l-7.3556 0.00049656 l0 4.9659 l4.5424 0 c0.15254 0 0.23729 0.067797 0.23729 0.23729 l0 0.81339 c0 0.15254 -0.084746 0.22034 -0.23729 0.22034 l-4.5424 0 l0 4.7458 l7.3559 0 c0.15254 0 0.23712 0.084746 0.23712 0.23712 l0 0.81356 c0 0.16949 -0.067797 0.23712 -0.23729 0.23712 l-8.4746 0 c-0.15254 0 -0.22034 -0.08458 -0.22034 -0.22017 l0 -13.119 c0 -0.15254 0.084746 -0.22034 0.22034 -0.22034 l8.4746 0 c0.15254 0 0.23712 0.084746 0.23712 0.22034 l0 0.84746 c0 0.13559 -0.067797 0.22034 -0.23729 0.22034 z M38.72879661016949 17.729 c0.11864 0.08458 0.084746 0.22017 -0.067797 0.37271 c-1.2544 1.2542 -2.8814 2.0168 -4.8983 2.0168 c-3.8136 0 -6.9322 -3.0168 -6.9322 -6.8812 c0 -3.8475 3.1186 -6.9153 6.9322 -6.9153 c1.9322 0 3.661 0.74576 4.9322 2.0169 c0.15254 0.15254 0.16949 0.27119 0.067797 0.35593 l-0.71186 0.59322 c-0.11864 0.10169 -0.22034 0.10169 -0.33898 -0.016949 c-0.71186 -0.74559 -2.1186 -1.6608 -3.8475 -1.6608 c-3.678 0 -5.7119 2.9831 -5.7119 5.6271 c0 2.678 2.0339 5.5932 5.7119 5.5932 c1.7288 0 3.0508 -0.88136 3.7966 -1.6271 c0.13559 -0.13559 0.23729 -0.16949 0.35593 -0.067797 z M51.84716949152542 6.441000000000001 c0.15254 0 0.23729 0.067963 0.23729 0.22051 l0 13.119 c0 0.13559 -0.067797 0.22017 -0.20339 0.22017 l-0.6778 0 c-0.30508 0 -0.44068 -0.18644 -0.44068 -0.45763 l0 -5.5593 l-8.5593 0 l0 5.7797 c0 0.15254 -0.067797 0.23712 -0.22034 0.23712 l-0.86441 0 c-0.16966 0 -0.23746 -0.08458 -0.23746 -0.23712 l0 -13.102 c0 -0.15254 0.067797 -0.22034 0.22034 -0.22034 l0.88136 0 c0.13559 0 0.22034 0.067797 0.22034 0.22034 l0 6 l8.5593 0 l0 -6 c0 -0.15254 0.067797 -0.22034 0.20339 -0.22034 l0.88136 0 z"></path></g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.9 KiB

0
public/favicon.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 949 B

After

Width:  |  Height:  |  Size: 949 B

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

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