This commit is contained in:
@@ -1,3 +1,26 @@
|
||||
<template>
|
||||
<h2 class="title"> Backup & restore </h2>
|
||||
<section class="docker-web-section">
|
||||
<Terminal :terminal-content="terminalContent" />
|
||||
<div class="flex flex-col items-center md:w-3/4 lg:w-1/2 h-20 relative rounded-b-xl transition-all">
|
||||
<div class="flex transition-all justify-center duration-1000" :class="startApps">
|
||||
<SvgGitea :class="penpotClass" class="app--backup" />
|
||||
<SvgDrone :class="giteaClass" class="app--backup hidden md:block" />
|
||||
<SvgPlausible :class="plausibleClass" class="app--backup" />
|
||||
</div>
|
||||
<div :class="endApps">
|
||||
<div class="app" :class="folderClass">
|
||||
<SvgFolder class="text-yellow-400" />
|
||||
<div class="-mt-7 text-sm text-center"> tar.gz </div>
|
||||
</div>
|
||||
<SvgStorj class="hidden" :class="storjClass" />
|
||||
</div>
|
||||
<div class="flex mt-10 w-14 absolute" :class="progressBarClass"> <span
|
||||
class="h-2 w-full absolute bg-black rounded-full opacity-10" /> <span
|
||||
class="h-2 absolute rounded-full bg-green-400 transition-all duration-1000" :class="progressClass" /> </div>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
data: () => ({
|
||||
@@ -134,3 +157,21 @@ export default {
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
code {
|
||||
display: block;
|
||||
/* pour gérer le scroll */
|
||||
overflow-x: auto;
|
||||
/* scroll horizontal si nécessaire */
|
||||
scrollbar-width: none;
|
||||
/* Firefox */
|
||||
-ms-overflow-style: none;
|
||||
/* IE et Edge */
|
||||
}
|
||||
|
||||
code::-webkit-scrollbar {
|
||||
display: none;
|
||||
/* Chrome, Safari */
|
||||
}
|
||||
</style>
|
@@ -16,23 +16,23 @@ export default {
|
||||
opacity: '0'
|
||||
}
|
||||
}),
|
||||
created () {
|
||||
created() {
|
||||
this.nextcloudClass = this.jellyfinClass = []
|
||||
},
|
||||
beforeMount () {
|
||||
beforeMount() {
|
||||
window.addEventListener('scroll', () => {
|
||||
if (!this.isPageScrolled) { this.demonstration() }
|
||||
this.isPageScrolled = true
|
||||
})
|
||||
},
|
||||
beforeUnmount () {
|
||||
beforeUnmount() {
|
||||
window.removeEventListener('scroll', () => {
|
||||
if (!this.isPageScrolled) { this.demonstration() }
|
||||
this.isPageScrolled = true
|
||||
})
|
||||
},
|
||||
methods: {
|
||||
demonstration () {
|
||||
demonstration() {
|
||||
const upClass = [
|
||||
'w-20',
|
||||
'h-20',
|
||||
@@ -61,7 +61,7 @@ export default {
|
||||
'm-2'
|
||||
]
|
||||
|
||||
function delay (time) {
|
||||
function delay(time) {
|
||||
return new Promise(resolve => setTimeout(resolve, time))
|
||||
}
|
||||
|
||||
@@ -84,7 +84,7 @@ export default {
|
||||
if (i === 1) this.terminalContent += 'Creating nextcloud ... done\n'
|
||||
if (i === 2) this.terminalContent += '[√] https://nextcloud.domain.com\n'
|
||||
if (i === 3) this.nextcloudClass = upClass
|
||||
if (i === 4) this.pointer = {left: '47%', top: '53%', opacity: '100'}
|
||||
if (i === 4) this.pointer = { left: '47%', top: '53%', opacity: '100' }
|
||||
// open
|
||||
if (i === 5) this.nextcloudClass.push('animate-openApp')
|
||||
if (i === 5) this.pointerClass = ['']
|
||||
@@ -95,7 +95,7 @@ export default {
|
||||
if (i === 6) this.subdomainClass = ['animate-click']
|
||||
// close
|
||||
if (i === 7) this.terminalContent = ''
|
||||
if (i === 8) this.pointer = {left: '10%', top: '3%'}
|
||||
if (i === 8) this.pointer = { left: '10%', top: '3%' }
|
||||
if (i === 9) this.backbuttonClass = ['']
|
||||
if (i === 9) this.backbuttonClass = ['animate-click']
|
||||
if (i === 10) this.nextcloudClass = closeClass
|
||||
@@ -115,7 +115,7 @@ export default {
|
||||
if (i === 12) this.terminalContent += 'Creating jellyfin ... done\n'
|
||||
if (i === 13) this.terminalContent += '[√] https://jellyfin.domain.com\n'
|
||||
if (i === 14) this.jellyfinClass = closeClass
|
||||
if (i === 16) this.pointer = {left: '47%', top: '53%', opacity: '100'}
|
||||
if (i === 16) this.pointer = { left: '47%', top: '53%', opacity: '100' }
|
||||
// open
|
||||
if (i === 16) this.jellyfinClass.push('animate-openApp')
|
||||
if (i === 16) this.pointerClass = ['animate-click']
|
||||
@@ -123,16 +123,16 @@ export default {
|
||||
if (i === 17) this.jellyfinClass = openClass
|
||||
if (i === 17) this.subDomain = 'jellyfin.'
|
||||
if (i === 17) this.subdomainClass = ['']
|
||||
if (i === 17) this.pointer = {left: '10%', top: '3%'}
|
||||
if (i === 17) this.pointer = { left: '10%', top: '3%' }
|
||||
if (i === 17) this.subdomainClass = ['animate-click']
|
||||
// close
|
||||
if (i === 19) this.backbuttonClass = ['']
|
||||
if (i === 19) this.backbuttonClass = ['animate-click']
|
||||
if (i === 19) this.pointer = {opacity: '0'}
|
||||
if (i === 19) this.pointer = { opacity: '0' }
|
||||
if (i === 20) this.jellyfinClass = this.nextcloudClass = closeClass
|
||||
if (i === 20) this.subDomain = ''
|
||||
if (i === 20) this.terminalContent = ''
|
||||
if (i === 21) this.pointer = {top: '100%', left: '0'}
|
||||
if (i === 21) this.pointer = { top: '100%', left: '0' }
|
||||
|
||||
// nextcloud down
|
||||
if (i === 23) {
|
||||
@@ -167,33 +167,18 @@ export default {
|
||||
<section class="docker-web-section">
|
||||
<Terminal :terminal-content="terminalContent" />
|
||||
<div
|
||||
class="bg-slate-400 flex flex-col items-center relative rounded-2xl w-full m-0 md:min-w-fit max-w-2xl md:-ml-8 md:z-0 overflow-hidden"
|
||||
>
|
||||
<div class="absolute block bg-black bg-opacity-10 rounded-full h-10 w-10 transition-all duration-700 ease-out" :class="pointerClass" :style="{left: pointer.left, top: pointer.top, opacity: pointer.opacity}"></div>
|
||||
<div
|
||||
class="bg-white flex items-center rounded-2xl pr-4 pl-2 py-1 m-4 w-4/5"
|
||||
>
|
||||
<SvgBackbutton
|
||||
class="mr-3 p-1 bg-slate-300 rounded-full"
|
||||
:class="backbuttonClass"
|
||||
/>
|
||||
class="bg-slate-400 flex flex-col items-center relative rounded-2xl w-full m-0 md:min-w-fit max-w-2xl md:-ml-8 md:z-0 overflow-hidden">
|
||||
<div class="absolute block bg-black bg-opacity-10 rounded-full h-10 w-10 transition-all duration-700 ease-out"
|
||||
:class="pointerClass" :style="{ left: pointer.left, top: pointer.top, opacity: pointer.opacity }"></div>
|
||||
<div class="bg-white flex items-center rounded-2xl pr-4 pl-2 py-1 m-4 w-4/5">
|
||||
<SvgBackbutton class="mr-3 p-1 bg-slate-300 rounded-full" :class="backbuttonClass" />
|
||||
<span class="text-gray-400"> https:// </span>
|
||||
<span class="text-indigo-700 font-bold" :class="subdomainClass">
|
||||
{{ subDomain }} </span>domain.com
|
||||
</div>
|
||||
<div
|
||||
class="bg-white w-full h-full flex rounded-b-xl justify-center items-center h-96 max-h-96"
|
||||
>
|
||||
<SvgNextcloud
|
||||
class="app-demo"
|
||||
:class="nextcloudClass"
|
||||
title="nextcloud.domain.com"
|
||||
/>
|
||||
<SvgJellyfin
|
||||
class="app-demo"
|
||||
:class="jellyfinClass"
|
||||
title="jellyfin.domain.com"
|
||||
/>
|
||||
<div class="bg-white w-full flex rounded-b-xl justify-center items-center h-96 max-h-96">
|
||||
<SvgNextcloud class="app-demo" :class="nextcloudClass" title="nextcloud.domain.com" />
|
||||
<SvgJellyfin class="app-demo" :class="jellyfinClass" title="jellyfin.domain.com" />
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
@@ -2,7 +2,7 @@
|
||||
const isClicked = ref(false)
|
||||
const copyToClipBoard = () => {
|
||||
navigator.clipboard
|
||||
.writeText('curl -sL get.docker-web.com | sudo bash')
|
||||
.writeText('curl -sL dockerweb.valere.dev | sudo bash')
|
||||
.then(() => {
|
||||
isClicked.value = true
|
||||
setTimeout(() => {
|
||||
@@ -14,22 +14,14 @@ const copyToClipBoard = () => {
|
||||
|
||||
<template>
|
||||
<section class="py-4 sm:flex justify-center items-center">
|
||||
<a
|
||||
href="https://github.com/docker-web/docker-web"
|
||||
target="_blank"
|
||||
class="py-4 px-6 h-14 leading-6 flex justify-center bg-indigo-600 text-white text-lg capitalize font-semibold mb-4 sm:mb-0 rounded-xl shadow-md hover:bg-indigo-500 focus:outline-none focus:ring-4 hover:ring-indigo-200 focus:ring-indigo-300 focus:ring-opacity-100 transition-all"
|
||||
>
|
||||
<a href="https://github.com/docker-web/docker-web" target="_blank"
|
||||
class="py-4 px-6 h-14 leading-6 flex justify-center bg-indigo-600 text-white text-lg capitalize font-semibold mb-4 sm:mb-0 rounded-xl shadow-md hover:bg-indigo-500 focus:outline-none focus:ring-4 hover:ring-indigo-200 focus:ring-indigo-300 focus:ring-opacity-100 transition-all">
|
||||
get started
|
||||
</a>
|
||||
<div
|
||||
class="font-mono bg-neutral-900 text-neutral-50 rounded-xl flex justify-between items-center pl-3 pr-4 py-4 sm:ml-4 border border-transparent text-base shadow-primary-700 relative"
|
||||
>
|
||||
<span class="select-all"> curl -L get.docker-web.com | sudo bash </span>
|
||||
<SvgClipboard
|
||||
class="ml-3 cursor-pointer"
|
||||
:class="{ 'animate-ping': isClicked }"
|
||||
@click="copyToClipBoard"
|
||||
/>
|
||||
class="font-mono bg-neutral-900 text-neutral-50 rounded-xl flex justify-between items-center pl-3 pr-4 py-4 sm:ml-4 border border-transparent text-base shadow-primary-700 relative">
|
||||
<span class="select-all"> curl -L dockerweb.valere.dev | sudo bash </span>
|
||||
<SvgClipboard class="ml-3 cursor-pointer" :class="{ 'animate-ping': isClicked }" @click="copyToClipBoard" />
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<section>
|
||||
<div class="flex justify-center -ml-24 animate-slide">
|
||||
<div class="flex justify-center -ml-24 animate-slide h-52">
|
||||
<div class="py-4 mr-14 animate-fadeout opacity-0">
|
||||
<div class="bg-gray-400 h-px w-16 my-16 block" />
|
||||
<div class="bg-gray-400 h-px w-16 my-16 translate-x-3 block" />
|
||||
|
17
app/components/scroll-down-button.vue
Normal file
17
app/components/scroll-down-button.vue
Normal file
@@ -0,0 +1,17 @@
|
||||
<template>
|
||||
<section class="py-4 sm:flex justify-center items-center">
|
||||
<button @click="scrollDown"
|
||||
class="p-6 h-14 leading-3 flex justify-center bg-green-500 text-white text-lg capitalize font-semibold mb-4 sm:mb-0 rounded-full shadow-md hover:bg-green-400 focus:outline-none focus:ring-4 hover:ring-indigo-200 focus:ring-indigo-300 focus:ring-opacity-100 transition-all">
|
||||
↓
|
||||
</button>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
function scrollDown() {
|
||||
window.scrollBy({
|
||||
top: window.innerHeight, // une hauteur d’écran
|
||||
behavior: 'smooth' // animation fluide
|
||||
})
|
||||
}
|
||||
</script>
|
@@ -1,31 +1,21 @@
|
||||
<template>
|
||||
<svg width="111.83958mm" height="111.83958mm" viewBox="0 0 111.83957 111.83957" version="1.1" id="svg1"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)" sodipodi:docname="logo.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-49.080209,-92.580211)">
|
||||
<g id="g2" transform="matrix(5.5108247,0,0,5.5108247,118.69148,125.59682)" style="display:inline;fill:#ffffff">
|
||||
<g style="display:inline;fill:#0062f8;fill-opacity:0.446602"
|
||||
transform="matrix(0.61412638,0,0,0.61412638,-46.767414,1.3479387)" id="g1236-3-3-2">
|
||||
<circle
|
||||
style="display:inline;fill:#0062f8;fill-opacity:0.446602;stroke:none;stroke-width:302.362;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:161.197;stroke-opacity:1"
|
||||
id="path1180-2-6-6-9" cx="72.107216" cy="4.5725055" r="9.6730785" />
|
||||
<circle
|
||||
style="display:inline;fill:#0062f8;fill-opacity:0.446602;stroke:none;stroke-width:428.643;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:161.197;stroke-opacity:1"
|
||||
id="path1180-9-7-7-1" cx="72.107216" cy="4.5725055" r="13.713011" />
|
||||
<circle
|
||||
style="display:inline;fill:#0062f8;fill-opacity:0.446602;stroke:none;stroke-width:516.481;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:161.197;stroke-opacity:1"
|
||||
id="path1180-1-5-5-27" cx="72.107216" cy="4.5725055" r="16.523087" />
|
||||
</g>
|
||||
<path inkscape:connector-curvature="0" style="display:inline;fill:#ffffff;stroke-width:0.433462"
|
||||
id="path881-7-5-5-0"
|
||||
d="m 3.9199448,3.7220977 c -0.0282,-0.02295 -0.29172,-0.221932 -0.84699,-0.221932 -0.13871,0 -0.28565,0.013 -0.4378,0.0377 -0.10749,-0.738187 -0.71564,-1.097959 -0.74382,-1.113996 l -0.14954,-0.08669 -0.0984,0.142176 c -0.12298,0.190471 -0.21255,0.400537 -0.26484,0.621149 -0.0997,0.421326 -0.039,0.816643 0.17468,1.155612 -0.25834,0.143476 -0.67013003,0.181186 -0.75596003,0.182051 H -6.0544552 c -0.17908,7.09e-4 -0.32415,0.145584 -0.3251,0.324667 0.12299,0.569402 0.12059,0.553034 0.31955,1.075789 0.23623,0.619849 0.58734,1.076285 1.04421,1.356736 0.51191,0.31426 1.34546,0.494146 2.28694,0.494146 0.4404,0 0.87993,-0.03991 1.27004,-0.115302 0.61422,-0.118332 1.17252,-0.321625 1.65843,-0.602942 0.42468,-0.246154 0.80673,-0.559405 1.13134,-0.927608 0.54269,-0.615519 0.68368,-0.724924 1.08704,-1.222306 0.0325,0.0015 0.0641,0.002 0.0958,0.002 0.59428,0 0.96012,-0.238404 1.16168,-0.437793 0.2189,-0.216731 0.29692,-0.432597 0.30516,-0.456436 l 0.0421,-0.124838 z"
|
||||
sodipodi:nodetypes="cscccccccccccsccccscccc" />
|
||||
<svg class="MuiBox-root css-15p9n5u" fill="#ffffff" data-darkreader-inline-fill="" version="1.1"
|
||||
viewBox="0 0 195 194.57" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<g transform="translate(16.659 8.322)">
|
||||
<g transform="matrix(5.8877 0 0 5.8877 -343.49 62.039)" fill="#0062f8" fill-opacity=".4466">
|
||||
<circle cx="72.107" cy="4.5725" r="9.6731" />
|
||||
<circle cx="72.107" cy="4.5725" r="13.713" />
|
||||
<circle cx="72.107" cy="4.5725" r="16.523" />
|
||||
</g>
|
||||
<g fill="#fff">
|
||||
<path
|
||||
style="font-weight:bold;font-size:3.06667px;font-family:Comfortaa;-inkscape-font-specification:'Comfortaa Bold';letter-spacing:0px;display:inline;fill:#ffffff;stroke-width:1.51181"
|
||||
d="m -6.3933452,1.1512817 h 0.55254 l 0.38633,1.624676 0.38333,-1.624676 h 0.55553 l 0.38334,1.624676 0.38633,-1.624676 h 0.54804 l -0.52708,2.235614 h -0.66484 l -0.4058,-1.699546 -0.4013,1.699546 h -0.66485 z m 5.11361,1.392579 v 0.152735 h -1.25332 q 0.0195,0.188672 0.13626,0.283008 0.1168,0.09434 0.32643,0.09434 0.16921,0 0.3459,-0.04941 0.17819,-0.05091 0.36537,-0.152735 v 0.413282 q -0.19017,0.07187 -0.38034,0.107813 -0.19017,0.03743 -0.38034,0.03743 -0.45521,0 -0.70827,-0.2306 -0.25156,-0.232096 -0.25156,-0.64987 0,-0.410287 0.24707,-0.645378 0.24857,-0.235092 0.68281,-0.235092 0.39532,0 0.6319,0.238086 0.23809,0.238087 0.23809,0.636394 z m -0.55104,-0.17819 q 0,-0.152735 -0.0898,-0.245573 -0.0883,-0.09434 -0.23209,-0.09434 -0.15573,0 -0.25306,0.08835 -0.0973,0.08685 -0.12129,0.251563 z m 1.84928,0.675326 q 0.17221,0 0.26205,-0.125781 0.0913,-0.125782 0.0913,-0.365365 0,-0.239584 -0.0913,-0.365365 -0.0898,-0.125782 -0.26205,-0.125782 -0.1722,0 -0.26503,0.127279 -0.0914,0.125782 -0.0914,0.363868 0,0.238086 0.0914,0.365365 0.0928,0.125781 0.26503,0.125781 z m -0.35638,-1.085613 q 0.11081,-0.146745 0.24558,-0.215625 0.13476,-0.07038 0.30996,-0.07038 0.30996,0 0.50910997,0.24707 0.19916,0.245574 0.19916,0.6334 0,0.387826 -0.19916,0.634896 -0.19914997,0.245573 -0.50910997,0.245573 -0.1752,0 -0.30996,-0.06888 -0.13477,-0.07038 -0.24558,-0.217122 v 0.242578 h -0.53606 v -2.32995 h 0.53606 z"
|
||||
id="text2-6-9" aria-label="Web" />
|
||||
d="m81.055 55.167a26.753 26.753 0 0 0-26.758 26.758 26.753 26.753 0 0 0 0.35578 4.3254h52.804a26.753 26.753 0 0 0 0.35578-4.3254 26.753 26.753 0 0 0-26.758-26.758z"
|
||||
stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="2.3" stroke-width="355.55"
|
||||
style="paint-order:fill markers stroke" />
|
||||
<path
|
||||
d="m142.46 84.801c-0.27036-0.22002-2.7968-2.1277-8.1202-2.1277-1.3298 0-2.7386 0.12463-4.1972 0.36143-1.0305-7.0771-6.8609-10.526-7.1311-10.68l-1.4337-0.8311-0.94337 1.3631c-1.179 1.8261-2.0377 3.84-2.539 5.955-0.95583 4.0393-0.3739 7.8292 1.6747 11.079-2.4767 1.3755-6.4246 1.737-7.2475 1.7453h-65.688c-1.7169 0.0068-3.1077 1.3957-3.1168 3.1126 1.1791 5.4589 1.1561 5.302 3.0636 10.314 2.2648 5.9426 5.6309 10.318 10.011 13.007 4.9077 3.0128 12.899 4.7374 21.925 4.7374 4.2222 0 8.436-0.38262 12.176-1.1054 5.8886-1.1345 11.241-3.0834 15.9-5.7805 4.0714-2.3599 7.7342-5.3631 10.846-8.8931 5.2028-5.901 6.5545-6.9499 10.422-11.718 0.31158 0.01438 0.61453 0.01917 0.91844 0.01917 5.6974 0 9.2048-2.2856 11.137-4.1972 2.0986-2.0778 2.8466-4.1473 2.9256-4.3759l0.40362-1.1968z"
|
||||
stroke-width="4.1556" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
@@ -2,19 +2,16 @@
|
||||
<div class="mx-6">
|
||||
<header class="h-screen flex flex-col justify-center">
|
||||
<nav class="fixed right-0 top-0 p-2 z-50">
|
||||
<a
|
||||
title="Go to docker-web GitHub repo"
|
||||
href="https://github.com/docker-web/docker-web"
|
||||
target="_blank"
|
||||
>
|
||||
<a title="Go to docker-web GitHub repo" href="https://github.com/docker-web/docker-web" target="_blank">
|
||||
<SvgGithub class="bg-white rounded-full shadow-lg hover:scale-105" />
|
||||
</a>
|
||||
</nav>
|
||||
<HeroTitle client:visible />
|
||||
<HeroButtons client:visible />
|
||||
<ScrollDownButton client:visible />
|
||||
</header>
|
||||
<main class="-mt-20">
|
||||
<Demo />
|
||||
<main class="">
|
||||
<Demo class="mt-20" />
|
||||
<Disclaimer />
|
||||
<!-- <Create /> -->
|
||||
<BackupRestore />
|
||||
@@ -27,15 +24,19 @@
|
||||
.docker-web-section {
|
||||
@apply flex flex-col md:flex-row items-center justify-center mb-28;
|
||||
}
|
||||
|
||||
.title {
|
||||
@apply text-3xl text-center mb-10 uppercase text-transparent bg-clip-text bg-gradient-to-r from-violet-900 to-blue-500;
|
||||
@apply text-3xl text-center mb-10 uppercase text-transparent bg-clip-text bg-gradient-to-r from-violet-900 to-blue-500;
|
||||
}
|
||||
|
||||
.app {
|
||||
@apply bg-black bg-opacity-10 w-20 h-20 p-4 flex-wrap cursor-pointer inline-block rounded-xl transition-all;
|
||||
}
|
||||
|
||||
.app--demo {
|
||||
@apply bg-black bg-opacity-10 w-20 h-20 p-4 flex-wrap cursor-pointer inline-block transition-all;
|
||||
}
|
||||
|
||||
.app--backup {
|
||||
@apply bg-black bg-opacity-10 w-20 h-20 p-4 flex-wrap cursor-pointer inline-block transition-all;
|
||||
}
|
||||
|
@@ -3,4 +3,4 @@ export REPO_NAME="docker-website"
|
||||
export DOMAIN="docker-website.valere.dev"
|
||||
export PORT="7900"
|
||||
export PORT_EXPOSED="3000"
|
||||
export REDIRECTIONS="get.$DOMAIN->https://raw.githubusercontent.com/docker-web/docker-web/master/install.sh"
|
||||
export REDIRECTIONS="dockerweb.valere.dev->https://raw.githubusercontent.com/docker-web/docker-web/master/install.sh"
|
||||
|
326
logo.svg
326
logo.svg
@@ -1,306 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
class="MuiBox-root css-15p9n5u"
|
||||
viewBox="0 0 195 194.56549"
|
||||
style="fill:#ffffff"
|
||||
data-darkreader-inline-fill=""
|
||||
version="1.1"
|
||||
id="svg885"
|
||||
sodipodi:docname="logo.svg"
|
||||
width="195"
|
||||
height="194.56551"
|
||||
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata891">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs889" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1132"
|
||||
id="namedview887"
|
||||
showgrid="false"
|
||||
fit-margin-top="4"
|
||||
fit-margin-left="4"
|
||||
fit-margin-right="4"
|
||||
fit-margin-bottom="4"
|
||||
inkscape:zoom="0.91240154"
|
||||
inkscape:cx="132.06904"
|
||||
inkscape:cy="203.30961"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g4"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:showpageshadow="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#505050">
|
||||
<inkscape:page
|
||||
x="0"
|
||||
y="0"
|
||||
width="195"
|
||||
height="194.56549"
|
||||
id="page4"
|
||||
margin="0 0 0 0.43449217"
|
||||
bleed="0"
|
||||
inkscape:export-filename="Page 2.png"
|
||||
inkscape:export-xdpi="812.74384"
|
||||
inkscape:export-ydpi="812.74384" />
|
||||
<inkscape:page
|
||||
x="0.43449402"
|
||||
y="241.8387"
|
||||
width="194.56551"
|
||||
height="194.56549"
|
||||
id="page5"
|
||||
margin="0"
|
||||
bleed="0" />
|
||||
<sodipodi:guide
|
||||
position="104.64025,131.07666"
|
||||
orientation="0,-1"
|
||||
id="guide1"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="96.414395,63.414758"
|
||||
orientation="0,-1"
|
||||
id="guide2"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="60.37471,114.72028"
|
||||
orientation="1,0"
|
||||
id="guide3"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="154.6693,104.36567"
|
||||
orientation="1,0"
|
||||
id="guide4"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="40.765196,69.076684"
|
||||
orientation="1,0"
|
||||
id="guide5"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="17.307314,90.012796"
|
||||
orientation="1,0"
|
||||
id="guide6"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="178.45516,78.096384"
|
||||
orientation="1,0"
|
||||
id="guide7"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="114.18738,154.23479"
|
||||
orientation="0,-1"
|
||||
id="guide8"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="115.0928,178.02065"
|
||||
orientation="0,-1"
|
||||
id="guide9"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="126.61803,16.544842"
|
||||
orientation="0,-1"
|
||||
id="guide10"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="107.01209,40.330695"
|
||||
orientation="0,-1"
|
||||
id="guide11"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="104.68642,-63.818053"
|
||||
orientation="0,-1"
|
||||
id="guide12"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="111.85964,-87.603905"
|
||||
orientation="0,-1"
|
||||
id="guide13"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="112.72049,-201.508"
|
||||
orientation="0,-1"
|
||||
id="guide14"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="117.90319,-225.29386"
|
||||
orientation="0,-1"
|
||||
id="guide15"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="108.84027,-110.76205"
|
||||
orientation="0,-1"
|
||||
id="guide16"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="100.562,-178.43168"
|
||||
orientation="0,-1"
|
||||
id="guide17"
|
||||
inkscape:locked="false" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="g4"
|
||||
inkscape:label="dark"
|
||||
style="display:inline"
|
||||
transform="translate(241.4509,5.6112637)">
|
||||
<rect
|
||||
style="display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-linecap:square;stroke-miterlimit:2.3;paint-order:markers stroke fill"
|
||||
id="rect5"
|
||||
width="194.56551"
|
||||
height="194.56551"
|
||||
x="-241.0164"
|
||||
y="236.22746"
|
||||
inkscape:label="background" />
|
||||
<g
|
||||
style="display:inline;fill:#0062f8;fill-opacity:0.446602"
|
||||
transform="matrix(5.8876865,0,0,5.8876865,-568.27833,306.58873)"
|
||||
id="g3"
|
||||
inkscape:label="circles">
|
||||
<circle
|
||||
style="display:inline;fill:#0062f8;fill-opacity:0.446602;stroke:none;stroke-width:302.362;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:161.197;stroke-opacity:1"
|
||||
id="circle1"
|
||||
cx="72.107216"
|
||||
cy="4.5725055"
|
||||
r="9.6730785"
|
||||
inkscape:label="small" />
|
||||
<circle
|
||||
style="display:inline;fill:#0062f8;fill-opacity:0.446602;stroke:none;stroke-width:428.643;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:161.197;stroke-opacity:1"
|
||||
id="circle2"
|
||||
cx="72.107216"
|
||||
cy="4.5725055"
|
||||
r="13.713011"
|
||||
inkscape:label="medium" />
|
||||
<circle
|
||||
style="display:inline;fill:#0062f8;fill-opacity:0.446602;stroke:none;stroke-width:516.481;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:161.197;stroke-opacity:1"
|
||||
id="circle3"
|
||||
cx="72.107216"
|
||||
cy="4.5725055"
|
||||
r="16.523087"
|
||||
inkscape:label="big" />
|
||||
</g>
|
||||
<g
|
||||
id="g5"
|
||||
style="display:inline;fill:#e6e6e6"
|
||||
inkscape:label="logo"
|
||||
transform="translate(-224.06334,241.83872)">
|
||||
<path
|
||||
id="path3"
|
||||
style="fill:#e6e6e6;stroke-width:355.553;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2.3;paint-order:fill markers stroke"
|
||||
d="m 80.326047,57.877579 a 26.752747,26.752747 0 0 0 -26.757729,26.75772 26.752747,26.752747 0 0 0 0.355777,4.325427 h 52.803915 a 26.752747,26.752747 0 0 0 0.35578,-4.325427 26.752747,26.752747 0 0 0 -26.757743,-26.75772 z"
|
||||
inkscape:label="app" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="display:inline;fill:#e6e6e6;stroke-width:4.15564"
|
||||
id="path4"
|
||||
d="m 141.72941,87.511292 c -0.27036,-0.220024 -2.79675,-2.127682 -8.12017,-2.127682 -1.32983,0 -2.73855,0.124632 -4.19723,0.361433 -1.03052,-7.077067 -6.86091,-10.526234 -7.13107,-10.679982 l -1.43366,-0.831105 -0.94337,1.363054 c -1.17902,1.826063 -2.03773,3.839986 -2.53904,5.955013 -0.95583,4.039291 -0.3739,7.829232 1.67467,11.078959 -2.47673,1.375518 -6.4246,1.737047 -7.24746,1.74534 H 46.103913 c -1.716853,0.0068 -3.107653,1.395727 -3.116761,3.112612 1.179117,5.458916 1.156108,5.301996 3.063553,10.313696 2.264759,5.94255 5.630883,10.31844 10.010938,13.00715 4.907729,3.01284 12.89905,4.73743 21.925106,4.73743 4.222155,0 8.43597,-0.38262 12.175991,-1.10541 5.888584,-1.13446 11.24106,-3.08345 15.89952,-5.78046 4.07145,-2.35991 7.7342,-5.36307 10.84626,-8.89307 5.20282,-5.90104 6.55451,-6.94991 10.42156,-11.718366 0.31158,0.01438 0.61453,0.01917 0.91844,0.01917 5.69742,0 9.20476,-2.285601 11.13713,-4.197162 2.09862,-2.07782 2.8466,-4.147348 2.9256,-4.375894 l 0.40362,-1.196834 z"
|
||||
sodipodi:nodetypes="cscccccccccccsccccscccc"
|
||||
inkscape:label="wahle" />
|
||||
</g>
|
||||
<g
|
||||
id="text1157"
|
||||
style="font-size:55.66px;line-height:1.25;font-family:Comfortaa;-inkscape-font-specification:Comfortaa;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;stroke-width:0.69575"
|
||||
aria-label="docker web"
|
||||
transform="matrix(6.7317198,0,0,6.7317198,-58.468582,-176.22368)">
|
||||
<path
|
||||
style="font-size:12.9873px;fill:#cccccc"
|
||||
d="m 18.474617,38.619916 v -3.842921 h 1.166827 v 9.867304 h -1.166827 v -1.065365 q -0.367805,0.634146 -0.932194,0.944877 -0.558048,0.30439 -1.344389,0.30439 -1.287315,0 -2.099021,-1.027316 -0.805365,-1.027316 -0.805365,-2.70146 0,-1.674144 0.805365,-2.70146 0.811706,-1.027315 2.099021,-1.027315 0.786341,0 1.344389,0.310731 0.564389,0.30439 0.932194,0.938535 z m -3.976093,2.479509 q 0,1.287316 0.526341,2.022924 0.532682,0.729268 1.458535,0.729268 0.925852,0 1.458535,-0.729268 0.532682,-0.735608 0.532682,-2.022924 0,-1.287315 -0.532682,-2.016583 -0.532683,-0.735608 -1.458535,-0.735608 -0.925853,0 -1.458535,0.735608 -0.526341,0.729268 -0.526341,2.016583 z m 10.298524,-2.739508 q -0.938536,0 -1.483901,0.735608 -0.545365,0.729268 -0.545365,2.0039 0,1.274633 0.539024,2.010241 0.545365,0.729268 1.490242,0.729268 0.932193,0 1.477559,-0.735609 0.545365,-0.735609 0.545365,-2.0039 0,-1.261949 -0.545365,-1.997558 -0.545366,-0.74195 -1.477559,-0.74195 z m 0,-0.989267 q 1.521949,0 2.390728,0.989267 0.868779,0.989267 0.868779,2.739508 0,1.7439 -0.868779,2.739509 -0.868779,0.989267 -2.390728,0.989267 -1.528291,0 -2.39707,-0.989267 -0.862438,-0.995609 -0.862438,-2.739509 0,-1.750241 0.862438,-2.739508 0.868779,-0.989267 2.39707,-0.989267 z m 10.304865,0.443901 v 1.090731 q -0.494634,-0.272683 -0.995609,-0.405853 -0.494633,-0.139512 -1.00195,-0.139512 -1.13512,0 -1.762924,0.722925 -0.627804,0.716585 -0.627804,2.016583 0,1.299998 0.627804,2.022924 0.627804,0.716585 1.762924,0.716585 0.507317,0 1.00195,-0.133171 0.500975,-0.139512 0.995609,-0.412194 v 1.078047 q -0.488292,0.228292 -1.014633,0.342439 -0.52,0.114146 -1.109755,0.114146 -1.604388,0 -2.549265,-1.008292 -0.944877,-1.008291 -0.944877,-2.720484 0,-1.737558 0.951219,-2.733167 0.957559,-0.995608 2.619021,-0.995608 0.539023,0 1.052681,0.114146 0.513658,0.107805 0.995609,0.329755 z m 1.984875,-3.037556 h 1.173169 v 5.827797 l 3.481459,-3.062923 h 1.490242 l -3.766825,3.322922 3.925361,3.779508 h -1.521949 l -3.608288,-3.468776 v 3.468776 h -1.173169 z m 13.177543,6.024382 v 0.570731 H 44.89946 q 0.0761,1.204876 0.722925,1.839022 0.65317,0.627804 1.813657,0.627804 0.672194,0 1.299998,-0.164878 0.634145,-0.164878 1.255608,-0.494634 v 1.103414 q -0.627804,0.266341 -1.287315,0.405853 -0.659512,0.139512 -1.338047,0.139512 -1.69951,0 -2.695119,-0.989267 Q 43.6819,42.849667 43.6819,41.16284 q 0,-1.7439 0.938536,-2.764875 0.944876,-1.027315 2.542923,-1.027315 1.433169,0 2.2639,0.925852 0.837072,0.919511 0.837072,2.504875 z m -1.166828,-0.342439 q -0.01268,-0.957559 -0.539024,-1.52829 -0.519999,-0.570731 -1.382437,-0.570731 -0.976584,0 -1.566339,0.551706 -0.583414,0.551707 -0.672195,1.553657 z m 7.197552,-1.826339 q -0.196585,-0.114146 -0.431219,-0.164878 -0.228292,-0.05707 -0.507316,-0.05707 -0.989267,0 -1.521949,0.646829 -0.526341,0.640487 -0.526341,1.845363 v 3.741459 h -1.173169 v -7.10243 h 1.173169 v 1.103413 q 0.367804,-0.646828 0.95756,-0.95756 0.589755,-0.317072 1.433169,-0.317072 0.120487,0 0.266341,0.01902 0.145853,0.01268 0.323414,0.04439 z"
|
||||
id="path3-2" />
|
||||
<path
|
||||
style="font-size:12.9873px;fill:#e6e6e6"
|
||||
d="m 60.968708,37.541869 h 1.166828 l 1.458534,5.542432 1.452193,-5.542432 h 1.376096 l 1.458535,5.542432 1.452193,-5.542432 h 1.166828 l -1.858047,7.10243 h -1.376095 l -1.528291,-5.821456 -1.534632,5.821456 h -1.376096 z m 17.375586,3.259508 v 0.570731 h -5.364871 q 0.0761,1.204876 0.722926,1.839022 0.65317,0.627804 1.813656,0.627804 0.672195,0 1.299999,-0.164878 0.634145,-0.164878 1.255608,-0.494634 v 1.103414 q -0.627804,0.266341 -1.287316,0.405853 -0.659511,0.139512 -1.338047,0.139512 -1.69951,0 -2.695118,-0.989267 -0.989267,-0.989267 -0.989267,-2.676094 0,-1.7439 0.938535,-2.764875 0.944877,-1.027315 2.542924,-1.027315 1.433169,0 2.263899,0.925852 0.837072,0.919511 0.837072,2.504875 z m -1.166827,-0.342439 q -0.01268,-0.957559 -0.539024,-1.52829 -0.519999,-0.570731 -1.382437,-0.570731 -0.976584,0 -1.56634,0.551706 -0.583414,0.551707 -0.672194,1.553657 z m 8.180478,0.640487 q 0,-1.287315 -0.532683,-2.016583 -0.52634,-0.735608 -1.452193,-0.735608 -0.925852,0 -1.458535,0.735608 -0.52634,0.729268 -0.52634,2.016583 0,1.287316 0.52634,2.022924 0.532683,0.729268 1.458535,0.729268 0.925853,0 1.452193,-0.729268 0.532683,-0.735608 0.532683,-2.022924 z m -3.969751,-2.479509 q 0.367804,-0.634145 0.925852,-0.938535 0.56439,-0.310731 1.344389,-0.310731 1.293656,0 2.099021,1.027315 0.811706,1.027316 0.811706,2.70146 0,1.674144 -0.811706,2.70146 -0.805365,1.027316 -2.099021,1.027316 -0.779999,0 -1.344389,-0.30439 -0.558048,-0.310731 -0.925852,-0.944877 v 1.065365 h -1.173169 v -9.867304 h 1.173169 z"
|
||||
id="path4-9" />
|
||||
</g>
|
||||
<g
|
||||
id="text1157-2"
|
||||
style="font-size:55.66px;line-height:1.25;font-family:Comfortaa;-inkscape-font-specification:Comfortaa;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;stroke-width:0.69575"
|
||||
aria-label="docker web"
|
||||
transform="matrix(6.7324888,0,0,6.7324888,-58.478812,65.588292)">
|
||||
<path
|
||||
style="font-size:12.9873px;fill:#cccccc"
|
||||
d="m 18.474617,38.619916 v -3.842921 h 1.166827 v 9.867304 h -1.166827 v -1.065365 q -0.367805,0.634146 -0.932194,0.944877 -0.558048,0.30439 -1.344389,0.30439 -1.287315,0 -2.099021,-1.027316 -0.805365,-1.027316 -0.805365,-2.70146 0,-1.674144 0.805365,-2.70146 0.811706,-1.027315 2.099021,-1.027315 0.786341,0 1.344389,0.310731 0.564389,0.30439 0.932194,0.938535 z m -3.976093,2.479509 q 0,1.287316 0.526341,2.022924 0.532682,0.729268 1.458535,0.729268 0.925852,0 1.458535,-0.729268 0.532682,-0.735608 0.532682,-2.022924 0,-1.287315 -0.532682,-2.016583 -0.532683,-0.735608 -1.458535,-0.735608 -0.925853,0 -1.458535,0.735608 -0.526341,0.729268 -0.526341,2.016583 z m 10.298524,-2.739508 q -0.938536,0 -1.483901,0.735608 -0.545365,0.729268 -0.545365,2.0039 0,1.274633 0.539024,2.010241 0.545365,0.729268 1.490242,0.729268 0.932193,0 1.477559,-0.735609 0.545365,-0.735609 0.545365,-2.0039 0,-1.261949 -0.545365,-1.997558 -0.545366,-0.74195 -1.477559,-0.74195 z m 0,-0.989267 q 1.521949,0 2.390728,0.989267 0.868779,0.989267 0.868779,2.739508 0,1.7439 -0.868779,2.739509 -0.868779,0.989267 -2.390728,0.989267 -1.528291,0 -2.39707,-0.989267 -0.862438,-0.995609 -0.862438,-2.739509 0,-1.750241 0.862438,-2.739508 0.868779,-0.989267 2.39707,-0.989267 z m 10.304865,0.443901 v 1.090731 q -0.494634,-0.272683 -0.995609,-0.405853 -0.494633,-0.139512 -1.00195,-0.139512 -1.13512,0 -1.762924,0.722925 -0.627804,0.716585 -0.627804,2.016583 0,1.299998 0.627804,2.022924 0.627804,0.716585 1.762924,0.716585 0.507317,0 1.00195,-0.133171 0.500975,-0.139512 0.995609,-0.412194 v 1.078047 q -0.488292,0.228292 -1.014633,0.342439 -0.52,0.114146 -1.109755,0.114146 -1.604388,0 -2.549265,-1.008292 -0.944877,-1.008291 -0.944877,-2.720484 0,-1.737558 0.951219,-2.733167 0.957559,-0.995608 2.619021,-0.995608 0.539023,0 1.052681,0.114146 0.513658,0.107805 0.995609,0.329755 z m 1.984875,-3.037556 h 1.173169 v 5.827797 l 3.481459,-3.062923 h 1.490242 l -3.766825,3.322922 3.925361,3.779508 h -1.521949 l -3.608288,-3.468776 v 3.468776 h -1.173169 z m 13.177543,6.024382 v 0.570731 H 44.89946 q 0.0761,1.204876 0.722925,1.839022 0.65317,0.627804 1.813657,0.627804 0.672194,0 1.299998,-0.164878 0.634145,-0.164878 1.255608,-0.494634 v 1.103414 q -0.627804,0.266341 -1.287315,0.405853 -0.659512,0.139512 -1.338047,0.139512 -1.69951,0 -2.695119,-0.989267 Q 43.6819,42.849667 43.6819,41.16284 q 0,-1.7439 0.938536,-2.764875 0.944876,-1.027315 2.542923,-1.027315 1.433169,0 2.2639,0.925852 0.837072,0.919511 0.837072,2.504875 z m -1.166828,-0.342439 q -0.01268,-0.957559 -0.539024,-1.52829 -0.519999,-0.570731 -1.382437,-0.570731 -0.976584,0 -1.566339,0.551706 -0.583414,0.551707 -0.672195,1.553657 z m 7.197552,-1.826339 q -0.196585,-0.114146 -0.431219,-0.164878 -0.228292,-0.05707 -0.507316,-0.05707 -0.989267,0 -1.521949,0.646829 -0.526341,0.640487 -0.526341,1.845363 v 3.741459 h -1.173169 v -7.10243 h 1.173169 v 1.103413 q 0.367804,-0.646828 0.95756,-0.95756 0.589755,-0.317072 1.433169,-0.317072 0.120487,0 0.266341,0.01902 0.145853,0.01268 0.323414,0.04439 z"
|
||||
id="path3-2-7" />
|
||||
<path
|
||||
style="font-size:12.9873px;fill:#e6e6e6"
|
||||
d="m 60.968708,37.541869 h 1.166828 l 1.458534,5.542432 1.452193,-5.542432 h 1.376096 l 1.458535,5.542432 1.452193,-5.542432 h 1.166828 l -1.858047,7.10243 h -1.376095 l -1.528291,-5.821456 -1.534632,5.821456 h -1.376096 z m 17.375586,3.259508 v 0.570731 h -5.364871 q 0.0761,1.204876 0.722926,1.839022 0.65317,0.627804 1.813656,0.627804 0.672195,0 1.299999,-0.164878 0.634145,-0.164878 1.255608,-0.494634 v 1.103414 q -0.627804,0.266341 -1.287316,0.405853 -0.659511,0.139512 -1.338047,0.139512 -1.69951,0 -2.695118,-0.989267 -0.989267,-0.989267 -0.989267,-2.676094 0,-1.7439 0.938535,-2.764875 0.944877,-1.027315 2.542924,-1.027315 1.433169,0 2.263899,0.925852 0.837072,0.919511 0.837072,2.504875 z m -1.166827,-0.342439 q -0.01268,-0.957559 -0.539024,-1.52829 -0.519999,-0.570731 -1.382437,-0.570731 -0.976584,0 -1.56634,0.551706 -0.583414,0.551707 -0.672194,1.553657 z m 8.180478,0.640487 q 0,-1.287315 -0.532683,-2.016583 -0.52634,-0.735608 -1.452193,-0.735608 -0.925852,0 -1.458535,0.735608 -0.52634,0.729268 -0.52634,2.016583 0,1.287316 0.52634,2.022924 0.532683,0.729268 1.458535,0.729268 0.925853,0 1.452193,-0.729268 0.532683,-0.735608 0.532683,-2.022924 z m -3.969751,-2.479509 q 0.367804,-0.634145 0.925852,-0.938535 0.56439,-0.310731 1.344389,-0.310731 1.293656,0 2.099021,1.027315 0.811706,1.027316 0.811706,2.70146 0,1.674144 -0.811706,2.70146 -0.805365,1.027316 -2.099021,1.027316 -0.779999,0 -1.344389,-0.30439 -0.558048,-0.310731 -0.925852,-0.944877 v 1.065365 h -1.173169 v -9.867304 h 1.173169 z"
|
||||
id="path4-9-0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="bright"
|
||||
style="fill:#ffffff;display:inline"
|
||||
transform="translate(16.658678,8.3220275)">
|
||||
<g
|
||||
style="display:inline;fill:#0062f8;fill-opacity:0.446602"
|
||||
transform="matrix(5.8876865,0,0,5.8876865,-343.48611,62.039248)"
|
||||
id="g1236-3-3-2"
|
||||
inkscape:label="circles">
|
||||
<circle
|
||||
style="display:inline;fill:#0062f8;fill-opacity:0.446602;stroke:none;stroke-width:302.362;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:161.197;stroke-opacity:1"
|
||||
id="path1180-2-6-6-9"
|
||||
cx="72.107216"
|
||||
cy="4.5725055"
|
||||
r="9.6730785"
|
||||
inkscape:label="small" />
|
||||
<circle
|
||||
style="display:inline;fill:#0062f8;fill-opacity:0.446602;stroke:none;stroke-width:428.643;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:161.197;stroke-opacity:1"
|
||||
id="path1180-9-7-7-1"
|
||||
cx="72.107216"
|
||||
cy="4.5725055"
|
||||
r="13.713011"
|
||||
inkscape:label="medium" />
|
||||
<circle
|
||||
style="display:inline;fill:#0062f8;fill-opacity:0.446602;stroke:none;stroke-width:516.481;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:161.197;stroke-opacity:1"
|
||||
id="path1180-1-5-5-27"
|
||||
cx="72.107216"
|
||||
cy="4.5725055"
|
||||
r="16.523087"
|
||||
inkscape:label="big" />
|
||||
</g>
|
||||
<g
|
||||
id="g6"
|
||||
inkscape:label="logo">
|
||||
<path
|
||||
id="path1"
|
||||
style="fill:#ffffff;stroke-width:355.553;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2.3;paint-order:fill markers stroke"
|
||||
d="m 81.054927,55.166816 a 26.752747,26.752747 0 0 0 -26.757729,26.75772 26.752747,26.752747 0 0 0 0.355777,4.325427 h 52.803915 a 26.752747,26.752747 0 0 0 0.35578,-4.325427 26.752747,26.752747 0 0 0 -26.757743,-26.75772 z"
|
||||
inkscape:label="app" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="display:inline;fill:#ffffff;stroke-width:4.15564"
|
||||
id="path881-7-5-5-0"
|
||||
d="m 142.45829,84.800529 c -0.27036,-0.220024 -2.79675,-2.127682 -8.12017,-2.127682 -1.32983,0 -2.73855,0.124632 -4.19723,0.361433 -1.03052,-7.077067 -6.86091,-10.526234 -7.13107,-10.679982 l -1.43366,-0.831105 -0.94337,1.363054 c -1.17902,1.826063 -2.03773,3.839986 -2.53904,5.955013 -0.95583,4.039291 -0.3739,7.829232 1.67467,11.078959 -2.47673,1.375518 -6.4246,1.737047 -7.24746,1.74534 H 46.832793 c -1.716853,0.0068 -3.107653,1.395727 -3.116761,3.112612 1.179117,5.458909 1.156108,5.301989 3.063553,10.313689 2.264759,5.94255 5.630883,10.31844 10.010938,13.00715 4.907729,3.01284 12.89905,4.73743 21.925106,4.73743 4.222155,0 8.43597,-0.38262 12.175991,-1.10541 5.888584,-1.13446 11.24106,-3.08345 15.89952,-5.78046 4.07145,-2.35991 7.7342,-5.36307 10.84626,-8.89307 5.20282,-5.90104 6.55451,-6.94991 10.42156,-11.718359 0.31158,0.01438 0.61453,0.01917 0.91844,0.01917 5.69742,0 9.20476,-2.285601 11.13713,-4.197162 2.09862,-2.07782 2.8466,-4.147348 2.9256,-4.375894 l 0.40362,-1.196834 z"
|
||||
sodipodi:nodetypes="cscccccccccccsccccscccc"
|
||||
inkscape:label="wahle" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<svg class="MuiBox-root css-15p9n5u" fill="#ffffff" data-darkreader-inline-fill="" version="1.1"
|
||||
viewBox="0 0 195 194.57" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<g transform="translate(16.659 8.322)">
|
||||
<g transform="matrix(5.8877 0 0 5.8877 -343.49 62.039)" fill="#0062f8" fill-opacity=".4466">
|
||||
<circle cx="72.107" cy="4.5725" r="9.6731" />
|
||||
<circle cx="72.107" cy="4.5725" r="13.713" />
|
||||
<circle cx="72.107" cy="4.5725" r="16.523" />
|
||||
</g>
|
||||
<g fill="#fff">
|
||||
<path
|
||||
d="m81.055 55.167a26.753 26.753 0 0 0-26.758 26.758 26.753 26.753 0 0 0 0.35578 4.3254h52.804a26.753 26.753 0 0 0 0.35578-4.3254 26.753 26.753 0 0 0-26.758-26.758z"
|
||||
stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="2.3" stroke-width="355.55"
|
||||
style="paint-order:fill markers stroke" />
|
||||
<path
|
||||
d="m142.46 84.801c-0.27036-0.22002-2.7968-2.1277-8.1202-2.1277-1.3298 0-2.7386 0.12463-4.1972 0.36143-1.0305-7.0771-6.8609-10.526-7.1311-10.68l-1.4337-0.8311-0.94337 1.3631c-1.179 1.8261-2.0377 3.84-2.539 5.955-0.95583 4.0393-0.3739 7.8292 1.6747 11.079-2.4767 1.3755-6.4246 1.737-7.2475 1.7453h-65.688c-1.7169 0.0068-3.1077 1.3957-3.1168 3.1126 1.1791 5.4589 1.1561 5.302 3.0636 10.314 2.2648 5.9426 5.6309 10.318 10.011 13.007 4.9077 3.0128 12.899 4.7374 21.925 4.7374 4.2222 0 8.436-0.38262 12.176-1.1054 5.8886-1.1345 11.241-3.0834 15.9-5.7805 4.0714-2.3599 7.7342-5.3631 10.846-8.8931 5.2028-5.901 6.5545-6.9499 10.422-11.718 0.31158 0.01438 0.61453 0.01917 0.91844 0.01917 5.6974 0 9.2048-2.2856 11.137-4.1972 2.0986-2.0778 2.8466-4.1473 2.9256-4.3759l0.40362-1.1968z"
|
||||
stroke-width="4.1556" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 1.8 KiB |
@@ -1,74 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
class="MuiBox-root css-15p9n5u"
|
||||
fill="#ffffff"
|
||||
data-darkreader-inline-fill=""
|
||||
version="1.1"
|
||||
viewBox="0 0 324.58591 324.58593"
|
||||
id="svg4"
|
||||
sodipodi:docname="logo.svg"
|
||||
width="324.58591"
|
||||
height="324.58591"
|
||||
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="namedview4"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:showpageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#505050"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.3811869"
|
||||
inkscape:cx="65.88536"
|
||||
inkscape:cy="230.59876"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1132"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<g
|
||||
transform="matrix(15.993754,0,0,15.993754,202.02026,95.822752)"
|
||||
id="g4">
|
||||
<g
|
||||
transform="matrix(0.61413,0,0,0.61413,-46.767,1.3479)"
|
||||
fill="#0062f8"
|
||||
fill-opacity="0.4466"
|
||||
id="g3">
|
||||
<circle
|
||||
cx="72.107002"
|
||||
cy="4.5725002"
|
||||
r="9.6731005"
|
||||
id="circle1" />
|
||||
<circle
|
||||
cx="72.107002"
|
||||
cy="4.5725002"
|
||||
r="13.713"
|
||||
id="circle2" />
|
||||
<circle
|
||||
cx="72.107002"
|
||||
cy="4.5725002"
|
||||
r="16.523001"
|
||||
id="circle3" />
|
||||
</g>
|
||||
<path
|
||||
d="M 3.9199,3.7221 C 3.8917,3.69915 3.62818,3.50017 3.07291,3.50017 c -0.13871,0 -0.28565,0.013 -0.4378,0.0377 C 2.52762,2.79968 1.91947,2.43987 1.89129,2.42387 L 1.74175,2.33718 1.64335,2.47936 C 1.52037,2.66983 1.4308,2.8799 1.37851,3.10051 1.27881,3.52184 1.33951,3.91715 1.55319,4.25611 1.29485,4.39959 0.88306,4.4373 0.79723,4.43816 h -6.8517 c -0.17908,7.09e-4 -0.32415,0.14558 -0.3251,0.32467 0.12299,0.5694 0.12059,0.55303 0.31955,1.0758 0.23623,0.61985 0.58734,1.0763 1.0442,1.3567 0.51191,0.31426 1.3455,0.49415 2.2869,0.49415 0.4404,0 0.87993,-0.03991 1.27,-0.1153 0.61422,-0.11833 1.1725,-0.32162 1.6584,-0.60294 0.42468,-0.24615 0.80673,-0.5594 1.1313,-0.92761 0.54269,-0.61552 0.68368,-0.72492 1.087,-1.2223 0.0325,0.0015 0.0641,0.002 0.0958,0.002 0.59428,0 0.96012,-0.2384 1.1617,-0.43779 C 3.89418,4.16881 3.9722,3.95294 3.98044,3.9291 l 0.0421,-0.12484 z"
|
||||
fill="#ffffff"
|
||||
stroke-width="0.43346"
|
||||
id="path3" />
|
||||
</g>
|
||||
<path
|
||||
fill="#00dc82"
|
||||
d="m 168.1312,157.41035 h 35.57302 c 1.13014,0 2.23986,-0.29473 3.21848,-0.85454 a 6.4114498,6.4114498 0 0 0 2.35566,-2.33523 6.3348952,6.3348952 0 0 0 0.86123,-3.1901 6.3348952,6.3348952 0 0 0 -0.86411,-3.18914 l -23.88983,-41.01159 a 6.4114498,6.4114498 0 0 0 -2.35533,-2.33492 6.4752453,6.4752453 0 0 0 -3.21785,-0.85453 c -1.12949,0 -2.23922,0.29506 -3.21752,0.85486 a 6.4114498,6.4114498 0 0 0 -2.35533,2.33491 l -6.10842,10.49309 -11.94348,-20.519188 a 6.4114498,6.4114498 0 0 0 -2.35629,-2.33492 6.4752453,6.4752453 0 0 0 -3.21816,-0.85422 c -1.12982,0 -2.23986,0.29473 -3.21849,0.85454 a 6.4114498,6.4114498 0 0 0 -2.35628,2.3346 l -29.72808,51.037048 a 6.3317054,6.3317054 0 0 0 -0.86411,3.18946 c -6.4e-4,1.11993 0.29665,2.22008 0.86124,3.1901 a 6.4114498,6.4114498 0 0 0 2.35565,2.33523 6.4752453,6.4752453 0 0 0 3.21848,0.85454 h 22.32972 c 8.84748,0 15.37216,-3.85165 19.86145,-11.36613 l 10.89978,-18.70867 5.83825,-10.01239 17.52144,30.0748 h -23.35969 z m -25.28376,-10.0226 -15.58333,-0.003 23.35937,-40.0974 11.65575,20.0487 -7.8041,13.40025 c -2.98148,4.87557 -6.36838,6.65196 -11.62769,6.65196"
|
||||
data-v-7503c9ae=""
|
||||
id="path1"
|
||||
style="stroke-width:0.318978" />
|
||||
</svg>
|
Before Width: | Height: | Size: 3.8 KiB |
Reference in New Issue
Block a user