Added software icons, added date format component

main
Štěpán Škorpil 2023-01-07 20:36:19 +01:00
rodzic 3a02c39109
commit e61cf74d00
13 zmienionych plików z 494 dodań i 12 usunięć

Wyświetl plik

@ -0,0 +1,13 @@
import React, { ReactElement, ReactNode } from 'react'
export default function FormattedDate ({ timestamp, emptyValue, timeTitle }: {
timestamp: string | number | null | undefined
emptyValue?: string | ReactNode
timeTitle?: boolean
}): ReactElement {
if (timestamp === '' || timestamp === null || timestamp === undefined) {
return <>{emptyValue ?? ''}</>
}
const date = new Date(timestamp)
return <span title={timeTitle === true ? `${date.toLocaleDateString()} ${date.toLocaleTimeString()}` : undefined}>{date.toLocaleDateString()}</span>
}

Wyświetl plik

@ -1,12 +1,13 @@
import React, { ReactElement } from 'react'
import { faCalendarPlus } from '@fortawesome/free-solid-svg-icons'
import FormattedDate from '../../FormattedDate'
import Badge from './Badge'
export default function CreatedAtBadge ({ createdAt }: { createdAt: string | null }): ReactElement {
return (
<Badge faIcon={faCalendarPlus}
label={'Created at'}
value={createdAt !== null ? (new Date(createdAt)).toLocaleDateString() : null}
value={createdAt !== null ? <FormattedDate timestamp={createdAt}/> : null}
className={'created-at'}
/>
)

Wyświetl plik

@ -1,4 +1,5 @@
import React, { ReactElement } from 'react'
import FormattedDate from '../../FormattedDate'
import Badge from './Badge'
import { faCalendarCheck } from '@fortawesome/free-solid-svg-icons'
@ -6,7 +7,7 @@ export default function LastPostAtBadge ({ lastStatusAt }: { lastStatusAt: strin
return (
<Badge faIcon={faCalendarCheck}
label={'Last status at'}
value={lastStatusAt !== null ? (new Date(lastStatusAt)).toLocaleDateString() : null}
value={lastStatusAt !== null ? <FormattedDate timestamp={lastStatusAt}/> : null}
className={'last-status-at'}
/>
)

Wyświetl plik

@ -1,5 +1,6 @@
import React, { ReactElement } from 'react'
import { ListNodesItemFragment } from '../../graphql/generated/types'
import FormattedDate from '../FormattedDate'
import SoftwareBadge from '../SoftwareBadge'
export default function NodeResult ({ node }: { node: ListNodesItemFragment }): ReactElement {
@ -22,7 +23,7 @@ export default function NodeResult ({ node }: { node: ListNodesItemFragment }):
? '?'
: (node.openRegistrations ? 'Opened' : 'Closed')
}</td>
<td>{node.refreshedAt !== '' ? (new Date(node.refreshedAt)).toLocaleDateString() : 'Never'}</td>
<td><FormattedDate timestamp={node.refreshedAt} emptyValue={'Never'} timeTitle={true} /></td>
</tr>
)
}

Wyświetl plik

@ -0,0 +1,87 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 362.83 362.83"
version="1.1"
id="svg11454"
sodipodi:docname="akkoma.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
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">
<sodipodi:namedview
id="namedview11456"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="1.7033083"
inkscape:cx="245.69833"
inkscape:cy="210.17921"
inkscape:window-width="1920"
inkscape:window-height="1043"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg11454" />
<defs
id="defs11440">
<style
id="style11438">
.cls-1 {
fill: #462d7a;
}
.cls-2 {
stroke: #2c1e50;
}
.cls-2, .cls-3 {
stroke-miterlimit: 10;
}
.cls-3 {
stroke: #fff;
}
</style>
</defs>
<g
id="Layer_9"
data-name="Layer 9">
<path
class="cls-2"
d="M269.3,197.19c-5.77-11.54-85.59,16.83-154.76,27.39-21.09,3.22-38.13,4.31-47.3,4.75-.74,2.91-1.76,7.02-2.87,11.97-1.93,8.6-2.89,12.89-2.6,13.78,3.3,9.95,59.73-.88,99.18-7.64,32.67-5.6,115.14-18.96,114.61-30.77-.03-.69-1.11-4.01-3.27-10.65-1.78-5.47-2.67-8.2-2.98-8.83Z"
id="path11442" />
</g>
<g
id="Layer_6"
data-name="Layer 6">
<path
class="cls-1"
d="M115.2,131.89c6.26-6.54,20.19-20.63,42.39-26.14,15.79-3.92,28.51-1.28,33.51,0,83.72,21.41,116.03,201.78,77.79,226.32-10.28,6.6-26.86,2.7-36.77-3.3-32.63-19.78-29.3-72.87-44.44-73.73-5.11-.29-7.15,5.8-20.91,24.94-19.63,27.3-31.49,43.44-49.21,50.87-2.53,1.06-26.91,12.07-41.84,1.23-38.55-28-2.96-155.84,39.49-200.18Zm56.31,10.45c-27.39-.52-46.38,38.21-37.98,54.55,10.09,19.62,65.5,18.26,74.77-3.3,7.21-16.78-11.38-50.77-36.79-51.24Z"
id="path11445" />
</g>
<g
id="Layer_4"
data-name="Layer 4"
style="fill:#000000;fill-opacity:1">
<path
d="M68.93,86.51c-6.55,27.74,252.45,113.97,267.56,89.66,9.24-14.87-64.9-83.62-163.53-97.57-39.06-5.52-100.95-5.14-104.03,7.91Z"
id="path11448"
style="fill:#000000;fill-opacity:1" />
</g>
<g
id="Layer_5"
data-name="Layer 5"
style="fill:#000000;fill-opacity:1">
<path
class="cls-3"
d="M138.96,93.76c.41-5.25,6.51-5.74,28.85-19.42,26.97-16.51,28.85-22.38,56.86-40.83,30.07-19.81,48.46-31.94,54.82-26.61,9.72,8.15-25.18,43.33-21.31,99.35,.87,12.61,3.12,17.79-.86,23.01-18.25,23.95-120.07-13.68-118.35-35.5Z"
id="path11451"
style="fill:#000000;fill-opacity:1" />
</g>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 2.9 KiB

Wyświetl plik

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="33.866669mm"
height="32.148132mm"
viewBox="0 0 33.866669 32.148132"
version="1.1"
id="svg5"
xml:space="preserve"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="birdsitelive.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"><sodipodi:namedview
id="namedview7"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="1.557211"
inkscape:cx="-22.797168"
inkscape:cy="53.30042"
inkscape:window-width="1920"
inkscape:window-height="1019"
inkscape:window-x="1920"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" /><defs
id="defs2" /><g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"><path
style="fill:#ea0027;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="m 16.818535,8.3929704 c 0,0 -0.584063,-4.1277808 1.203154,-6.1142841 1.867431,-2.07564273 4.325472,-2.40603678 6.081043,-2.24246384 1.755567,0.16346331 2.507031,0.54288128 4.132887,1.63135744 1.625852,1.0884625 2.490241,2.1119618 2.490241,2.1119618 l 2.546208,-0.3215815 -1.705729,2.4975608 2.300329,0.083328 -1.187826,1.2671524 c 0,0 2.272821,8.5072466 -2.059175,14.9260226 C 26.28767,28.650771 20.32091,31.460758 15.931657,32.028008 11.631073,32.583772 5.445065,31.246791 3.4939105,27.269426 4.7714542,27.455298 5.8247859,27.46507 6.6239936,27.225706 7.669801,26.924957 8.5261133,26.266279 8.5261133,26.266279 6.091627,25.377133 4.7817565,24.491071 3.9201691,23.740924 2.6377764,22.624366 1.6367935,21.245652 1.4270542,19.56427 2.4435611,19.72084 3.3826288,19.779731 4.1176983,19.581539 3.691119,19.36923 0.99057833,17.7389 0.5130769,16.350785 0.07323493,15.072147 -0.08119657,12.544873 0.03971721,11.64505 0.71608826,11.857633 1.4300968,12.190631 2.3408672,12.170087 1.935934,12.147062 0.3550642,10.384915 0.88497887,8.8061856 1.1432734,8.0366459 1.8073356,6.253365 1.8073356,6.253365 L 2.1630283,6.7166046 C 2.1575462,5.6731093 2.1239545,4.1571232 3.0035343,3.248543 3.1664809,5.1620381 5.4432463,7.0977769 10.122752,7.6953561 13.311397,8.102541 16.81854,8.3936419 16.81854,8.3936419 Z"
id="path7246"
sodipodi:nodetypes="cscscccccsscccsccsccscccscc" /></g></svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 2.8 KiB

Wyświetl plik

@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
clip-rule="evenodd"
fill-rule="evenodd"
stroke-linejoin="round"
stroke-miterlimit="2"
version="1.1"
viewBox="0 0 167.88838 103.16747"
xml:space="preserve"
id="svg13266"
sodipodi:docname="misskey.svg"
width="167.88838"
height="103.16747"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
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="defs13270" /><sodipodi:namedview
id="namedview13268"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="1.2514395"
inkscape:cx="147.43021"
inkscape:cy="60.730061"
inkscape:window-width="1920"
inkscape:window-height="1019"
inkscape:window-x="1920"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="g13262" />
<g
id="g13264"
transform="translate(-2.0047542,-0.997926)">
<g
transform="matrix(0.26953,0,0,0.26953,-55.341,-52.023)"
id="g13258">
</g>
<g
transform="matrix(3.6954,0,0,3.6954,208.34,-284.25)"
clip-rule="evenodd"
fill-rule="evenodd"
stroke-linejoin="round"
stroke-miterlimit="2"
id="g13262">
<path
d="m -41.8312,77.19 c -3.8683,0 -7.1782,1.3578 -9.9311,4.0734 -2.716,2.7525 -4.0734,6.0628 -4.0734,9.9311 5.0539,0.04979 6.082,0.01348 8.7525,0.0011 0.0024,-4.51e-4 0.0044,-6.05e-4 0.0069,-0.0011 0.03779,-2.8423 2.2103,-4.9346 5.2451,-5.2451 1.4137,0 2.6227,0.52089 3.6268,1.5629 0.855,0.8548 1.897,1.2822 3.1257,1.2822 1.2258,0 2.2676,-0.42741 3.1236,-1.2822 0.85499,-0.85567 1.2833,-1.8976 1.2833,-3.1257 0,-1.2264 -0.42828,-2.2673 -1.2833,-3.1231 -2.7528,-2.7156 -6.0446,-4.0734 -9.8761,-4.0734 z m -5.252,14.006 c -3.4453,-5.5934 -3.4667,0.08539 -8.7525,-0.0011 0,3.8683 1.3584,7.0406 4.0744,9.7931 2.7528,2.7156 6.0623,4.0734 9.9305,4.0734 3.8315,0 7.1238,-1.3578 9.8766,-4.0734 0.85499,-0.85577 1.2827,-1.8967 1.2827,-3.1231 0,-1.2282 -0.42775,-2.2701 -1.2827,-3.1257 -0.85596,-0.8548 -1.8978,-1.2822 -3.1236,-1.2822 -1.2287,0 -2.2707,0.42741 -3.1257,1.2822 -1.0041,1.042 -2.2136,1.5623 -3.6273,1.5623 -3.0348,-0.31051 -5.2084,-2.2633 -5.2462,-5.1056 -0.0024,1.1e-5 -0.0039,-1.2e-5 -0.0063,0 z m 26.154,-7.0965 c -2.8795,0 -5.3538,1.0204 -7.4227,3.0612 -0.64257,0.64316 -0.96404,1.4255 -0.96404,2.3472 0,0.92303 0.32146,1.7062 0.96404,2.3493 0.64331,0.64243 1.4265,0.96351 2.3477,0.96351 0.92347,0 1.7068,-0.32108 2.3493,-0.96351 0.75465,-0.78308 1.6632,-1.1744 2.7256,-1.1744 1.0894,0 2.0261,0.37695 2.8091,1.1316 0.75536,0.78309 1.1332,1.7201 1.1332,2.8102 0,1.0617 -0.39242,1.9703 -1.1754,2.7256 -0.39149,0.4193 -0.86676,0.69884 -1.4249,0.83878 -0.14116,0.02773 -0.25248,0.01369 -0.33614,-0.04175 -0.05605,-0.08456 -0.02751,-0.16827 0.08456,-0.25211 l 0.83825,-0.88053 c 0.64329,-0.64315 0.9651,-1.412 0.9651,-2.306 0,-0.92236 -0.27937,-1.6632 -0.83825,-2.2225 -0.55888,-0.55932 -1.3422,-0.83878 -2.3493,-0.83878 -0.6986,0 -1.397,0.34902 -2.0956,1.0475 l -4.8651,4.8223 c -0.64328,0.6438 -0.96457,1.4271 -0.96457,2.3488 0,0.92302 0.32128,1.7053 0.96457,2.3477 1.9568,1.9293 4.3751,2.8942 7.2546,2.8942 2.9072,0 5.3945,-1.0343 7.4634,-3.103 2.0412,-2.0409 3.0618,-4.501 3.0618,-7.3804 0,-2.9072 -1.0206,-5.3952 -3.0618,-7.4639 -2.0689,-2.0409 -4.5562,-3.0612 -7.4634,-3.0612 z"
clip-rule="evenodd"
fill="#fff"
fill-rule="nonzero"
stroke-miterlimit="2"
stroke-width="0"
id="path13260"
style="fill:#31748f;fill-opacity:1"
sodipodi:nodetypes="cccccccscsccccccscscscccccccscscscscccccscsccscscsccc" />
</g>
</g>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 3.8 KiB

Wyświetl plik

@ -1,4 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="61.076954mm" height="65.47831mm" viewBox="0 0 216.4144 232.00976">
<path fill="#2b90d9" d="M211.80734 139.0875c-3.18125 16.36625-28.4925 34.2775-57.5625 37.74875-15.15875 1.80875-30.08375 3.47125-45.99875 2.74125-26.0275-1.1925-46.565-6.2125-46.565-6.2125 0 2.53375.15625 4.94625.46875 7.2025 3.38375 25.68625 25.47 27.225 46.39125 27.9425 21.11625.7225 39.91875-5.20625 39.91875-5.20625l.8675 19.09s-14.77 7.93125-41.08125 9.39c-14.50875.7975-32.52375-.365-53.50625-5.91875C9.23234 213.82 1.40609 165.31125.20859 116.09125c-.365-14.61375-.14-28.39375-.14-39.91875 0-50.33 32.97625-65.0825 32.97625-65.0825C49.67234 3.45375 78.20359.2425 107.86484 0h.72875c29.66125.2425 58.21125 3.45375 74.8375 11.09 0 0 32.975 14.7525 32.975 65.0825 0 0 .41375 37.13375-4.59875 62.915"/>
<path fill="#fff" d="M177.50984 80.077v60.94125h-24.14375v-59.15c0-12.46875-5.24625-18.7975-15.74-18.7975-11.6025 0-17.4175 7.5075-17.4175 22.3525v32.37625H96.20734V85.42325c0-14.845-5.81625-22.3525-17.41875-22.3525-10.49375 0-15.74 6.32875-15.74 18.7975v59.15H38.90484V80.077c0-12.455 3.17125-22.3525 9.54125-29.675 6.56875-7.3225 15.17125-11.07625 25.85-11.07625 12.355 0 21.71125 4.74875 27.8975 14.2475l6.01375 10.08125 6.015-10.08125c6.185-9.49875 15.54125-14.2475 27.8975-14.2475 10.6775 0 19.28 3.75375 25.85 11.07625 6.36875 7.3225 9.54 17.22 9.54 29.675"/>
<svg width="171.06mm" height="171.06mm" version="1.1" viewBox="0 0 171.06 171.06" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(-137.22 -69.262)" stroke="#fff">
<path d="m307.76 154.79a85.011 85.011 0 0 1-85.011 85.011 85.011 85.011 0 0 1-85.011-85.011 85.011 85.011 0 0 1 85.011-85.011 85.011 85.011 0 0 1 85.011 85.011z" fill="#fff" stroke-width="1.0393"/>
<path d="m212.81 219.41c2.3935 1.9178 8.2837 3.7357 10.862-1.1323-5.0078-18.955-10.619-36.098-18.929-52.352 22.223-16.662 16.04-39.202-2.1659-46.387-10.987-4.3357-30.496-0.17285-45.05 0.86897 21.321 30.496-6.5194 61.886 40.79 49.555-3.9939-13.628-8.8828-21.992-14.521-31.099 14.987 12.908 33.472 68.335 29.014 80.545z" fill="#99ff38" stroke-linecap="square" stroke-width=".47446" style="paint-order:stroke fill markers"/>
<path d="m219.06 198.19 5.4972 19.258c4.1051-33.473 9.9791-72.808 30.206-93.632-8.3037 12.874-13.882 22.991-18.184 43.715 16.101 4.756 33.309-1.3287 42.043-13.131 10.478-14.159-11.443-26.742 0.32026-52.842-25.485 0.90007-52.668-1.4736-68.517 20.811 10.702 9.8928 12.34 18.837 6.8855 31.391 1.8497 3.567 4.7098 7.1685 11.517 10.322z" fill="#5a912c" stroke-width=".47446" style="paint-order:markers stroke fill"/>
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 1.4 KiB

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 1.2 KiB

Wyświetl plik

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg10"
version="1.1"
viewBox="0 0 38.692815 27.117038"
height="102.48912"
width="146.24059"
xmlns="http://www.w3.org/2000/svg">
<g
id="g8"
fill="#96b83c"
transform="translate(-13.229387,-13.228962)">
<g id="g4">
<path
id="path2"
aria-label="Mi"
d="m 27.595,34.59 c -1.676,0.006 -3.115,-1.004 -3.793,-2.179 -0.363,-0.513 -1.08,-0.696 -1.09,0 v 3.214 c 0,1.291 -0.47,2.408 -1.412,3.35 -0.915,0.914 -2.031,1.371 -3.35,1.371 -1.29,0 -2.407,-0.457 -3.349,-1.372 -0.914,-0.941 -1.372,-2.058 -1.372,-3.349 V 17.95 c 0,-0.995 0.283,-1.896 0.848,-2.703 0.591,-0.834 1.345,-1.413 2.26,-1.735 0.516591,-0.189385 1.062793,-0.285215 1.613,-0.283 1.453,0 2.664,0.565 3.632,1.695 l 4.832,5.608 c 0.108,0.08 0.424,0.697 1.18,0.697 0.758,0 1.115,-0.617 1.222,-0.698 l 4.791,-5.607 c 0.996,-1.13 2.22,-1.695 3.673,-1.695 0.538,0 1.076,0.094 1.614,0.283 0.914,0.322 1.654,0.9 2.22,1.735 0.591,0.807 0.887,1.708 0.887,2.703 v 17.675 c 0,1.291 -0.47,2.408 -1.412,3.35 -0.915,0.914 -2.032,1.371 -3.35,1.371 -1.291,0 -2.407,-0.457 -3.35,-1.372 -0.914,-0.941 -1.371,-2.058 -1.371,-3.349 v -3.214 c -0.08,-0.877 -0.855,-0.324 -1.13,0 -0.726,1.345 -2.118,2.173 -3.793,2.18 z M 47.806,21.38 c -1.13,0 -2.098333,-0.39 -2.905,-1.17 -0.78,-0.806667 -1.17,-1.775 -1.17,-2.905 0,-1.13 0.39,-2.085 1.17,-2.865 0.806667,-0.806667 1.775,-1.21 2.905,-1.21 1.13,0 2.098667,0.403333 2.906,1.21 0.806667,0.78 1.21,1.735 1.21,2.865 0,1.13 -0.403333,2.098333 -1.21,2.905 -0.807333,0.78 -1.776,1.17 -2.906,1.17 z m 0.04,0.808 c 1.13,0 2.085333,0.403333 2.866,1.21 0.806667,0.806667 1.21,1.775333 1.21,2.906 v 9.967 c 0,1.13 -0.403333,2.098333 -1.21,2.905 -0.78,0.78 -1.735333,1.17 -2.866,1.17 -1.129333,0 -2.097667,-0.39 -2.905,-1.17 -0.806667,-0.806667 -1.21,-1.775 -1.21,-2.905 v -9.967 c 0,-1.13 0.403333,-2.098667 1.21,-2.906 0.806667,-0.806667 1.775,-1.21 2.905,-1.21 z"
/>
</g>
</g>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 2.0 KiB

Wyświetl plik

@ -0,0 +1,48 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="26.803013mm"
height="27.607855mm"
viewBox="0 0 26.803013 27.607855"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gancio.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
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"><sodipodi:namedview
id="namedview7"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="2.2022289"
inkscape:cx="208.19816"
inkscape:cy="77.194518"
inkscape:window-width="1920"
inkscape:window-height="1019"
inkscape:window-x="1920"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="g1379" /><defs
id="defs2" /><g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-58.204582,-89.983772)"><g
id="g1379"
transform="translate(-36.804485,-8.0150495)"><path
style="fill:#fe0505;stroke-width:1"
d="m 104.20611,124.08064 c -3.95984,-1.64911 -5.99069,-3.43023 -7.620207,-6.68317 -1.272948,-2.54113 -1.565219,-3.90854 -1.576107,-7.37392 -0.008,-2.53814 0.04517,-3.12082 0.396691,-4.34938 0.603596,-2.10955 1.351244,-3.52542 2.523053,-4.77809 1.755608,-1.876753 3.87669,-2.686833 7.54129,-2.880164 3.16616,-0.167035 14.98574,0.934814 14.53208,1.354714 -0.0796,0.07365 -1.46351,0.267713 -3.07544,0.431254 -5.81873,0.590356 -6.24209,0.683426 -8.57028,1.884166 -1.14788,0.59202 -2.08706,1.00786 -2.08706,0.92411 0,-0.17177 1.06919,-1.21136 1.84458,-1.79351 l 0.51242,-0.38471 -1.57815,0.003 c -1.87981,0.003 -3.4429,0.34241 -4.99907,1.08511 -2.315059,1.10487 -3.392393,2.82583 -3.877987,6.19478 -0.656149,4.55222 0.252267,8.42498 2.591967,11.05006 1.06717,1.19734 3.16118,2.65493 4.3961,3.06001 l 0.93252,0.30589 v 1.3179 c 0,0.72484 -0.06,1.31543 -0.13322,1.31243 -0.0733,-0.003 -0.8622,-0.30905 -1.75318,-0.68011 z m -4.508008,-22.94601 c 1.148008,-0.77191 2.629618,-1.349211 3.892678,-1.516763 1.14226,-0.151526 1.17612,-0.429281 0.0523,-0.429281 -1.00712,0 -2.62677,0.396457 -3.55077,0.869154 -0.920131,0.47072 -1.975697,1.54243 -2.366321,2.40251 -0.533295,1.1742 -0.386148,1.29959 0.329076,0.28041 0.366346,-0.52203 1.1057,-1.24475 1.643007,-1.60603 z"
id="path1383" /><path
style="fill:#d6d6d6;stroke-width:1;fill-opacity:1"
d="m 108.81561,125.40296 c -0.70038,-0.13354 -1.3598,-0.29619 -1.46539,-0.36144 -0.10882,-0.0673 -0.19198,-0.67316 -0.19198,-1.39885 v -1.28019 l 2.79755,-0.0469 c 2.99654,-0.0502 4.68674,-0.24824 5.68732,-0.66631 l 0.6246,-0.26098 -0.11251,-1.21053 c -0.0619,-0.66579 -0.20117,-1.46488 -0.30954,-1.77576 -0.19099,-0.54786 -0.26371,-0.5892 -1.44864,-0.82341 -0.27788,-0.0549 -3.92095,0.22498 -7.09725,0.54531 -1.0681,0.10772 -1.29088,0.071 -2.16459,-0.35643 -0.7588,-0.37124 -1.0134,-0.60236 -1.15255,-1.04624 -0.51814,-1.6528 -0.73236,-7.64045 -0.37253,-10.41274 0.2084,-1.60566 0.49197,-2.06884 1.56487,-2.55608 1.03757,-0.4712 3.99547,-0.60702 6.86987,-0.31545 3.24374,0.32902 7.90221,0.45879 7.90221,0.22012 0,-0.11307 0.02,-0.26309 0.0444,-0.33338 0.0244,-0.0703 -0.22235,-0.14122 -0.54839,-0.15762 -0.32603,-0.0164 -0.6773,-0.11432 -0.78058,-0.21761 -0.24771,-0.2477 0.46313,-0.42912 1.38327,-0.35303 0.58029,0.048 0.77005,0.17596 1.22642,0.82718 l 0.53991,0.77042 -0.0411,8.80409 -0.0411,8.8041 -0.93579,0.70335 c -3.18706,2.39543 -8.22402,3.6142 -11.97843,2.89836 z m 5.98149,-11.23215 0.57837,-0.11567 -0.11988,-1.43741 c -0.0659,-0.79057 -0.17694,-1.49447 -0.24669,-1.56422 -0.0697,-0.0697 -0.9891,-0.078 -2.04302,-0.0183 l -1.91621,0.10851 0.0876,0.46124 c 0.0482,0.25368 0.13962,0.9608 0.20319,1.57138 l 0.1156,1.11014 h 1.38134 c 0.75973,0 1.6416,-0.0521 1.9597,-0.11568 z"
id="path1381" /></g></g></svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 4.1 KiB

