Remove unused assets from the connected systems and skiply directories, including SVG and PNG files, to streamline the project and reduce clutter.
3
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"liveServer.settings.port": 5501
|
||||
}
|
||||
@ -1,61 +0,0 @@
|
||||
const http = require('http');
|
||||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
|
||||
const root = __dirname;
|
||||
const port = process.argv[2] ? parseInt(process.argv[2], 10) : 8181;
|
||||
|
||||
const mime = {
|
||||
'.html': 'text/html; charset=utf-8',
|
||||
'.js': 'text/javascript; charset=utf-8',
|
||||
'.css': 'text/css; charset=utf-8',
|
||||
'.json': 'application/json; charset=utf-8',
|
||||
'.png': 'image/png',
|
||||
'.jpg': 'image/jpeg',
|
||||
'.jpeg': 'image/jpeg',
|
||||
'.gif': 'image/gif',
|
||||
'.svg': 'image/svg+xml',
|
||||
'.webp': 'image/webp',
|
||||
'.mp4': 'video/mp4',
|
||||
'.woff': 'font/woff',
|
||||
'.woff2': 'font/woff2',
|
||||
'.ttf': 'font/ttf',
|
||||
'.ico': 'image/x-icon',
|
||||
};
|
||||
|
||||
const server = http.createServer((req, res) => {
|
||||
let reqPath = decodeURIComponent(req.url.split('?')[0]);
|
||||
if (reqPath === '/') reqPath = '/index.html';
|
||||
let filePath = path.join(root, reqPath);
|
||||
|
||||
if (!filePath.startsWith(root)) {
|
||||
res.writeHead(403);
|
||||
res.end('Forbidden');
|
||||
return;
|
||||
}
|
||||
|
||||
fs.stat(filePath, (err, stats) => {
|
||||
if (err) {
|
||||
res.writeHead(404);
|
||||
res.end('Not found: ' + reqPath);
|
||||
return;
|
||||
}
|
||||
if (stats.isDirectory()) {
|
||||
filePath = path.join(filePath, 'index.html');
|
||||
}
|
||||
fs.readFile(filePath, (err2, data) => {
|
||||
if (err2) {
|
||||
res.writeHead(404);
|
||||
res.end('Not found: ' + reqPath);
|
||||
return;
|
||||
}
|
||||
const ext = path.extname(filePath).toLowerCase();
|
||||
res.writeHead(200, { 'Content-Type': mime[ext] || 'application/octet-stream' });
|
||||
res.end(data);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
server.listen(port, () => {
|
||||
console.log(`Static server running at http://localhost:${port}/`);
|
||||
});
|
||||
|
Before Width: | Height: | Size: 717 KiB |
@ -1,172 +0,0 @@
|
||||
<svg width="1124" height="166" viewBox="0 0 1124 166" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M561.462 8.92565C561.503 8.65257 561.757 8.46449 562.03 8.50556C562.303 8.54662 562.492 8.80128 562.451 9.07435L561.956 9L561.462 8.92565ZM554.516 58.4741L554.022 58.3997V58.3997L554.516 58.4741ZM26.2894 134.5C26.2894 133.027 27.4833 131.833 28.9561 131.833C30.4288 131.833 31.6227 133.027 31.6227 134.5C31.6227 135.973 30.4288 137.167 28.9561 137.167C27.4833 137.167 26.2894 135.973 26.2894 134.5ZM561.956 9L562.451 9.07435L555.011 58.5484L554.516 58.4741L554.022 58.3997L561.462 8.92565L561.956 9ZM534.739 75.5V76H48.9561V75.5V75H534.739V75.5ZM28.9561 95.5H29.4561V134.5H28.9561H28.4561V95.5H28.9561ZM48.9561 75.5V76C38.1865 76 29.4561 84.7304 29.4561 95.5H28.9561H28.4561C28.4561 84.1782 37.6342 75 48.9561 75V75.5ZM554.516 58.4741L555.011 58.5484C553.502 68.5802 544.883 76 534.739 76V75.5V75C544.388 75 552.587 67.9421 554.022 58.3997L554.516 58.4741Z" fill="#0060EF"/>
|
||||
<path d="M561.457 8.96975C561.474 8.69411 561.711 8.48421 561.986 8.50092C562.262 8.51762 562.472 8.75461 562.455 9.03025L561.956 9L561.457 8.96975ZM558.095 72.7099L557.596 72.6796V72.6796L558.095 72.7099ZM293.289 134.5C293.289 133.027 294.483 131.833 295.956 131.833C297.429 131.833 298.623 133.027 298.623 134.5C298.623 135.973 297.429 137.167 295.956 137.167C294.483 137.167 293.289 135.973 293.289 134.5ZM561.956 9L562.455 9.03025L558.594 72.7401L558.095 72.7099L557.596 72.6796L561.457 8.96975L561.956 9ZM538.131 91.5V92H315.956V91.5V91H538.131V91.5ZM295.956 111.5H296.456V134.5H295.956H295.456V111.5H295.956ZM315.956 91.5V92C305.186 92 296.456 100.73 296.456 111.5H295.956H295.456C295.456 100.178 304.634 91 315.956 91V91.5ZM558.095 72.7099L558.594 72.7401C557.938 83.5605 548.972 92 538.131 92V91.5V91C548.443 91 556.972 82.9722 557.596 72.6796L558.095 72.7099Z" fill="#0060EF"/>
|
||||
<path d="M562.451 8.92565C562.409 8.65257 562.155 8.46449 561.882 8.50556C561.609 8.54662 561.421 8.80128 561.462 9.07435L561.956 9L562.451 8.92565ZM569.396 58.4741L569.89 58.3997V58.3997L569.396 58.4741ZM1097.62 134.5C1097.62 133.027 1096.43 131.833 1094.96 131.833C1093.48 131.833 1092.29 133.027 1092.29 134.5C1092.29 135.973 1093.48 137.167 1094.96 137.167C1096.43 137.167 1097.62 135.973 1097.62 134.5ZM561.956 9L561.462 9.07435L568.901 58.5484L569.396 58.4741L569.89 58.3997L562.451 8.92565L561.956 9ZM589.173 75.5V76H1074.96V75.5V75H589.173V75.5ZM1094.96 95.5H1094.46V134.5H1094.96H1095.46V95.5H1094.96ZM1074.96 75.5V76C1085.73 76 1094.46 84.7304 1094.46 95.5H1094.96H1095.46C1095.46 84.1782 1086.28 75 1074.96 75V75.5ZM569.396 58.4741L568.901 58.5484C570.41 68.5802 579.029 76 589.173 76V75.5V75C579.524 75 571.325 67.9421 569.89 58.3997L569.396 58.4741Z" fill="#0060EF"/>
|
||||
<path d="M562.455 8.96975C562.438 8.69411 562.201 8.48421 561.926 8.50092C561.65 8.51762 561.44 8.75461 561.457 9.03025L561.956 9L562.455 8.96975ZM565.817 72.7099L566.316 72.6796V72.6796L565.817 72.7099ZM830.623 134.5C830.623 133.027 829.429 131.833 827.956 131.833C826.483 131.833 825.289 133.027 825.289 134.5C825.289 135.973 826.483 137.167 827.956 137.167C829.429 137.167 830.623 135.973 830.623 134.5ZM561.956 9L561.457 9.03025L565.318 72.7401L565.817 72.7099L566.316 72.6796L562.455 8.96975L561.956 9ZM585.781 91.5V92H807.956V91.5V91H585.781V91.5ZM827.956 111.5H827.456V134.5H827.956H828.456V111.5H827.956ZM807.956 91.5V92C818.726 92 827.456 100.73 827.456 111.5H827.956H828.456C828.456 100.178 819.278 91 807.956 91V91.5ZM565.817 72.7099L565.318 72.7401C565.974 83.5605 574.94 92 585.781 92V91.5V91C575.469 91 566.94 82.9722 566.316 72.6796L565.817 72.7099Z" fill="#0060EF"/>
|
||||
<g filter="url(#filter0_f_304_4057)">
|
||||
<path d="M560.967 8.8513C561.049 8.30515 561.559 7.92899 562.105 8.01112C562.651 8.09325 563.027 8.60256 562.945 9.1487L561.956 9L560.967 8.8513ZM554.516 58.4741L553.527 58.3254V58.3254L554.516 58.4741ZM23.6227 134.5C23.6227 131.554 26.0105 129.167 28.9561 129.167C31.9016 129.167 34.2894 131.554 34.2894 134.5C34.2894 137.446 31.9016 139.833 28.9561 139.833C26.0105 139.833 23.6227 137.446 23.6227 134.5ZM561.956 9L562.945 9.1487L555.505 58.6228L554.516 58.4741L553.527 58.3254L560.967 8.8513L561.956 9ZM534.739 75.5V76.5H48.9561V75.5V74.5H534.739V75.5ZM28.9561 95.5H29.9561V134.5H28.9561H27.9561V95.5H28.9561ZM48.9561 75.5V76.5C38.4626 76.5 29.9561 85.0066 29.9561 95.5H28.9561H27.9561C27.9561 83.902 37.3581 74.5 48.9561 74.5V75.5ZM554.516 58.4741L555.505 58.6228C553.96 68.8992 545.131 76.5 534.739 76.5V75.5V74.5C544.141 74.5 552.129 67.6231 553.527 58.3254L554.516 58.4741Z" fill="#0060EF" fill-opacity="0.5"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_f_304_4057)">
|
||||
<path d="M560.958 8.93951C560.991 8.38823 561.465 7.96842 562.017 8.00183C562.568 8.03524 562.988 8.50922 562.954 9.06049L561.956 9L560.958 8.93951ZM558.095 72.7099L557.097 72.6494V72.6494L558.095 72.7099ZM290.623 134.5C290.623 131.554 293.011 129.167 295.956 129.167C298.902 129.167 301.289 131.554 301.289 134.5C301.289 137.446 298.902 139.833 295.956 139.833C293.011 139.833 290.623 137.446 290.623 134.5ZM561.956 9L562.954 9.06049L559.093 72.7704L558.095 72.7099L557.097 72.6494L560.958 8.93951L561.956 9ZM538.131 91.5V92.5H315.956V91.5V90.5H538.131V91.5ZM295.956 111.5H296.956V134.5H295.956H294.956V111.5H295.956ZM315.956 91.5V92.5C305.463 92.5 296.956 101.007 296.956 111.5H295.956H294.956C294.956 99.902 304.358 90.5 315.956 90.5V91.5ZM558.095 72.7099L559.093 72.7704C558.421 83.8547 549.236 92.5 538.131 92.5V91.5V90.5C548.179 90.5 556.489 82.678 557.097 72.6494L558.095 72.7099Z" fill="#0060EF" fill-opacity="0.5"/>
|
||||
</g>
|
||||
<g filter="url(#filter2_f_304_4057)">
|
||||
<path d="M562.945 8.8513C562.863 8.30515 562.354 7.92899 561.807 8.01112C561.261 8.09325 560.885 8.60256 560.967 9.1487L561.956 9L562.945 8.8513ZM569.396 58.4741L570.385 58.3254V58.3254L569.396 58.4741ZM1100.29 134.5C1100.29 131.554 1097.9 129.167 1094.96 129.167C1092.01 129.167 1089.62 131.554 1089.62 134.5C1089.62 137.446 1092.01 139.833 1094.96 139.833C1097.9 139.833 1100.29 137.446 1100.29 134.5ZM561.956 9L560.967 9.1487L568.407 58.6228L569.396 58.4741L570.385 58.3254L562.945 8.8513L561.956 9ZM589.173 75.5V76.5H1074.96V75.5V74.5H589.173V75.5ZM1094.96 95.5H1093.96V134.5H1094.96H1095.96V95.5H1094.96ZM1074.96 75.5V76.5C1085.45 76.5 1093.96 85.0066 1093.96 95.5H1094.96H1095.96C1095.96 83.902 1086.55 74.5 1074.96 74.5V75.5ZM569.396 58.4741L568.407 58.6228C569.952 68.8992 578.781 76.5 589.173 76.5V75.5V74.5C579.771 74.5 571.783 67.6231 570.385 58.3254L569.396 58.4741Z" fill="#0060EF" fill-opacity="0.5"/>
|
||||
</g>
|
||||
<g filter="url(#filter3_f_304_4057)">
|
||||
<path d="M562.954 8.93951C562.921 8.38823 562.447 7.96842 561.896 8.00183C561.344 8.03524 560.924 8.50922 560.958 9.06049L561.956 9L562.954 8.93951ZM565.817 72.7099L566.815 72.6494V72.6494L565.817 72.7099ZM833.289 134.5C833.289 131.554 830.902 129.167 827.956 129.167C825.011 129.167 822.623 131.554 822.623 134.5C822.623 137.446 825.011 139.833 827.956 139.833C830.902 139.833 833.289 137.446 833.289 134.5ZM561.956 9L560.958 9.06049L564.819 72.7704L565.817 72.7099L566.815 72.6494L562.954 8.93951L561.956 9ZM585.781 91.5V92.5H807.956V91.5V90.5H585.781V91.5ZM827.956 111.5H826.956V134.5H827.956H828.956V111.5H827.956ZM807.956 91.5V92.5C818.449 92.5 826.956 101.007 826.956 111.5H827.956H828.956C828.956 99.902 819.554 90.5 807.956 90.5V91.5ZM565.817 72.7099L564.819 72.7704C565.491 83.8547 574.676 92.5 585.781 92.5V91.5V90.5C575.734 90.5 567.423 82.678 566.815 72.6494L565.817 72.7099Z" fill="#0060EF" fill-opacity="0.5"/>
|
||||
</g>
|
||||
<g filter="url(#filter4_f_304_4057)">
|
||||
<circle cx="28.9561" cy="136.5" r="18" fill="#0060EF" fill-opacity="0.1"/>
|
||||
</g>
|
||||
<g filter="url(#filter5_f_304_4057)">
|
||||
<circle cx="28.9561" cy="136.5" r="10.1739" fill="url(#paint0_radial_304_4057)" fill-opacity="0.3"/>
|
||||
</g>
|
||||
<circle cx="28.9556" cy="136.5" r="7.04348" fill="url(#paint1_linear_304_4057)"/>
|
||||
<g filter="url(#filter6_f_304_4057)">
|
||||
<circle cx="295.956" cy="136.5" r="18" fill="#0060EF" fill-opacity="0.1"/>
|
||||
</g>
|
||||
<g filter="url(#filter7_f_304_4057)">
|
||||
<circle cx="295.956" cy="136.5" r="10.1739" fill="url(#paint2_radial_304_4057)" fill-opacity="0.3"/>
|
||||
</g>
|
||||
<circle cx="295.956" cy="136.5" r="7.04348" fill="url(#paint3_linear_304_4057)"/>
|
||||
<g filter="url(#filter8_f_304_4057)">
|
||||
<circle cx="561.956" cy="136.5" r="18" fill="#0060EF" fill-opacity="0.1"/>
|
||||
</g>
|
||||
<g filter="url(#filter9_f_304_4057)">
|
||||
<circle cx="561.956" cy="136.5" r="10.1739" fill="url(#paint4_radial_304_4057)" fill-opacity="0.3"/>
|
||||
</g>
|
||||
<circle cx="561.956" cy="136.5" r="7.04348" fill="url(#paint5_linear_304_4057)"/>
|
||||
<g filter="url(#filter10_f_304_4057)">
|
||||
<circle cx="827.956" cy="136.5" r="18" fill="#0060EF" fill-opacity="0.1"/>
|
||||
</g>
|
||||
<g filter="url(#filter11_f_304_4057)">
|
||||
<circle cx="827.956" cy="136.5" r="10.1739" fill="url(#paint6_radial_304_4057)" fill-opacity="0.3"/>
|
||||
</g>
|
||||
<circle cx="827.956" cy="136.5" r="7.04348" fill="url(#paint7_linear_304_4057)"/>
|
||||
<g filter="url(#filter12_f_304_4057)">
|
||||
<circle cx="1094.96" cy="136.5" r="18" fill="#0060EF" fill-opacity="0.1"/>
|
||||
</g>
|
||||
<g filter="url(#filter13_f_304_4057)">
|
||||
<circle cx="1094.96" cy="136.5" r="10.1739" fill="url(#paint8_radial_304_4057)" fill-opacity="0.3"/>
|
||||
</g>
|
||||
<circle cx="1094.96" cy="136.5" r="7.04348" fill="url(#paint9_linear_304_4057)"/>
|
||||
<path d="M561.456 81.5C561.456 81.2239 561.68 81 561.956 81C562.232 81 562.456 81.2239 562.456 81.5H561.956H561.456ZM559.289 134.5C559.289 133.027 560.483 131.833 561.956 131.833C563.429 131.833 564.623 133.027 564.623 134.5C564.623 135.973 563.429 137.167 561.956 137.167C560.483 137.167 559.289 135.973 559.289 134.5ZM561.956 81.5H562.456V134.5H561.956H561.456V81.5H561.956Z" fill="#0060EF"/>
|
||||
<path d="M561.956 7.5L561.956 81.5" stroke="#0060EF"/>
|
||||
<defs>
|
||||
<filter id="filter0_f_304_4057" x="15.623" y="0" width="555.333" height="147.833" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="4" result="effect1_foregroundBlur_304_4057"/>
|
||||
</filter>
|
||||
<filter id="filter1_f_304_4057" x="282.623" y="0" width="288.333" height="147.833" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="4" result="effect1_foregroundBlur_304_4057"/>
|
||||
</filter>
|
||||
<filter id="filter2_f_304_4057" x="552.956" y="0" width="555.333" height="147.833" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="4" result="effect1_foregroundBlur_304_4057"/>
|
||||
</filter>
|
||||
<filter id="filter3_f_304_4057" x="552.956" y="0" width="288.333" height="147.833" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="4" result="effect1_foregroundBlur_304_4057"/>
|
||||
</filter>
|
||||
<filter id="filter4_f_304_4057" x="-0.0004673" y="107.543" width="57.913" height="57.913" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="5.47826" result="effect1_foregroundBlur_304_4057"/>
|
||||
</filter>
|
||||
<filter id="filter5_f_304_4057" x="13.304" y="120.848" width="31.3042" height="31.3042" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="2.73913" result="effect1_foregroundBlur_304_4057"/>
|
||||
</filter>
|
||||
<filter id="filter6_f_304_4057" x="267" y="107.543" width="57.913" height="57.913" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="5.47826" result="effect1_foregroundBlur_304_4057"/>
|
||||
</filter>
|
||||
<filter id="filter7_f_304_4057" x="280.304" y="120.848" width="31.3042" height="31.3042" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="2.73913" result="effect1_foregroundBlur_304_4057"/>
|
||||
</filter>
|
||||
<filter id="filter8_f_304_4057" x="533" y="107.543" width="57.913" height="57.913" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="5.47826" result="effect1_foregroundBlur_304_4057"/>
|
||||
</filter>
|
||||
<filter id="filter9_f_304_4057" x="546.304" y="120.848" width="31.3042" height="31.3042" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="2.73913" result="effect1_foregroundBlur_304_4057"/>
|
||||
</filter>
|
||||
<filter id="filter10_f_304_4057" x="799" y="107.543" width="57.913" height="57.913" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="5.47826" result="effect1_foregroundBlur_304_4057"/>
|
||||
</filter>
|
||||
<filter id="filter11_f_304_4057" x="812.304" y="120.848" width="31.3042" height="31.3042" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="2.73913" result="effect1_foregroundBlur_304_4057"/>
|
||||
</filter>
|
||||
<filter id="filter12_f_304_4057" x="1066" y="107.543" width="57.913" height="57.913" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="5.47826" result="effect1_foregroundBlur_304_4057"/>
|
||||
</filter>
|
||||
<filter id="filter13_f_304_4057" x="1079.3" y="120.848" width="31.3042" height="31.3042" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="2.73913" result="effect1_foregroundBlur_304_4057"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_304_4057" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(27.7822 133.37) rotate(90) scale(16.8261)">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#00D994"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="paint1_linear_304_4057" x1="26.2165" y1="130.63" x2="28.9556" y2="143.543" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0961538" stop-color="#BBD5FB"/>
|
||||
<stop offset="0.546266" stop-color="#0060EF"/>
|
||||
<stop offset="1" stop-color="#003789"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="paint2_radial_304_4057" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(294.782 133.37) rotate(90) scale(16.8261)">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#00D994"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="paint3_linear_304_4057" x1="293.216" y1="130.63" x2="295.956" y2="143.543" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0961538" stop-color="#BBD5FB"/>
|
||||
<stop offset="0.546266" stop-color="#0060EF"/>
|
||||
<stop offset="1" stop-color="#003789"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="paint4_radial_304_4057" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(560.782 133.37) rotate(90) scale(16.8261)">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#00D994"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="paint5_linear_304_4057" x1="559.216" y1="130.63" x2="561.956" y2="143.543" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0961538" stop-color="#BBD5FB"/>
|
||||
<stop offset="0.546266" stop-color="#0060EF"/>
|
||||
<stop offset="1" stop-color="#003789"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="paint6_radial_304_4057" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(826.782 133.37) rotate(90) scale(16.8261)">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#00D994"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="paint7_linear_304_4057" x1="825.216" y1="130.63" x2="827.956" y2="143.543" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0961538" stop-color="#BBD5FB"/>
|
||||
<stop offset="0.546266" stop-color="#0060EF"/>
|
||||
<stop offset="1" stop-color="#003789"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="paint8_radial_304_4057" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(1093.78 133.37) rotate(90) scale(16.8261)">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#00D994"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="paint9_linear_304_4057" x1="1092.22" y1="130.63" x2="1094.96" y2="143.543" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0961538" stop-color="#BBD5FB"/>
|
||||
<stop offset="0.546266" stop-color="#0060EF"/>
|
||||
<stop offset="1" stop-color="#003789"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 17 KiB |
@ -1,32 +0,0 @@
|
||||
<svg preserveAspectRatio="none" overflow="visible" style="display: block;" width="57.913" height="57.913" viewBox="0 0 57.913 57.913" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Group 1171276413">
|
||||
<g id="Ellipse 1557" filter="url(#filter0_f_310_4340)">
|
||||
<circle cx="28.9565" cy="28.9565" r="18" fill="#0060EF" fill-opacity="0.1"/>
|
||||
</g>
|
||||
<g id="Ellipse 1558" filter="url(#filter1_f_310_4340)">
|
||||
<circle cx="28.9565" cy="28.9565" r="10.1739" fill="url(#paint0_radial_310_4340)" fill-opacity="0.3"/>
|
||||
</g>
|
||||
<circle id="Ellipse 1556" cx="28.9565" cy="28.9565" r="7.04348" fill="url(#paint1_linear_310_4340)"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_f_310_4340" x="0" y="0" width="57.913" height="57.913" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="5.47826" result="effect1_foregroundBlur_310_4340"/>
|
||||
</filter>
|
||||
<filter id="filter1_f_310_4340" x="13.3043" y="13.3043" width="31.3043" height="31.3043" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="2.73913" result="effect1_foregroundBlur_310_4340"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_310_4340" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(27.7826 25.8261) rotate(90) scale(16.8261)">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#00D994"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="paint1_linear_310_4340" x1="26.2174" y1="23.087" x2="28.9565" y2="36" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0961538" stop-color="#BBD5FB"/>
|
||||
<stop offset="0.546266" stop-color="#0060EF"/>
|
||||
<stop offset="1" stop-color="#003789"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 812 KiB |
|
Before Width: | Height: | Size: 5.0 KiB |
|
Before Width: | Height: | Size: 347 KiB |
|
Before Width: | Height: | Size: 344 KiB |
|
Before Width: | Height: | Size: 345 KiB |
|
Before Width: | Height: | Size: 422 KiB |
|
Before Width: | Height: | Size: 409 KiB |
|
Before Width: | Height: | Size: 413 KiB |
|
Before Width: | Height: | Size: 424 KiB |
|
Before Width: | Height: | Size: 410 KiB |
|
Before Width: | Height: | Size: 335 KiB |
|
Before Width: | Height: | Size: 414 KiB |
|
Before Width: | Height: | Size: 337 KiB |
|
Before Width: | Height: | Size: 51 KiB |
|
Before Width: | Height: | Size: 96 KiB |
|
Before Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 113 KiB |
|
Before Width: | Height: | Size: 442 KiB |
|
Before Width: | Height: | Size: 61 KiB |
|
Before Width: | Height: | Size: 66 KiB |
|
Before Width: | Height: | Size: 413 KiB |
|
Before Width: | Height: | Size: 336 KiB |
BIN
skiply/h2-t1.png
|
Before Width: | Height: | Size: 367 KiB |
BIN
skiply/h2-t2.png
|
Before Width: | Height: | Size: 380 KiB |
BIN
skiply/h2-t3.png
|
Before Width: | Height: | Size: 392 KiB |
BIN
skiply/h2-t4.png
|
Before Width: | Height: | Size: 448 KiB |
|
Before Width: | Height: | Size: 396 KiB |
|
Before Width: | Height: | Size: 392 KiB |
|
Before Width: | Height: | Size: 405 KiB |
|
Before Width: | Height: | Size: 490 KiB |
|
Before Width: | Height: | Size: 499 KiB |
|
Before Width: | Height: | Size: 508 KiB |
|
Before Width: | Height: | Size: 517 KiB |
|
Before Width: | Height: | Size: 474 KiB |
|
Before Width: | Height: | Size: 154 KiB |
|
Before Width: | Height: | Size: 125 KiB |
|
Before Width: | Height: | Size: 154 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 199 KiB |
|
Before Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 249 KiB |
|
Before Width: | Height: | Size: 193 KiB |
|
Before Width: | Height: | Size: 262 KiB |
|
Before Width: | Height: | Size: 249 KiB |
|
Before Width: | Height: | Size: 168 KiB |
|
Before Width: | Height: | Size: 585 KiB |
|
Before Width: | Height: | Size: 214 KiB |
|
Before Width: | Height: | Size: 54 KiB |
|
Before Width: | Height: | Size: 444 KiB |
|
Before Width: | Height: | Size: 112 KiB |
|
Before Width: | Height: | Size: 141 KiB |
|
Before Width: | Height: | Size: 143 KiB |
|
Before Width: | Height: | Size: 143 KiB |