webs-sdk 0.14.2 → 0.14.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +398 -398
- package/dist/components/ARFilters/ARFilters.js +52 -52
- package/dist/components/AvatarAI.js +4 -4
- package/dist/components/CreativeFaceSwap.js +12 -12
- package/dist/components/MemeGenerator.js +12 -12
- package/dist/components/SpinningWheel/SpinningWheel.js +7 -7
- package/dist/components/esports/index.d.ts +5 -0
- package/dist/components/esports/index.d.ts.map +1 -0
- package/dist/components/esports/index.js +13 -0
- package/dist/components/esports/index.js.map +1 -0
- package/dist/components/esports/news/EsportsNews.d.ts +4 -0
- package/dist/components/esports/news/EsportsNews.d.ts.map +1 -0
- package/dist/components/esports/news/EsportsNews.js +173 -0
- package/dist/components/esports/news/EsportsNews.js.map +1 -0
- package/dist/components/esports/news/api.d.ts +15 -0
- package/dist/components/esports/news/api.d.ts.map +1 -0
- package/dist/components/esports/news/api.js +153 -0
- package/dist/components/esports/news/api.js.map +1 -0
- package/dist/components/esports/news/index.d.ts +5 -0
- package/dist/components/esports/news/index.d.ts.map +1 -0
- package/dist/components/esports/news/index.js +9 -0
- package/dist/components/esports/news/index.js.map +1 -0
- package/dist/components/esports/news/types.d.ts +98 -0
- package/dist/components/esports/news/types.d.ts.map +1 -0
- package/dist/components/esports/news/types.js +3 -0
- package/dist/components/esports/news/types.js.map +1 -0
- package/dist/components/esports/utils.d.ts +11 -0
- package/dist/components/esports/utils.d.ts.map +1 -0
- package/dist/components/esports/utils.js +57 -0
- package/dist/components/esports/utils.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/dist/libraries/auth.d.ts.map +1 -1
- package/dist/libraries/auth.js +12 -9
- package/dist/libraries/auth.js.map +1 -1
- package/index.js +67 -67
- package/package.json +42 -40
- package/public/spin2win/assets/border-afristream.svg +26 -26
- package/public/spin2win/assets/border-efc.svg +23 -23
- package/public/spin2win/assets/border-totalgym.svg +27 -27
- package/public/spin2win/assets/border-womantoday.svg +26 -26
- package/public/spin2win/assets/indicator-afristream.svg +28 -28
- package/public/spin2win/assets/indicator-efc.svg +29 -29
- package/public/spin2win/assets/indicator-totalgym.svg +29 -29
- package/public/spin2win/fonts/switzer/README.md +22 -22
- package/types/index.d.ts +415 -415
- package/dist/components/ARFilters/ARFilters.jsx +0 -97
- package/dist/components/ARFilters/ARFilters.jsx.map +0 -1
- package/dist/components/ARFilters/FilterCarousel.jsx +0 -136
- package/dist/components/ARFilters/FilterCarousel.jsx.map +0 -1
- package/dist/components/ARFilters/Popups.jsx +0 -69
- package/dist/components/ARFilters/Popups.jsx.map +0 -1
- package/dist/components/CreativeFaceSwap.jsx +0 -536
- package/dist/components/CreativeFaceSwap.jsx.map +0 -1
- package/dist/components/Ringtone.jsx +0 -80
- package/dist/components/Ringtone.jsx.map +0 -1
- package/dist/components/SpinningWheel/SpinningWheel.jsx +0 -744
- package/dist/components/SpinningWheel/SpinningWheel.jsx.map +0 -1
package/package.json
CHANGED
|
@@ -1,40 +1,42 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "webs-sdk",
|
|
3
|
-
|
|
4
|
-
"
|
|
5
|
-
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"@
|
|
33
|
-
"@
|
|
34
|
-
"@types/
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "webs-sdk",
|
|
3
|
+
|
|
4
|
+
"version": "0.14.4",
|
|
5
|
+
|
|
6
|
+
"private": false,
|
|
7
|
+
"main": "index.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/**/*",
|
|
11
|
+
"types/**/*",
|
|
12
|
+
"index.js",
|
|
13
|
+
"public/**/*"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"dev": "next dev --turbopack",
|
|
17
|
+
"build": "tsc --project tsconfig.build.json",
|
|
18
|
+
"build:watch": "tsc --project tsconfig.build.json --watch",
|
|
19
|
+
"prepublishOnly": "npm run build",
|
|
20
|
+
"start": "next start",
|
|
21
|
+
"lint": "next lint"
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"embla-carousel-react": "^8.3.2",
|
|
25
|
+
"mixpanel-browser": "^2.72.0",
|
|
26
|
+
"motion": "^12.38.0",
|
|
27
|
+
"next": "^16.0.8",
|
|
28
|
+
"react": "^19.0.0",
|
|
29
|
+
"react-dom": "^19.0.0"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@eslint/eslintrc": "^3",
|
|
33
|
+
"@tailwindcss/postcss": "^4",
|
|
34
|
+
"@types/node": "^24.3.0",
|
|
35
|
+
"@types/react": "^19",
|
|
36
|
+
"@types/react-dom": "^19",
|
|
37
|
+
"eslint": "^9",
|
|
38
|
+
"eslint-config-next": "^15.5.2",
|
|
39
|
+
"tailwindcss": "^4",
|
|
40
|
+
"typescript": "^5.9.3"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="401" height="401" viewBox="0 0 401 401" fill="none">
|
|
2
|
-
<g filter="url(#filter0_ii_afristream)">
|
|
3
|
-
<path d="M200.231 0C310.816 0 400.463 89.6467 400.463 200.231C400.463 310.816 310.816 400.463 200.231 400.463C89.6467 400.463 0 310.816 0 200.231C7.73641e-05 89.6467 89.6467 0 200.231 0ZM200.231 22.79C102.233 22.79 22.7901 102.233 22.79 200.231C22.79 298.23 102.233 377.673 200.231 377.673C298.23 377.673 377.673 298.23 377.673 200.231C377.673 102.233 298.23 22.79 200.231 22.79Z" fill="url(#paint0_linear_afristream)"/>
|
|
4
|
-
</g>
|
|
5
|
-
<defs>
|
|
6
|
-
<filter id="filter0_ii_afristream" x="-6.1565" y="-4.10433" width="409.844" height="408.378" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
7
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
8
|
-
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
9
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
10
|
-
<feOffset dx="-6.1565" dy="-4.10433"/>
|
|
11
|
-
<feGaussianBlur stdDeviation="3.21018"/>
|
|
12
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
13
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.996 0 0 0 0 0.502 0 0 0 0 0.180 0 0 0 0.6 0"/>
|
|
14
|
-
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_afristream"/>
|
|
15
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
16
|
-
<feOffset dx="3.22483" dy="3.81117"/>
|
|
17
|
-
<feGaussianBlur stdDeviation="2.52123"/>
|
|
18
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
19
|
-
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.847 0 0 0 0 0.718 0 0 0 1 0"/>
|
|
20
|
-
<feBlend mode="normal" in2="effect1_innerShadow_afristream" result="effect2_innerShadow_afristream"/>
|
|
21
|
-
</filter>
|
|
22
|
-
<linearGradient id="paint0_linear_afristream" x1="365.091" y1="325.562" x2="54.1338" y2="64.0346" gradientUnits="userSpaceOnUse">
|
|
23
|
-
<stop stop-color="#FFB366"/>
|
|
24
|
-
<stop offset="1" stop-color="#FFB366"/>
|
|
25
|
-
</linearGradient>
|
|
26
|
-
</defs>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="401" height="401" viewBox="0 0 401 401" fill="none">
|
|
2
|
+
<g filter="url(#filter0_ii_afristream)">
|
|
3
|
+
<path d="M200.231 0C310.816 0 400.463 89.6467 400.463 200.231C400.463 310.816 310.816 400.463 200.231 400.463C89.6467 400.463 0 310.816 0 200.231C7.73641e-05 89.6467 89.6467 0 200.231 0ZM200.231 22.79C102.233 22.79 22.7901 102.233 22.79 200.231C22.79 298.23 102.233 377.673 200.231 377.673C298.23 377.673 377.673 298.23 377.673 200.231C377.673 102.233 298.23 22.79 200.231 22.79Z" fill="url(#paint0_linear_afristream)"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<filter id="filter0_ii_afristream" x="-6.1565" y="-4.10433" width="409.844" height="408.378" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
7
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
8
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
9
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
10
|
+
<feOffset dx="-6.1565" dy="-4.10433"/>
|
|
11
|
+
<feGaussianBlur stdDeviation="3.21018"/>
|
|
12
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
13
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.996 0 0 0 0 0.502 0 0 0 0 0.180 0 0 0 0.6 0"/>
|
|
14
|
+
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_afristream"/>
|
|
15
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
16
|
+
<feOffset dx="3.22483" dy="3.81117"/>
|
|
17
|
+
<feGaussianBlur stdDeviation="2.52123"/>
|
|
18
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
19
|
+
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.847 0 0 0 0 0.718 0 0 0 1 0"/>
|
|
20
|
+
<feBlend mode="normal" in2="effect1_innerShadow_afristream" result="effect2_innerShadow_afristream"/>
|
|
21
|
+
</filter>
|
|
22
|
+
<linearGradient id="paint0_linear_afristream" x1="365.091" y1="325.562" x2="54.1338" y2="64.0346" gradientUnits="userSpaceOnUse">
|
|
23
|
+
<stop stop-color="#FFB366"/>
|
|
24
|
+
<stop offset="1" stop-color="#FFB366"/>
|
|
25
|
+
</linearGradient>
|
|
26
|
+
</defs>
|
|
27
27
|
</svg>
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="401" height="401" viewBox="0 0 401 401" fill="none">
|
|
2
|
-
<g filter="url(#filter0_ii_180_1646)">
|
|
3
|
-
<path d="M200.23 0C310.814 0.000255644 400.46 89.6467 400.46 200.23C400.46 310.814 310.814 400.46 200.23 400.46C89.6466 400.46 0.000178327 310.814 0 200.23C0 89.6465 89.6465 0 200.23 0ZM200.23 22.79C102.233 22.79 22.79 102.233 22.79 200.23C22.7903 298.228 102.233 377.671 200.23 377.671C298.228 377.671 377.67 298.228 377.67 200.23C377.67 102.233 298.228 22.7903 200.23 22.79Z" fill="#6B6B6B"/>
|
|
4
|
-
</g>
|
|
5
|
-
<defs>
|
|
6
|
-
<filter id="filter0_ii_180_1646" x="-6.15646" y="-4.1043" width="409.84" height="408.375" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
7
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
8
|
-
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
9
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
10
|
-
<feOffset dx="-6.15646" dy="-4.1043"/>
|
|
11
|
-
<feGaussianBlur stdDeviation="3.21015"/>
|
|
12
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
13
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/>
|
|
14
|
-
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_180_1646"/>
|
|
15
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
16
|
-
<feOffset dx="3.22481" dy="3.81114"/>
|
|
17
|
-
<feGaussianBlur stdDeviation="2.52122"/>
|
|
18
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
19
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.329412 0 0 0 0 0.329412 0 0 0 0 0.329412 0 0 0 1 0"/>
|
|
20
|
-
<feBlend mode="normal" in2="effect1_innerShadow_180_1646" result="effect2_innerShadow_180_1646"/>
|
|
21
|
-
</filter>
|
|
22
|
-
</defs>
|
|
23
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="401" height="401" viewBox="0 0 401 401" fill="none">
|
|
2
|
+
<g filter="url(#filter0_ii_180_1646)">
|
|
3
|
+
<path d="M200.23 0C310.814 0.000255644 400.46 89.6467 400.46 200.23C400.46 310.814 310.814 400.46 200.23 400.46C89.6466 400.46 0.000178327 310.814 0 200.23C0 89.6465 89.6465 0 200.23 0ZM200.23 22.79C102.233 22.79 22.79 102.233 22.79 200.23C22.7903 298.228 102.233 377.671 200.23 377.671C298.228 377.671 377.67 298.228 377.67 200.23C377.67 102.233 298.228 22.7903 200.23 22.79Z" fill="#6B6B6B"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<filter id="filter0_ii_180_1646" x="-6.15646" y="-4.1043" width="409.84" height="408.375" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
7
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
8
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
9
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
10
|
+
<feOffset dx="-6.15646" dy="-4.1043"/>
|
|
11
|
+
<feGaussianBlur stdDeviation="3.21015"/>
|
|
12
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
13
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/>
|
|
14
|
+
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_180_1646"/>
|
|
15
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
16
|
+
<feOffset dx="3.22481" dy="3.81114"/>
|
|
17
|
+
<feGaussianBlur stdDeviation="2.52122"/>
|
|
18
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
19
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.329412 0 0 0 0 0.329412 0 0 0 0 0.329412 0 0 0 1 0"/>
|
|
20
|
+
<feBlend mode="normal" in2="effect1_innerShadow_180_1646" result="effect2_innerShadow_180_1646"/>
|
|
21
|
+
</filter>
|
|
22
|
+
</defs>
|
|
23
|
+
</svg>
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="401" height="401" viewBox="0 0 401 401" fill="none">
|
|
2
|
-
<g filter="url(#filter0_ii_totalgym)">
|
|
3
|
-
<path d="M200.231 0C310.816 0 400.463 89.6467 400.463 200.231C400.463 310.816 310.816 400.463 200.231 400.463C89.6467 400.463 0 310.816 0 200.231C7.73641e-05 89.6467 89.6467 0 200.231 0ZM200.231 22.79C102.233 22.79 22.7901 102.233 22.79 200.231C22.79 298.23 102.233 377.673 200.231 377.673C298.23 377.673 377.673 298.23 377.673 200.231C377.673 102.233 298.23 22.79 200.231 22.79Z" fill="url(#paint0_linear_totalgym)"/>
|
|
4
|
-
</g>
|
|
5
|
-
<defs>
|
|
6
|
-
<filter id="filter0_ii_totalgym" x="-6.1565" y="-4.10433" width="409.844" height="408.378" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
7
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
8
|
-
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
9
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
10
|
-
<feOffset dx="-6.1565" dy="-4.10433"/>
|
|
11
|
-
<feGaussianBlur stdDeviation="3.21018"/>
|
|
12
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
13
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.553 0 0 0 0 0.592 0 0 0 0 0.004 0 0 0 0.7 0"/>
|
|
14
|
-
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_totalgym"/>
|
|
15
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
16
|
-
<feOffset dx="3.22483" dy="3.81117"/>
|
|
17
|
-
<feGaussianBlur stdDeviation="2.52123"/>
|
|
18
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
19
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.976 0 0 0 0 0.984 0 0 0 0 0.902 0 0 0 1 0"/>
|
|
20
|
-
<feBlend mode="normal" in2="effect1_innerShadow_totalgym" result="effect2_innerShadow_totalgym"/>
|
|
21
|
-
</filter>
|
|
22
|
-
<linearGradient id="paint0_linear_totalgym" x1="365.091" y1="325.562" x2="54.1338" y2="64.0346" gradientUnits="userSpaceOnUse">
|
|
23
|
-
<stop stop-color="#D9E255"/>
|
|
24
|
-
<stop offset="1" stop-color="#D9E255"/>
|
|
25
|
-
</linearGradient>
|
|
26
|
-
</defs>
|
|
27
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="401" height="401" viewBox="0 0 401 401" fill="none">
|
|
2
|
+
<g filter="url(#filter0_ii_totalgym)">
|
|
3
|
+
<path d="M200.231 0C310.816 0 400.463 89.6467 400.463 200.231C400.463 310.816 310.816 400.463 200.231 400.463C89.6467 400.463 0 310.816 0 200.231C7.73641e-05 89.6467 89.6467 0 200.231 0ZM200.231 22.79C102.233 22.79 22.7901 102.233 22.79 200.231C22.79 298.23 102.233 377.673 200.231 377.673C298.23 377.673 377.673 298.23 377.673 200.231C377.673 102.233 298.23 22.79 200.231 22.79Z" fill="url(#paint0_linear_totalgym)"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<filter id="filter0_ii_totalgym" x="-6.1565" y="-4.10433" width="409.844" height="408.378" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
7
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
8
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
9
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
10
|
+
<feOffset dx="-6.1565" dy="-4.10433"/>
|
|
11
|
+
<feGaussianBlur stdDeviation="3.21018"/>
|
|
12
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
13
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.553 0 0 0 0 0.592 0 0 0 0 0.004 0 0 0 0.7 0"/>
|
|
14
|
+
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_totalgym"/>
|
|
15
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
16
|
+
<feOffset dx="3.22483" dy="3.81117"/>
|
|
17
|
+
<feGaussianBlur stdDeviation="2.52123"/>
|
|
18
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
19
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.976 0 0 0 0 0.984 0 0 0 0 0.902 0 0 0 1 0"/>
|
|
20
|
+
<feBlend mode="normal" in2="effect1_innerShadow_totalgym" result="effect2_innerShadow_totalgym"/>
|
|
21
|
+
</filter>
|
|
22
|
+
<linearGradient id="paint0_linear_totalgym" x1="365.091" y1="325.562" x2="54.1338" y2="64.0346" gradientUnits="userSpaceOnUse">
|
|
23
|
+
<stop stop-color="#D9E255"/>
|
|
24
|
+
<stop offset="1" stop-color="#D9E255"/>
|
|
25
|
+
</linearGradient>
|
|
26
|
+
</defs>
|
|
27
|
+
</svg>
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="401" height="401" viewBox="0 0 401 401" fill="none">
|
|
2
|
-
<g filter="url(#filter0_ii_54_1793)">
|
|
3
|
-
<path d="M200.231 0C310.816 0 400.463 89.6467 400.463 200.231C400.463 310.816 310.816 400.463 200.231 400.463C89.6467 400.463 0 310.816 0 200.231C7.73641e-05 89.6467 89.6467 0 200.231 0ZM200.231 22.79C102.233 22.79 22.7901 102.233 22.79 200.231C22.79 298.23 102.233 377.673 200.231 377.673C298.23 377.673 377.673 298.23 377.673 200.231C377.673 102.233 298.23 22.79 200.231 22.79Z" fill="url(#paint0_linear_54_1793)"/>
|
|
4
|
-
</g>
|
|
5
|
-
<defs>
|
|
6
|
-
<filter id="filter0_ii_54_1793" x="-6.1565" y="-4.10433" width="409.844" height="408.378" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
7
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
8
|
-
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
9
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
10
|
-
<feOffset dx="-6.1565" dy="-4.10433"/>
|
|
11
|
-
<feGaussianBlur stdDeviation="3.21018"/>
|
|
12
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
13
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.996078 0 0 0 0 0.447059 0 0 0 0 0.447059 0 0 0 0.6 0"/>
|
|
14
|
-
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_54_1793"/>
|
|
15
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
16
|
-
<feOffset dx="3.22483" dy="3.81117"/>
|
|
17
|
-
<feGaussianBlur stdDeviation="2.52123"/>
|
|
18
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
19
|
-
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.862745 0 0 0 0 0.862745 0 0 0 1 0"/>
|
|
20
|
-
<feBlend mode="normal" in2="effect1_innerShadow_54_1793" result="effect2_innerShadow_54_1793"/>
|
|
21
|
-
</filter>
|
|
22
|
-
<linearGradient id="paint0_linear_54_1793" x1="365.091" y1="325.562" x2="54.1338" y2="64.0346" gradientUnits="userSpaceOnUse">
|
|
23
|
-
<stop stop-color="#FEB8B8"/>
|
|
24
|
-
<stop offset="1" stop-color="#FEB8B8"/>
|
|
25
|
-
</linearGradient>
|
|
26
|
-
</defs>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="401" height="401" viewBox="0 0 401 401" fill="none">
|
|
2
|
+
<g filter="url(#filter0_ii_54_1793)">
|
|
3
|
+
<path d="M200.231 0C310.816 0 400.463 89.6467 400.463 200.231C400.463 310.816 310.816 400.463 200.231 400.463C89.6467 400.463 0 310.816 0 200.231C7.73641e-05 89.6467 89.6467 0 200.231 0ZM200.231 22.79C102.233 22.79 22.7901 102.233 22.79 200.231C22.79 298.23 102.233 377.673 200.231 377.673C298.23 377.673 377.673 298.23 377.673 200.231C377.673 102.233 298.23 22.79 200.231 22.79Z" fill="url(#paint0_linear_54_1793)"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<filter id="filter0_ii_54_1793" x="-6.1565" y="-4.10433" width="409.844" height="408.378" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
7
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
8
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
9
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
10
|
+
<feOffset dx="-6.1565" dy="-4.10433"/>
|
|
11
|
+
<feGaussianBlur stdDeviation="3.21018"/>
|
|
12
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
13
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.996078 0 0 0 0 0.447059 0 0 0 0 0.447059 0 0 0 0.6 0"/>
|
|
14
|
+
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_54_1793"/>
|
|
15
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
16
|
+
<feOffset dx="3.22483" dy="3.81117"/>
|
|
17
|
+
<feGaussianBlur stdDeviation="2.52123"/>
|
|
18
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
19
|
+
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.862745 0 0 0 0 0.862745 0 0 0 1 0"/>
|
|
20
|
+
<feBlend mode="normal" in2="effect1_innerShadow_54_1793" result="effect2_innerShadow_54_1793"/>
|
|
21
|
+
</filter>
|
|
22
|
+
<linearGradient id="paint0_linear_54_1793" x1="365.091" y1="325.562" x2="54.1338" y2="64.0346" gradientUnits="userSpaceOnUse">
|
|
23
|
+
<stop stop-color="#FEB8B8"/>
|
|
24
|
+
<stop offset="1" stop-color="#FEB8B8"/>
|
|
25
|
+
</linearGradient>
|
|
26
|
+
</defs>
|
|
27
27
|
</svg>
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
<svg width="102" height="133" viewBox="0 0 102 133" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
2
|
-
<defs>
|
|
3
|
-
<filter id="filter0_d_afristream" x="-0.000475599" y="-9.2398e-05" width="102" height="132.723" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
4
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
5
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
6
|
-
<feOffset dx="2.34533" dy="1.46583"/>
|
|
7
|
-
<feGaussianBlur stdDeviation="1.52447"/>
|
|
8
|
-
<feComposite in2="hardAlpha" operator="out"/>
|
|
9
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.996 0 0 0 0 0.463 0 0 0 0 0.180 0 0 0 1 0"/>
|
|
10
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_afristream"/>
|
|
11
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_afristream" result="shape"/>
|
|
12
|
-
</filter>
|
|
13
|
-
<linearGradient id="paint0_linear_afristream" x1="22.1125" y1="42.0126" x2="81.3468" y2="114.623" gradientUnits="userSpaceOnUse">
|
|
14
|
-
<stop stop-color="#FFD6B3"/>
|
|
15
|
-
<stop offset="1" stop-color="#FFB366"/>
|
|
16
|
-
</linearGradient>
|
|
17
|
-
<linearGradient id="paint1_linear_afristream" x1="15.6097" y1="45.0064" x2="88.1121" y2="107.341" gradientUnits="userSpaceOnUse">
|
|
18
|
-
<stop stop-color="white"/>
|
|
19
|
-
<stop offset="1" stop-color="#FF8033"/>
|
|
20
|
-
</linearGradient>
|
|
21
|
-
</defs>
|
|
22
|
-
<g filter="url(#filter0_d_afristream)">
|
|
23
|
-
<mask id="path-1-inside-1_afristream" fill="white">
|
|
24
|
-
<path d="M47.5679 2.30598C47.9703 1.34496 49.3317 1.34494 49.7341 2.30598L63.2237 34.5662C82.5783 40.7342 96.5979 58.8565 96.5979 80.2555C96.5978 106.736 75.1308 128.202 48.6505 128.202C22.1705 128.202 0.704202 106.736 0.704116 80.2555C0.704116 58.8568 14.7231 40.7344 34.0773 34.5662L47.5679 2.30598Z"/>
|
|
25
|
-
</mask>
|
|
26
|
-
<path d="M47.5679 2.30598C47.9703 1.34496 49.3317 1.34494 49.7341 2.30598L63.2237 34.5662C82.5783 40.7342 96.5979 58.8565 96.5979 80.2555C96.5978 106.736 75.1308 128.202 48.6505 128.202C22.1705 128.202 0.704202 106.736 0.704116 80.2555C0.704116 58.8568 14.7231 40.7344 34.0773 34.5662L47.5679 2.30598Z" fill="url(#paint0_linear_afristream)"/>
|
|
27
|
-
<path d="M47.5679 2.30598L47.2971 2.1926L47.2971 2.19271L47.5679 2.30598ZM49.7341 2.30598L50.0049 2.19272L50.0049 2.19261L49.7341 2.30598ZM63.2237 34.5662L62.9529 34.6795L63.0053 34.8047L63.1346 34.8459L63.2237 34.5662ZM96.5979 80.2555H96.8914V80.2555H96.5979ZM48.6505 128.202L48.6505 128.495H48.6505V128.202ZM0.704116 80.2555H0.410536V80.2555H0.704116ZM34.0773 34.5662L34.1664 34.8459L34.2957 34.8047L34.3481 34.6795L34.0773 34.5662ZM47.5679 2.30598L47.8387 2.41936C48.1405 1.69859 49.1615 1.6986 49.4633 2.41935L49.7341 2.30598L50.0049 2.19261C49.5019 0.99128 47.8001 0.991326 47.2971 2.1926L47.5679 2.30598ZM49.7341 2.30598L49.4632 2.41924L62.9529 34.6795L63.2237 34.5662L63.4946 34.453L50.0049 2.19272L49.7341 2.30598ZM63.2237 34.5662L63.1346 34.8459C82.371 40.9762 96.3043 58.988 96.3043 80.2555H96.5979H96.8914C96.8914 58.725 82.7857 40.4921 63.3129 34.2865L63.2237 34.5662ZM96.5979 80.2555H96.3043C96.3042 106.574 74.9686 127.908 48.6505 127.908V128.202V128.495C75.2929 128.495 96.8914 106.898 96.8914 80.2555H96.5979ZM48.6505 128.202L48.6505 127.908C22.3326 127.908 0.997781 106.573 0.997696 80.2555H0.704116H0.410536C0.410622 106.898 22.0083 128.495 48.6505 128.495L48.6505 128.202ZM0.704116 80.2555H0.997696C0.997696 58.9883 14.9305 40.9765 34.1664 34.8459L34.0773 34.5662L33.9881 34.2865C14.5158 40.4924 0.410536 58.7253 0.410536 80.2555H0.704116ZM34.0773 34.5662L34.3481 34.6795L47.8388 2.41924L47.5679 2.30598L47.2971 2.19271L33.8064 34.453L34.0773 34.5662Z" fill="url(#paint1_linear_afristream)" mask="url(#path-1-inside-1_afristream)"/>
|
|
28
|
-
</g>
|
|
1
|
+
<svg width="102" height="133" viewBox="0 0 102 133" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
2
|
+
<defs>
|
|
3
|
+
<filter id="filter0_d_afristream" x="-0.000475599" y="-9.2398e-05" width="102" height="132.723" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
4
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
5
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
6
|
+
<feOffset dx="2.34533" dy="1.46583"/>
|
|
7
|
+
<feGaussianBlur stdDeviation="1.52447"/>
|
|
8
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
9
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.996 0 0 0 0 0.463 0 0 0 0 0.180 0 0 0 1 0"/>
|
|
10
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_afristream"/>
|
|
11
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_afristream" result="shape"/>
|
|
12
|
+
</filter>
|
|
13
|
+
<linearGradient id="paint0_linear_afristream" x1="22.1125" y1="42.0126" x2="81.3468" y2="114.623" gradientUnits="userSpaceOnUse">
|
|
14
|
+
<stop stop-color="#FFD6B3"/>
|
|
15
|
+
<stop offset="1" stop-color="#FFB366"/>
|
|
16
|
+
</linearGradient>
|
|
17
|
+
<linearGradient id="paint1_linear_afristream" x1="15.6097" y1="45.0064" x2="88.1121" y2="107.341" gradientUnits="userSpaceOnUse">
|
|
18
|
+
<stop stop-color="white"/>
|
|
19
|
+
<stop offset="1" stop-color="#FF8033"/>
|
|
20
|
+
</linearGradient>
|
|
21
|
+
</defs>
|
|
22
|
+
<g filter="url(#filter0_d_afristream)">
|
|
23
|
+
<mask id="path-1-inside-1_afristream" fill="white">
|
|
24
|
+
<path d="M47.5679 2.30598C47.9703 1.34496 49.3317 1.34494 49.7341 2.30598L63.2237 34.5662C82.5783 40.7342 96.5979 58.8565 96.5979 80.2555C96.5978 106.736 75.1308 128.202 48.6505 128.202C22.1705 128.202 0.704202 106.736 0.704116 80.2555C0.704116 58.8568 14.7231 40.7344 34.0773 34.5662L47.5679 2.30598Z"/>
|
|
25
|
+
</mask>
|
|
26
|
+
<path d="M47.5679 2.30598C47.9703 1.34496 49.3317 1.34494 49.7341 2.30598L63.2237 34.5662C82.5783 40.7342 96.5979 58.8565 96.5979 80.2555C96.5978 106.736 75.1308 128.202 48.6505 128.202C22.1705 128.202 0.704202 106.736 0.704116 80.2555C0.704116 58.8568 14.7231 40.7344 34.0773 34.5662L47.5679 2.30598Z" fill="url(#paint0_linear_afristream)"/>
|
|
27
|
+
<path d="M47.5679 2.30598L47.2971 2.1926L47.2971 2.19271L47.5679 2.30598ZM49.7341 2.30598L50.0049 2.19272L50.0049 2.19261L49.7341 2.30598ZM63.2237 34.5662L62.9529 34.6795L63.0053 34.8047L63.1346 34.8459L63.2237 34.5662ZM96.5979 80.2555H96.8914V80.2555H96.5979ZM48.6505 128.202L48.6505 128.495H48.6505V128.202ZM0.704116 80.2555H0.410536V80.2555H0.704116ZM34.0773 34.5662L34.1664 34.8459L34.2957 34.8047L34.3481 34.6795L34.0773 34.5662ZM47.5679 2.30598L47.8387 2.41936C48.1405 1.69859 49.1615 1.6986 49.4633 2.41935L49.7341 2.30598L50.0049 2.19261C49.5019 0.99128 47.8001 0.991326 47.2971 2.1926L47.5679 2.30598ZM49.7341 2.30598L49.4632 2.41924L62.9529 34.6795L63.2237 34.5662L63.4946 34.453L50.0049 2.19272L49.7341 2.30598ZM63.2237 34.5662L63.1346 34.8459C82.371 40.9762 96.3043 58.988 96.3043 80.2555H96.5979H96.8914C96.8914 58.725 82.7857 40.4921 63.3129 34.2865L63.2237 34.5662ZM96.5979 80.2555H96.3043C96.3042 106.574 74.9686 127.908 48.6505 127.908V128.202V128.495C75.2929 128.495 96.8914 106.898 96.8914 80.2555H96.5979ZM48.6505 128.202L48.6505 127.908C22.3326 127.908 0.997781 106.573 0.997696 80.2555H0.704116H0.410536C0.410622 106.898 22.0083 128.495 48.6505 128.495L48.6505 128.202ZM0.704116 80.2555H0.997696C0.997696 58.9883 14.9305 40.9765 34.1664 34.8459L34.0773 34.5662L33.9881 34.2865C14.5158 40.4924 0.410536 58.7253 0.410536 80.2555H0.704116ZM34.0773 34.5662L34.3481 34.6795L47.8388 2.41924L47.5679 2.30598L47.2971 2.19271L33.8064 34.453L34.0773 34.5662Z" fill="url(#paint1_linear_afristream)" mask="url(#path-1-inside-1_afristream)"/>
|
|
28
|
+
</g>
|
|
29
29
|
</svg>
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="102" height="133" viewBox="0 0 102 133" fill="none">
|
|
2
|
-
<g filter="url(#filter0_d_180_1652)">
|
|
3
|
-
<mask id="path-1-inside-1_180_1652" fill="white">
|
|
4
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M47.5 2.30294C47.9017 1.34301 49.2623 1.34305 49.6641 2.30294L63.1338 34.5168C82.4613 40.6758 96.4608 58.7729 96.4609 80.1418C96.4609 106.585 75.0249 128.021 48.582 128.021C22.1392 128.021 0.703125 106.585 0.703125 80.1418C0.703232 58.7733 14.7024 40.6761 34.0293 34.5168L47.5 2.30294Z"/>
|
|
5
|
-
</mask>
|
|
6
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M47.5 2.30294C47.9017 1.34301 49.2623 1.34305 49.6641 2.30294L63.1338 34.5168C82.4613 40.6758 96.4608 58.7729 96.4609 80.1418C96.4609 106.585 75.0249 128.021 48.582 128.021C22.1392 128.021 0.703125 106.585 0.703125 80.1418C0.703232 58.7733 14.7024 40.6761 34.0293 34.5168L47.5 2.30294Z" fill="url(#paint0_linear_180_1652)"/>
|
|
7
|
-
<path d="M47.5 2.30294L47.2296 2.18977L47.2295 2.18984L47.5 2.30294ZM49.6641 2.30294L49.9345 2.18985L49.9345 2.18976L49.6641 2.30294ZM63.1338 34.5168L62.8633 34.6299L62.9156 34.755L63.0448 34.7961L63.1338 34.5168ZM96.4609 80.1418H96.7541V80.1418H96.4609ZM48.582 128.021V128.314V128.314V128.021ZM0.703125 80.1418H0.40996V80.1418H0.703125ZM34.0293 34.5168L34.1183 34.7961L34.2475 34.755L34.2998 34.6299L34.0293 34.5168ZM47.5 2.30294L47.7704 2.41611C48.0717 1.6962 49.0923 1.69618 49.3936 2.41612L49.6641 2.30294L49.9345 2.18976C49.4324 0.989926 47.7317 0.989812 47.2296 2.18977L47.5 2.30294ZM49.6641 2.30294L49.3936 2.41603L62.8633 34.6299L63.1338 34.5168L63.4043 34.4037L49.9345 2.18985L49.6641 2.30294ZM63.1338 34.5168L63.0448 34.7961C82.2542 40.9175 96.1677 58.9042 96.1678 80.1418H96.4609H96.7541C96.754 58.6415 82.6683 40.4341 63.2228 34.2375L63.1338 34.5168ZM96.4609 80.1418H96.1678C96.1678 106.423 74.863 127.728 48.582 127.728V128.021V128.314C75.1868 128.314 96.7541 106.747 96.7541 80.1418H96.4609ZM48.582 128.021V127.728C22.3011 127.727 0.99629 106.423 0.99629 80.1418H0.703125H0.40996C0.40996 106.747 21.9773 128.314 48.582 128.314V128.021ZM0.703125 80.1418H0.99629C0.996396 58.9046 14.9094 40.9178 34.1183 34.7961L34.0293 34.5168L33.9403 34.2375C14.4953 40.4344 0.410069 58.642 0.40996 80.1418H0.703125ZM34.0293 34.5168L34.2998 34.6299L47.7705 2.41604L47.5 2.30294L47.2295 2.18984L33.7588 34.4037L34.0293 34.5168Z" fill="url(#paint1_linear_180_1652)" mask="url(#path-1-inside-1_180_1652)"/>
|
|
8
|
-
</g>
|
|
9
|
-
<defs>
|
|
10
|
-
<filter id="filter0_d_180_1652" x="-0.000469923" y="-8.09431e-05" width="101.856" height="132.536" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
11
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
12
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
13
|
-
<feOffset dx="2.34532" dy="1.46582"/>
|
|
14
|
-
<feGaussianBlur stdDeviation="1.52446"/>
|
|
15
|
-
<feComposite in2="hardAlpha" operator="out"/>
|
|
16
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0"/>
|
|
17
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_180_1652"/>
|
|
18
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_180_1652" result="shape"/>
|
|
19
|
-
</filter>
|
|
20
|
-
<linearGradient id="paint0_linear_180_1652" x1="22.0812" y1="41.9532" x2="81.2319" y2="114.461" gradientUnits="userSpaceOnUse">
|
|
21
|
-
<stop stop-color="#D00417"/>
|
|
22
|
-
<stop offset="1" stop-color="#57020A"/>
|
|
23
|
-
</linearGradient>
|
|
24
|
-
<linearGradient id="paint1_linear_180_1652" x1="15.5876" y1="44.9429" x2="87.9876" y2="107.189" gradientUnits="userSpaceOnUse">
|
|
25
|
-
<stop stop-color="#E98C94"/>
|
|
26
|
-
<stop offset="1" stop-color="#57020A"/>
|
|
27
|
-
</linearGradient>
|
|
28
|
-
</defs>
|
|
29
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="102" height="133" viewBox="0 0 102 133" fill="none">
|
|
2
|
+
<g filter="url(#filter0_d_180_1652)">
|
|
3
|
+
<mask id="path-1-inside-1_180_1652" fill="white">
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M47.5 2.30294C47.9017 1.34301 49.2623 1.34305 49.6641 2.30294L63.1338 34.5168C82.4613 40.6758 96.4608 58.7729 96.4609 80.1418C96.4609 106.585 75.0249 128.021 48.582 128.021C22.1392 128.021 0.703125 106.585 0.703125 80.1418C0.703232 58.7733 14.7024 40.6761 34.0293 34.5168L47.5 2.30294Z"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M47.5 2.30294C47.9017 1.34301 49.2623 1.34305 49.6641 2.30294L63.1338 34.5168C82.4613 40.6758 96.4608 58.7729 96.4609 80.1418C96.4609 106.585 75.0249 128.021 48.582 128.021C22.1392 128.021 0.703125 106.585 0.703125 80.1418C0.703232 58.7733 14.7024 40.6761 34.0293 34.5168L47.5 2.30294Z" fill="url(#paint0_linear_180_1652)"/>
|
|
7
|
+
<path d="M47.5 2.30294L47.2296 2.18977L47.2295 2.18984L47.5 2.30294ZM49.6641 2.30294L49.9345 2.18985L49.9345 2.18976L49.6641 2.30294ZM63.1338 34.5168L62.8633 34.6299L62.9156 34.755L63.0448 34.7961L63.1338 34.5168ZM96.4609 80.1418H96.7541V80.1418H96.4609ZM48.582 128.021V128.314V128.314V128.021ZM0.703125 80.1418H0.40996V80.1418H0.703125ZM34.0293 34.5168L34.1183 34.7961L34.2475 34.755L34.2998 34.6299L34.0293 34.5168ZM47.5 2.30294L47.7704 2.41611C48.0717 1.6962 49.0923 1.69618 49.3936 2.41612L49.6641 2.30294L49.9345 2.18976C49.4324 0.989926 47.7317 0.989812 47.2296 2.18977L47.5 2.30294ZM49.6641 2.30294L49.3936 2.41603L62.8633 34.6299L63.1338 34.5168L63.4043 34.4037L49.9345 2.18985L49.6641 2.30294ZM63.1338 34.5168L63.0448 34.7961C82.2542 40.9175 96.1677 58.9042 96.1678 80.1418H96.4609H96.7541C96.754 58.6415 82.6683 40.4341 63.2228 34.2375L63.1338 34.5168ZM96.4609 80.1418H96.1678C96.1678 106.423 74.863 127.728 48.582 127.728V128.021V128.314C75.1868 128.314 96.7541 106.747 96.7541 80.1418H96.4609ZM48.582 128.021V127.728C22.3011 127.727 0.99629 106.423 0.99629 80.1418H0.703125H0.40996C0.40996 106.747 21.9773 128.314 48.582 128.314V128.021ZM0.703125 80.1418H0.99629C0.996396 58.9046 14.9094 40.9178 34.1183 34.7961L34.0293 34.5168L33.9403 34.2375C14.4953 40.4344 0.410069 58.642 0.40996 80.1418H0.703125ZM34.0293 34.5168L34.2998 34.6299L47.7705 2.41604L47.5 2.30294L47.2295 2.18984L33.7588 34.4037L34.0293 34.5168Z" fill="url(#paint1_linear_180_1652)" mask="url(#path-1-inside-1_180_1652)"/>
|
|
8
|
+
</g>
|
|
9
|
+
<defs>
|
|
10
|
+
<filter id="filter0_d_180_1652" x="-0.000469923" y="-8.09431e-05" width="101.856" height="132.536" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
11
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
12
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
13
|
+
<feOffset dx="2.34532" dy="1.46582"/>
|
|
14
|
+
<feGaussianBlur stdDeviation="1.52446"/>
|
|
15
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
16
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0"/>
|
|
17
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_180_1652"/>
|
|
18
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_180_1652" result="shape"/>
|
|
19
|
+
</filter>
|
|
20
|
+
<linearGradient id="paint0_linear_180_1652" x1="22.0812" y1="41.9532" x2="81.2319" y2="114.461" gradientUnits="userSpaceOnUse">
|
|
21
|
+
<stop stop-color="#D00417"/>
|
|
22
|
+
<stop offset="1" stop-color="#57020A"/>
|
|
23
|
+
</linearGradient>
|
|
24
|
+
<linearGradient id="paint1_linear_180_1652" x1="15.5876" y1="44.9429" x2="87.9876" y2="107.189" gradientUnits="userSpaceOnUse">
|
|
25
|
+
<stop stop-color="#E98C94"/>
|
|
26
|
+
<stop offset="1" stop-color="#57020A"/>
|
|
27
|
+
</linearGradient>
|
|
28
|
+
</defs>
|
|
29
|
+
</svg>
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
<svg width="102" height="133" viewBox="0 0 102 133" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
2
|
-
<defs>
|
|
3
|
-
<filter id="filter0_d_totalgym" x="-0.000475599" y="-9.2398e-05" width="102" height="132.723" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
4
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
5
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
6
|
-
<feOffset dx="2.34533" dy="1.46583"/>
|
|
7
|
-
<feGaussianBlur stdDeviation="1.52447"/>
|
|
8
|
-
<feComposite in2="hardAlpha" operator="out"/>
|
|
9
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.478 0 0 0 0 0.478 0 0 0 0 0.478 0 0 0 1 0"/>
|
|
10
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_totalgym"/>
|
|
11
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_totalgym" result="shape"/>
|
|
12
|
-
</filter>
|
|
13
|
-
<linearGradient id="paint0_linear_totalgym" x1="22.1125" y1="42.0126" x2="81.3468" y2="114.623" gradientUnits="userSpaceOnUse">
|
|
14
|
-
<stop stop-color="#CCCCCC"/>
|
|
15
|
-
<stop offset="1" stop-color="#B3B3B3"/>
|
|
16
|
-
</linearGradient>
|
|
17
|
-
<linearGradient id="paint1_linear_totalgym" x1="15.6097" y1="45.0064" x2="88.1121" y2="107.341" gradientUnits="userSpaceOnUse">
|
|
18
|
-
<stop stop-color="white"/>
|
|
19
|
-
<stop offset="1" stop-color="#7A7A7A"/>
|
|
20
|
-
</linearGradient>
|
|
21
|
-
</defs>
|
|
22
|
-
<g filter="url(#filter0_d_totalgym)">
|
|
23
|
-
<mask id="path-1-inside-1_totalgym" fill="white">
|
|
24
|
-
<path d="M47.5679 2.30598C47.9703 1.34496 49.3317 1.34494 49.7341 2.30598L63.2237 34.5662C82.5783 40.7342 96.5979 58.8565 96.5979 80.2555C96.5978 106.736 75.1308 128.202 48.6505 128.202C22.1705 128.202 0.704202 106.736 0.704116 80.2555C0.704116 58.8568 14.7231 40.7344 34.0773 34.5662L47.5679 2.30598Z"/>
|
|
25
|
-
</mask>
|
|
26
|
-
<path d="M47.5679 2.30598C47.9703 1.34496 49.3317 1.34494 49.7341 2.30598L63.2237 34.5662C82.5783 40.7342 96.5979 58.8565 96.5979 80.2555C96.5978 106.736 75.1308 128.202 48.6505 128.202C22.1705 128.202 0.704202 106.736 0.704116 80.2555C0.704116 58.8568 14.7231 40.7344 34.0773 34.5662L47.5679 2.30598Z" fill="url(#paint0_linear_totalgym)"/>
|
|
27
|
-
<path d="M47.5679 2.30598L47.2971 2.1926L47.2971 2.19271L47.5679 2.30598ZM49.7341 2.30598L50.0049 2.19272L50.0049 2.19261L49.7341 2.30598ZM63.2237 34.5662L62.9529 34.6795L63.0053 34.8047L63.1346 34.8459L63.2237 34.5662ZM96.5979 80.2555H96.8914V80.2555H96.5979ZM48.6505 128.202L48.6505 128.495H48.6505V128.202ZM0.704116 80.2555H0.410536V80.2555H0.704116ZM34.0773 34.5662L34.1664 34.8459L34.2957 34.8047L34.3481 34.6795L34.0773 34.5662ZM47.5679 2.30598L47.8387 2.41936C48.1405 1.69859 49.1615 1.6986 49.4633 2.41935L49.7341 2.30598L50.0049 2.19261C49.5019 0.99128 47.8001 0.991326 47.2971 2.1926L47.5679 2.30598ZM49.7341 2.30598L49.4632 2.41924L62.9529 34.6795L63.2237 34.5662L63.4946 34.453L50.0049 2.19272L49.7341 2.30598ZM63.2237 34.5662L63.1346 34.8459C82.371 40.9762 96.3043 58.988 96.3043 80.2555H96.5979H96.8914C96.8914 58.725 82.7857 40.4921 63.3129 34.2865L63.2237 34.5662ZM96.5979 80.2555H96.3043C96.3042 106.574 74.9686 127.908 48.6505 127.908V128.202V128.495C75.2929 128.495 96.8914 106.898 96.8914 80.2555H96.5979ZM48.6505 128.202L48.6505 127.908C22.3326 127.908 0.997781 106.573 0.997696 80.2555H0.704116H0.410536C0.410622 106.898 22.0083 128.495 48.6505 128.495L48.6505 128.202ZM0.704116 80.2555H0.997696C0.997696 58.9883 14.9305 40.9765 34.1664 34.8459L34.0773 34.5662L33.9881 34.2865C14.5158 40.4924 0.410536 58.7253 0.410536 80.2555H0.704116ZM34.0773 34.5662L34.3481 34.6795L47.8388 2.41924L47.5679 2.30598L47.2971 2.19271L33.8064 34.453L34.0773 34.5662Z" fill="url(#paint1_linear_totalgym)" mask="url(#path-1-inside-1_totalgym)"/>
|
|
28
|
-
</g>
|
|
29
|
-
</svg>
|
|
1
|
+
<svg width="102" height="133" viewBox="0 0 102 133" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
2
|
+
<defs>
|
|
3
|
+
<filter id="filter0_d_totalgym" x="-0.000475599" y="-9.2398e-05" width="102" height="132.723" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
4
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
5
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
6
|
+
<feOffset dx="2.34533" dy="1.46583"/>
|
|
7
|
+
<feGaussianBlur stdDeviation="1.52447"/>
|
|
8
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
9
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.478 0 0 0 0 0.478 0 0 0 0 0.478 0 0 0 1 0"/>
|
|
10
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_totalgym"/>
|
|
11
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_totalgym" result="shape"/>
|
|
12
|
+
</filter>
|
|
13
|
+
<linearGradient id="paint0_linear_totalgym" x1="22.1125" y1="42.0126" x2="81.3468" y2="114.623" gradientUnits="userSpaceOnUse">
|
|
14
|
+
<stop stop-color="#CCCCCC"/>
|
|
15
|
+
<stop offset="1" stop-color="#B3B3B3"/>
|
|
16
|
+
</linearGradient>
|
|
17
|
+
<linearGradient id="paint1_linear_totalgym" x1="15.6097" y1="45.0064" x2="88.1121" y2="107.341" gradientUnits="userSpaceOnUse">
|
|
18
|
+
<stop stop-color="white"/>
|
|
19
|
+
<stop offset="1" stop-color="#7A7A7A"/>
|
|
20
|
+
</linearGradient>
|
|
21
|
+
</defs>
|
|
22
|
+
<g filter="url(#filter0_d_totalgym)">
|
|
23
|
+
<mask id="path-1-inside-1_totalgym" fill="white">
|
|
24
|
+
<path d="M47.5679 2.30598C47.9703 1.34496 49.3317 1.34494 49.7341 2.30598L63.2237 34.5662C82.5783 40.7342 96.5979 58.8565 96.5979 80.2555C96.5978 106.736 75.1308 128.202 48.6505 128.202C22.1705 128.202 0.704202 106.736 0.704116 80.2555C0.704116 58.8568 14.7231 40.7344 34.0773 34.5662L47.5679 2.30598Z"/>
|
|
25
|
+
</mask>
|
|
26
|
+
<path d="M47.5679 2.30598C47.9703 1.34496 49.3317 1.34494 49.7341 2.30598L63.2237 34.5662C82.5783 40.7342 96.5979 58.8565 96.5979 80.2555C96.5978 106.736 75.1308 128.202 48.6505 128.202C22.1705 128.202 0.704202 106.736 0.704116 80.2555C0.704116 58.8568 14.7231 40.7344 34.0773 34.5662L47.5679 2.30598Z" fill="url(#paint0_linear_totalgym)"/>
|
|
27
|
+
<path d="M47.5679 2.30598L47.2971 2.1926L47.2971 2.19271L47.5679 2.30598ZM49.7341 2.30598L50.0049 2.19272L50.0049 2.19261L49.7341 2.30598ZM63.2237 34.5662L62.9529 34.6795L63.0053 34.8047L63.1346 34.8459L63.2237 34.5662ZM96.5979 80.2555H96.8914V80.2555H96.5979ZM48.6505 128.202L48.6505 128.495H48.6505V128.202ZM0.704116 80.2555H0.410536V80.2555H0.704116ZM34.0773 34.5662L34.1664 34.8459L34.2957 34.8047L34.3481 34.6795L34.0773 34.5662ZM47.5679 2.30598L47.8387 2.41936C48.1405 1.69859 49.1615 1.6986 49.4633 2.41935L49.7341 2.30598L50.0049 2.19261C49.5019 0.99128 47.8001 0.991326 47.2971 2.1926L47.5679 2.30598ZM49.7341 2.30598L49.4632 2.41924L62.9529 34.6795L63.2237 34.5662L63.4946 34.453L50.0049 2.19272L49.7341 2.30598ZM63.2237 34.5662L63.1346 34.8459C82.371 40.9762 96.3043 58.988 96.3043 80.2555H96.5979H96.8914C96.8914 58.725 82.7857 40.4921 63.3129 34.2865L63.2237 34.5662ZM96.5979 80.2555H96.3043C96.3042 106.574 74.9686 127.908 48.6505 127.908V128.202V128.495C75.2929 128.495 96.8914 106.898 96.8914 80.2555H96.5979ZM48.6505 128.202L48.6505 127.908C22.3326 127.908 0.997781 106.573 0.997696 80.2555H0.704116H0.410536C0.410622 106.898 22.0083 128.495 48.6505 128.495L48.6505 128.202ZM0.704116 80.2555H0.997696C0.997696 58.9883 14.9305 40.9765 34.1664 34.8459L34.0773 34.5662L33.9881 34.2865C14.5158 40.4924 0.410536 58.7253 0.410536 80.2555H0.704116ZM34.0773 34.5662L34.3481 34.6795L47.8388 2.41924L47.5679 2.30598L47.2971 2.19271L33.8064 34.453L34.0773 34.5662Z" fill="url(#paint1_linear_totalgym)" mask="url(#path-1-inside-1_totalgym)"/>
|
|
28
|
+
</g>
|
|
29
|
+
</svg>
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
# Instrucciones para agregar la fuente Switzer
|
|
2
|
-
|
|
3
|
-
## 📁 Archivos necesarios
|
|
4
|
-
|
|
5
|
-
Copia los siguientes archivos de la fuente Switzer a esta carpeta:
|
|
6
|
-
|
|
7
|
-
### Archivos requeridos:
|
|
8
|
-
- `Switzer-Regular.woff2`
|
|
9
|
-
- `Switzer-Regular.woff`
|
|
10
|
-
- `Switzer-Medium.woff2`
|
|
11
|
-
- `Switzer-Medium.woff`
|
|
12
|
-
- `Switzer-Semibold.woff2`
|
|
13
|
-
- `Switzer-Semibold.woff`
|
|
14
|
-
- `Switzer-Bold.woff2`
|
|
15
|
-
- `Switzer-Bold.woff`
|
|
16
|
-
|
|
17
|
-
## 📝 Notas:
|
|
18
|
-
- Los archivos .woff2 son la versión comprimida (más eficiente)
|
|
19
|
-
- Los archivos .woff son la versión de respaldo para navegadores antiguos
|
|
20
|
-
- La configuración de @font-face ya está lista en `spin2win/styles/fonts.css`
|
|
21
|
-
|
|
22
|
-
## ✅ Una vez copiados los archivos:
|
|
1
|
+
# Instrucciones para agregar la fuente Switzer
|
|
2
|
+
|
|
3
|
+
## 📁 Archivos necesarios
|
|
4
|
+
|
|
5
|
+
Copia los siguientes archivos de la fuente Switzer a esta carpeta:
|
|
6
|
+
|
|
7
|
+
### Archivos requeridos:
|
|
8
|
+
- `Switzer-Regular.woff2`
|
|
9
|
+
- `Switzer-Regular.woff`
|
|
10
|
+
- `Switzer-Medium.woff2`
|
|
11
|
+
- `Switzer-Medium.woff`
|
|
12
|
+
- `Switzer-Semibold.woff2`
|
|
13
|
+
- `Switzer-Semibold.woff`
|
|
14
|
+
- `Switzer-Bold.woff2`
|
|
15
|
+
- `Switzer-Bold.woff`
|
|
16
|
+
|
|
17
|
+
## 📝 Notas:
|
|
18
|
+
- Los archivos .woff2 son la versión comprimida (más eficiente)
|
|
19
|
+
- Los archivos .woff son la versión de respaldo para navegadores antiguos
|
|
20
|
+
- La configuración de @font-face ya está lista en `spin2win/styles/fonts.css`
|
|
21
|
+
|
|
22
|
+
## ✅ Una vez copiados los archivos:
|
|
23
23
|
La fuente Switzer estará disponible automáticamente para el tema `womantoday`.
|