Wyświetl plik

@ -1,4 +1,68 @@
<svg xmlns="http://www.w3.org/2000/svg" width="61.076954mm" height="65.47831mm" viewBox="0 0 216.4144 232.00976">
<path fill="#2b90d9" d="M211.80734 139.0875c-3.18125 16.36625-28.4925 34.2775-57.5625 37.74875-15.15875 1.80875-30.08375 3.47125-45.99875 2.74125-26.0275-1.1925-46.565-6.2125-46.565-6.2125 0 2.53375.15625 4.94625.46875 7.2025 3.38375 25.68625 25.47 27.225 46.39125 27.9425 21.11625.7225 39.91875-5.20625 39.91875-5.20625l.8675 19.09s-14.77 7.93125-41.08125 9.39c-14.50875.7975-32.52375-.365-53.50625-5.91875C9.23234 213.82 1.40609 165.31125.20859 116.09125c-.365-14.61375-.14-28.39375-.14-39.91875 0-50.33 32.97625-65.0825 32.97625-65.0825C49.67234 3.45375 78.20359.2425 107.86484 0h.72875c29.66125.2425 58.21125 3.45375 74.8375 11.09 0 0 32.975 14.7525 32.975 65.0825 0 0 .41375 37.13375-4.59875 62.915"/>
<path fill="#fff" d="M177.50984 80.077v60.94125h-24.14375v-59.15c0-12.46875-5.24625-18.7975-15.74-18.7975-11.6025 0-17.4175 7.5075-17.4175 22.3525v32.37625H96.20734V85.42325c0-14.845-5.81625-22.3525-17.41875-22.3525-10.49375 0-15.74 6.32875-15.74 18.7975v59.15H38.90484V80.077c0-12.455 3.17125-22.3525 9.54125-29.675 6.56875-7.3225 15.17125-11.07625 25.85-11.07625 12.355 0 21.71125 4.74875 27.8975 14.2475l6.01375 10.08125 6.015-10.08125c6.185-9.49875 15.54125-14.2475 27.8975-14.2475 10.6775 0 19.28 3.75375 25.85 11.07625 6.36875 7.3225 9.54 17.22 9.54 29.675"/>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="37.397 38.827 23.356 22.196"
width="23.356"
height="22.196"
version="1.1"
id="svg12398"
sodipodi:docname="hometown.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
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="defs12402" />
<sodipodi:namedview
id="namedview12400"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="13.921683"
inkscape:cx="7.075294"
inkscape:cy="14.797062"
inkscape:window-width="1920"
inkscape:window-height="1043"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg12398" />
<g
style="fill:#d3d3d3;fill-opacity:1"
transform="matrix(0.725344, 0, 0, 0.725344, 12.807959, 13.657597)"
id="g12396">
<path
d="M55.9,53.9H35.3c-0.7,0-1.3,0.6-1.3,1.3s0.6,1.3,1.3,1.3h20.6c0.7,0,1.3-0.6,1.3-1.3S56.6,53.9,55.9,53.9z"
id="path12382"
style="fill:#d3d3d3;fill-opacity:1" />
<path
d="M55.9,58.2H35.3c-0.7,0-1.3,0.6-1.3,1.3s0.6,1.3,1.3,1.3h20.6c0.7,0,1.3-0.6,1.3-1.3S56.6,58.2,55.9,58.2z"
id="path12384"
style="fill:#d3d3d3;fill-opacity:1" />
<path
d="M55.9,62.6H35.3c-0.7,0-1.3,0.6-1.3,1.3s0.6,1.3,1.3,1.3h20.6c0.7,0,1.3-0.6,1.3-1.3S56.6,62.6,55.9,62.6z"
id="path12386"
style="fill:#d3d3d3;fill-opacity:1" />
<path
d="M64.8,53.9c-0.7,0-1.3,0.6-1.3,1.3v8.8c0,0.7,0.6,1.3,1.3,1.3s1.3-0.6,1.3-1.3v-8.8C66,54.4,65.4,53.9,64.8,53.9z"
id="path12388"
style="fill:#d3d3d3;fill-opacity:1" />
<path
d="M60.4,53.9c-0.7,0-1.3,0.6-1.3,1.3v8.8c0,0.7,0.6,1.3,1.3,1.3s1.3-0.6,1.3-1.3v-8.8C61.6,54.4,61.1,53.9,60.4,53.9z"
id="path12390"
style="fill:#d3d3d3;fill-opacity:1" />
<path
d="M63.7,48.3c1.3-0.7,2-2.5,2-5.6c0-3.6-0.9-7.8-3.3-7.8s-3.3,4.2-3.3,7.8c0,3.1,0.7,4.9,2,5.6v2.4c0,0.7,0.6,1.3,1.3,1.3 s1.3-0.6,1.3-1.3V48.3z M62.4,37.8c0.4,0.8,0.8,2.5,0.8,4.9c0,2.5-0.5,3.4-0.8,3.4s-0.8-0.9-0.8-3.4C61.7,40.3,62.1,38.6,62.4,37.8 z"
id="path12392"
style="fill:#d3d3d3;fill-opacity:1" />
<path
d="M57,42.7c0-0.1-0.1-0.1-0.1-0.2l-3.2-4.1c-0.2-0.3-0.6-0.5-1-0.5h-1.6v-1.9c0-0.7-0.6-1.3-1.3-1.3s-1.3,0.6-1.3,1.3V38 h-3.9h-1.1h-5.2c-0.4,0-0.7,0.2-1,0.5l-3.2,4.1c0,0.1-0.1,0.1-0.1,0.2c0,0-0.1,0.1-0.1,0.1C34,43,34,43.2,34,43.3v7.4 c0,0.7,0.6,1.3,1.3,1.3h5.2h7.4h8c0.7,0,1.3-0.6,1.3-1.3v-7.4c0-0.2,0-0.3-0.1-0.4C57,42.8,57,42.8,57,42.7z M41.7,49.5h-5.2v-4.9 h10.2v4.9H41.7z M48.5,42.1l-1.2-1.6h4.8l1.2,1.6H48.5z M44.1,40.5l1.2,1.6h-7.5l1.2-1.6H44.1z M49.2,44.6h5.5v4.9h-5.5V44.6z"
id="path12394"
style="fill:#d3d3d3;fill-opacity:1" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 1.4 KiB

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 3.0 KiB

Wyświetl plik

@ -1,4 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" width="61.076954mm" height="65.47831mm" viewBox="0 0 216.4144 232.00976">
<path fill="#2b90d9" d="M211.80734 139.0875c-3.18125 16.36625-28.4925 34.2775-57.5625 37.74875-15.15875 1.80875-30.08375 3.47125-45.99875 2.74125-26.0275-1.1925-46.565-6.2125-46.565-6.2125 0 2.53375.15625 4.94625.46875 7.2025 3.38375 25.68625 25.47 27.225 46.39125 27.9425 21.11625.7225 39.91875-5.20625 39.91875-5.20625l.8675 19.09s-14.77 7.93125-41.08125 9.39c-14.50875.7975-32.52375-.365-53.50625-5.91875C9.23234 213.82 1.40609 165.31125.20859 116.09125c-.365-14.61375-.14-28.39375-.14-39.91875 0-50.33 32.97625-65.0825 32.97625-65.0825C49.67234 3.45375 78.20359.2425 107.86484 0h.72875c29.66125.2425 58.21125 3.45375 74.8375 11.09 0 0 32.975 14.7525 32.975 65.0825 0 0 .41375 37.13375-4.59875 62.915"/>
<path fill="#fff" d="M177.50984 80.077v60.94125h-24.14375v-59.15c0-12.46875-5.24625-18.7975-15.74-18.7975-11.6025 0-17.4175 7.5075-17.4175 22.3525v32.37625H96.20734V85.42325c0-14.845-5.81625-22.3525-17.41875-22.3525-10.49375 0-15.74 6.32875-15.74 18.7975v59.15H38.90484V80.077c0-12.455 3.17125-22.3525 9.54125-29.675 6.56875-7.3225 15.17125-11.07625 25.85-11.07625 12.355 0 21.71125 4.74875 27.8975 14.2475l6.01375 10.08125 6.015-10.08125c6.185-9.49875 15.54125-14.2475 27.8975-14.2475 10.6775 0 19.28 3.75375 25.85 11.07625 6.36875 7.3225 9.54 17.22 9.54 29.675"/>
<svg xmlns="http://www.w3.org/2000/svg" width="65" height="65" viewBox="0 0 61 65" fill="none">
<path d="M60.7539 14.3904C59.8143 7.40642 53.7273 1.90257 46.5117 0.836066C45.2943 0.655854 40.6819 0 29.9973 0H29.9175C19.2299 0 16.937 0.655854 15.7196 0.836066C8.70488 1.87302 2.29885 6.81852 0.744617 13.8852C-0.00294988 17.3654 -0.0827298 21.2237 0.0561464 24.7629C0.254119 29.8384 0.292531 34.905 0.753482 39.9598C1.07215 43.3175 1.62806 46.6484 2.41704 49.9276C3.89445 55.9839 9.87499 61.0239 15.7344 63.0801C22.0077 65.2244 28.7542 65.5804 35.2184 64.1082C35.9295 63.9428 36.6318 63.7508 37.3252 63.5321C38.8971 63.0329 40.738 62.4745 42.0913 61.4937C42.1099 61.4799 42.1251 61.4621 42.1358 61.4417C42.1466 61.4212 42.1526 61.3986 42.1534 61.3755V56.4773C42.153 56.4557 42.1479 56.4345 42.1383 56.4151C42.1287 56.3958 42.1149 56.3788 42.0979 56.3655C42.0809 56.3522 42.0611 56.3429 42.04 56.3382C42.019 56.3335 41.9971 56.3336 41.9761 56.3384C37.8345 57.3276 33.5905 57.8234 29.3324 57.8156C22.0045 57.8156 20.0336 54.3384 19.4693 52.8908C19.0156 51.6397 18.7275 50.3346 18.6124 49.0088C18.6112 48.9866 18.6153 48.9643 18.6243 48.9439C18.6333 48.9236 18.647 48.9056 18.6643 48.8915C18.6816 48.8774 18.7019 48.8675 18.7237 48.8628C18.7455 48.858 18.7681 48.8585 18.7897 48.8641C22.8622 49.8465 27.037 50.3423 31.2265 50.3412C32.234 50.3412 33.2387 50.3412 34.2463 50.3146C38.4598 50.1964 42.9009 49.9808 47.0465 49.1713C47.1499 49.1506 47.2534 49.1329 47.342 49.1063C53.881 47.8507 60.1038 43.9097 60.7362 33.9301C60.7598 33.5372 60.8189 29.8148 60.8189 29.4071C60.8218 28.0215 61.2651 19.5781 60.7539 14.3904Z" fill="url(#paint0_linear_89_8)"/>
<path d="M50.3943 22.237V39.5876H43.5185V22.7481C43.5185 19.2029 42.0411 17.3949 39.036 17.3949C35.7325 17.3949 34.0778 19.5338 34.0778 23.7585V32.9759H27.2434V23.7585C27.2434 19.5338 25.5857 17.3949 22.2822 17.3949C19.2949 17.3949 17.8027 19.2029 17.8027 22.7481V39.5876H10.9298V22.237C10.9298 18.6918 11.835 15.8754 13.6453 13.7877C15.5128 11.7049 17.9623 10.6355 21.0028 10.6355C24.522 10.6355 27.1813 11.9885 28.9542 14.6917L30.665 17.5633L32.3788 14.6917C34.1517 11.9885 36.811 10.6355 40.3243 10.6355C43.3619 10.6355 45.8114 11.7049 47.6847 13.7877C49.4931 15.8734 50.3963 18.6899 50.3943 22.237Z" fill="white"/>
<defs>
<linearGradient id="paint0_linear_89_8" x1="30.5" y1="0" x2="30.5" y2="65" gradientUnits="userSpaceOnUse">
<stop stop-color="#6364FF"/>
<stop offset="1" stop-color="#563ACC"/>
</linearGradient>
</defs>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 1.4 KiB

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 2.5 KiB

Wyświetl plik

@ -0,0 +1,128 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="1024"
height="1024"
viewBox="0 0 270.93333 270.93333"
version="1.1"
id="svg5"
xml:space="preserve"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
sodipodi:docname="icon.svg"
inkscape:export-filename="icon-128.png"
inkscape:export-xdpi="12.000001"
inkscape:export-ydpi="12.000001"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
id="namedview7"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.5946522"
inkscape:cx="752.54073"
inkscape:cy="450.68361"
inkscape:current-layer="layer1"><inkscape:grid
type="xygrid"
id="grid111" /></sodipodi:namedview><defs
id="defs2"><linearGradient
inkscape:collect="always"
id="linearGradient19130"><stop
style="stop-color:#dfd69b;stop-opacity:1;"
offset="0"
id="stop19126" /><stop
style="stop-color:#d2c572;stop-opacity:1;"
offset="1"
id="stop19128" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient19122"><stop
style="stop-color:#f05328;stop-opacity:1;"
offset="0"
id="stop19118" /><stop
style="stop-color:#cf370f;stop-opacity:1;"
offset="1"
id="stop19120" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient19114"><stop
style="stop-color:#006aaa;stop-opacity:1;"
offset="0"
id="stop19110" /><stop
style="stop-color:#005487;stop-opacity:1;"
offset="1"
id="stop19112" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient181"><stop
style="stop-color:#133e4b;stop-opacity:1;"
offset="0"
id="stop177" /><stop
style="stop-color:#0c2b3d;stop-opacity:1;"
offset="1"
id="stop179" /></linearGradient><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient181"
id="linearGradient183"
x1="250.75105"
y1="19.506355"
x2="20.450212"
y2="248.54874"
gradientUnits="userSpaceOnUse" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient19114"
id="linearGradient19116"
x1="72.969826"
y1="73.859703"
x2="25.361464"
y2="257.17413"
gradientUnits="userSpaceOnUse" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient19122"
id="linearGradient19124"
x1="149.05421"
y1="68.965385"
x2="138.3757"
y2="127.25226"
gradientUnits="userSpaceOnUse" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient19130"
id="linearGradient19132"
x1="170.85617"
y1="146.82953"
x2="201.5569"
y2="188.65369"
gradientUnits="userSpaceOnUse" /></defs><g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"><rect
style="fill:url(#linearGradient183);fill-opacity:1;stroke-width:0.264583"
id="rect115"
width="270.93332"
height="270.93332"
x="0"
y="0"
rx="33.866665" /><path
style="opacity:1;fill:url(#linearGradient19116);fill-opacity:1;stroke-width:0.264583"
d="m 0,69.41032 c 0,0 15.97341,-15.642206 48.0533,-21.973129 34.750862,-6.858036 65.71908,-10e-7 65.71908,-10e-7 l 29.94258,29.982012 -1.77975,90.322408 c 0,0 20.77918,34.00148 8.1347,35.37354 -26.69628,2.89682 -33.27837,33.1808 -28.04801,50.49948 5.23035,17.31867 4.34048,17.3187 4.34048,17.3187 L 0,270.9333 Z"
id="path18329"
sodipodi:nodetypes="cscccssccc" /><path
style="fill:url(#linearGradient19124);fill-opacity:1;stroke-width:0.264583"
d="m 113.77238,47.437191 c 0,0 14.85651,51.896699 13.28342,78.010049 -1.5731,26.11334 -5.0339,27.68645 -5.0339,27.68645 l 73.1442,-51.48951 C 179.27554,82.720765 145.61903,53.85498 113.77238,47.437191 Z"
id="path12139"
sodipodi:nodetypes="csccc" /><path
style="opacity:1;fill:url(#linearGradient19132);fill-opacity:1;stroke-width:0.264583"
d="m 122.0219,153.13369 73.1442,-51.48951 c 0,0 17.14886,15.4811 33.97498,41.63762 16.02811,24.91601 28.61719,57.75025 28.61719,57.75025 0,0 -36.26795,-3.41078 -67.93143,-3.01587 -46.29774,0.57743 -66.45321,7.99579 -66.45321,7.99579 -9.60125,-22.07547 -9.60125,-30.80281 -1.35173,-52.87828 z"
id="path13694"
sodipodi:nodetypes="ccscscc" /><circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
id="path18331"
cx="94.10437"
cy="131.92412"
r="17.130112" /></g></svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 5.1 KiB