feat: init tailwindInit
|
@ -18,12 +18,14 @@
|
|||
"@mui/material": "^5.14.19",
|
||||
"@nextui-org/react": "^1.0.0-beta.10",
|
||||
"@stitches/react": "^1.2.8",
|
||||
"autoprefixer": "^10.4.16",
|
||||
"eslint-plugin-mobx": "^0.0.9",
|
||||
"framer-motion": "^10.16.12",
|
||||
"jdenticon": "^3.2.0",
|
||||
"luxon": "^3.4.4",
|
||||
"mobx": "^6.12.0",
|
||||
"mobx-react-lite": "^4.0.5",
|
||||
"postcss": "^8.4.32",
|
||||
"react": "^18.2.0",
|
||||
"react-aria": "^3.30.0",
|
||||
"react-datepicker": "^4.24.0",
|
||||
|
@ -34,6 +36,7 @@
|
|||
"react-stately": "^3.28.0",
|
||||
"reseter.css": "^2.0.0",
|
||||
"swagger-typescript-api": "^12.0.2",
|
||||
"tailwindcss": "^3.3.6",
|
||||
"viem": "^1.12.1",
|
||||
"wagmi": "1.4.2"
|
||||
},
|
||||
|
|
6
frontend/casino/postcss.config.js
Normal file
|
@ -0,0 +1,6 @@
|
|||
export default {
|
||||
plugins: {
|
||||
tailwindcss: {},
|
||||
autoprefixer: {},
|
||||
},
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
import { RouterProvider } from 'react-router-dom'
|
||||
|
||||
import { router } from './app/pages/router.tsx'
|
||||
import { Providers } from './providers.tsx'
|
||||
import {router} from "./app/pages/router.tsx";
|
||||
|
||||
export const App = function App() {
|
||||
return (
|
||||
|
|
7
frontend/casino/src/app/components/App/AppNav/AppNav.tsx
Normal file
|
@ -0,0 +1,7 @@
|
|||
export const AppNav = () => {
|
||||
return (
|
||||
<div style={{ height: 'max-content '}}>
|
||||
Header
|
||||
</div>
|
||||
);
|
||||
};
|
1
frontend/casino/src/app/components/App/AppNav/index.ts
Normal file
|
@ -0,0 +1 @@
|
|||
export * from './AppNav.tsx'
|
|
@ -1,7 +1,7 @@
|
|||
export const Footer = () => {
|
||||
return (
|
||||
<div>
|
||||
|
||||
<div style={{ height: 'max-content '}}>
|
||||
Footer
|
||||
</div>
|
||||
);
|
||||
};
|
1
frontend/casino/src/app/components/App/Footer/index.ts
Normal file
|
@ -0,0 +1 @@
|
|||
export * from './Footer.tsx'
|
7
frontend/casino/src/app/pages/MainPage/MainPage.tsx
Normal file
|
@ -0,0 +1,7 @@
|
|||
export const MainPage = () => {
|
||||
return (
|
||||
<h1 className="text-3xl font-bold underline">
|
||||
Hello world!
|
||||
</h1>
|
||||
);
|
||||
};
|
|
@ -0,0 +1,7 @@
|
|||
export const NotMainPage = () => {
|
||||
return (
|
||||
<h1 className="text-3xl font-bold underline">
|
||||
Not Main Page
|
||||
</h1>
|
||||
);
|
||||
};
|
|
@ -1,7 +1,17 @@
|
|||
import { createBrowserRouter, Navigate, type RouteObject } from 'react-router-dom'
|
||||
|
||||
import { AppLayout } from '../components/App'
|
||||
import {MainPage} from "./MainPage/MainPage.tsx";
|
||||
import {NotMainPage} from "./NotMainPage/NotMainPage.tsx";
|
||||
const routes: RouteObject[] = [
|
||||
{
|
||||
path: '/',
|
||||
element: <MainPage />,
|
||||
},
|
||||
{
|
||||
path: '/example',
|
||||
element: <NotMainPage />,
|
||||
},
|
||||
{
|
||||
path: '*',
|
||||
element: <Navigate replace to={'/'} />,
|
BIN
frontend/casino/src/assets/fonts/Inter-Regular.ttf
Normal file
BIN
frontend/casino/src/assets/fonts/Montserrat-Bold.ttf
Normal file
BIN
frontend/casino/src/assets/fonts/Montserrat-Regular.ttf
Normal file
BIN
frontend/casino/src/assets/fonts/Montserrat-SemiBold.ttf
Normal file
BIN
frontend/casino/src/assets/fonts/MuseoModerno-SemiBold.ttf
Normal file
BIN
frontend/casino/src/assets/fonts/Sora-Bold.ttf
Normal file
5
frontend/casino/src/assets/icons/Plus.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="100%" height="100%" viewBox="0 0 18 18" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;">
|
||||
<path d="M9,17L9,9M9,9L9,1M9,9L17,9M9,9L1,9" style="fill:none;fill-rule:nonzero;stroke:rgb(0,144,255);stroke-width:2px;"/>
|
||||
</svg>
|
After Width: | Height: | Size: 556 B |
1
frontend/casino/src/assets/icons/arrow-back-outline.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" class="ionicon" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="48" d="M244 400L100 256l144-144M120 256h292"/></svg>
|
After Width: | Height: | Size: 231 B |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" class="ionicon" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="48" d="M268 112l144 144-144 144M392 256H100"/></svg>
|
After Width: | Height: | Size: 231 B |
BIN
frontend/casino/src/assets/img/BearJedi.jpg
Normal file
After Width: | Height: | Size: 144 KiB |
BIN
frontend/casino/src/assets/img/Capibebra.gif
Normal file
After Width: | Height: | Size: 57 KiB |
3
frontend/casino/src/assets/img/CloseButton.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1.68629 24.3122L13 12.9985M13 12.9985L24.3137 1.6848M13 12.9985L24.3137 24.3122M13 12.9985L1.68629 1.6848" stroke="#232528" stroke-width="2" stroke-linecap="round"/>
|
||||
</svg>
|
After Width: | Height: | Size: 279 B |
5
frontend/casino/src/assets/img/DeBankImg.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M16.2943 12.8567C16.2943 15.2397 14.3336 17.1715 11.9149 17.1715H3.64258V14.295H11.9149C12.7211 14.295 13.3747 13.6511 13.3747 12.8567C13.3747 12.0624 12.7211 11.4185 11.9149 11.4185H8.99523V8.54203H11.9149C12.7211 8.54203 13.3747 7.8981 13.3747 7.10379C13.3747 6.30947 12.7211 5.66554 11.9149 5.66554H3.64258V2.78906H11.9149C14.3336 2.78906 16.2943 4.72083 16.2943 7.10379C16.2943 8.20886 15.8726 9.21691 15.1792 9.98027C15.8726 10.7436 16.2943 11.7517 16.2943 12.8567Z" fill="white"/>
|
||||
<path opacity="0.12" d="M3.64258 14.295H10.7476C9.23841 16.0417 6.83557 17.1715 4.12918 17.1715C3.96583 17.1715 3.80359 17.1674 3.64258 17.1592V14.295ZM12.236 11.4185H9.48184V8.54203H12.236C12.3445 9.00674 12.4015 9.48772 12.4015 9.98027C12.4015 10.4728 12.3445 10.9538 12.236 11.4185ZM10.7476 5.66554H3.64258V2.8013C3.80359 2.79318 3.96583 2.78906 4.12918 2.78906C6.83557 2.78906 9.23841 3.91888 10.7476 5.66554Z" fill="black"/>
|
||||
<path d="M3.64258 2.78906C7.67374 2.78906 10.9417 6.00867 10.9417 9.98027C10.9417 13.9519 7.67374 17.1715 3.64258 17.1715V14.295C6.06128 14.295 8.02202 12.3632 8.02202 9.98027C8.02202 7.59731 6.06128 5.66554 3.64258 5.66554V2.78906Z" fill="white"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
3
frontend/casino/src/assets/img/DiscordBlack.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg width="15" height="12" viewBox="0 0 15 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12.1849 1.62089C11.2924 1.21839 10.3357 0.920888 9.33529 0.751721C9.32638 0.750011 9.31716 0.751113 9.3089 0.754875C9.30064 0.758638 9.29376 0.764874 9.28921 0.772721C9.16671 0.987971 9.03021 1.26855 8.93454 1.49022C7.87351 1.33169 6.79482 1.33169 5.73379 1.49022C5.62723 1.24456 5.50707 1.00502 5.37387 0.772721C5.36936 0.764778 5.36253 0.7584 5.35429 0.754439C5.34606 0.750479 5.33681 0.749123 5.32779 0.750554C4.32796 0.919721 3.37129 1.21722 2.4782 1.6203C2.47052 1.62353 2.46401 1.62902 2.45954 1.63605C0.644205 4.3048 0.146621 6.90764 0.391038 9.47781C0.391718 9.4841 0.393672 9.49019 0.396781 9.49571C0.39989 9.50122 0.404089 9.50605 0.409122 9.50989C1.46868 10.2813 2.65048 10.8689 3.90504 11.2482C3.91378 11.2509 3.92314 11.2509 3.93188 11.2482C3.94062 11.2455 3.94834 11.2402 3.95404 11.2331C4.224 10.872 4.46323 10.489 4.66921 10.088C4.67206 10.0825 4.67371 10.0765 4.67404 10.0703C4.67436 10.0641 4.67336 10.0579 4.67109 10.0522C4.66882 10.0464 4.66534 10.0412 4.66089 10.0369C4.65644 10.0326 4.65112 10.0294 4.64529 10.0273C4.26846 9.8854 3.90334 9.71415 3.55329 9.51514C3.547 9.51155 3.5417 9.50645 3.53786 9.50031C3.53403 9.49416 3.53178 9.48716 3.53132 9.47994C3.53085 9.47271 3.53219 9.46548 3.53521 9.4589C3.53823 9.45231 3.54284 9.44658 3.54862 9.44222C3.62212 9.38797 3.69562 9.33139 3.76562 9.27481C3.77192 9.26972 3.77951 9.26648 3.78755 9.26545C3.79558 9.26442 3.80374 9.26564 3.81112 9.26897C6.10187 10.298 8.58279 10.298 10.8467 9.26897C10.8541 9.26544 10.8624 9.26406 10.8705 9.26499C10.8786 9.26592 10.8864 9.26911 10.8928 9.27422C10.9628 9.33139 11.0357 9.38797 11.1098 9.44222C11.1156 9.44649 11.1203 9.45215 11.1234 9.45867C11.1265 9.4652 11.128 9.4724 11.1276 9.47962C11.1273 9.48685 11.1252 9.49387 11.1214 9.50007C11.1177 9.50627 11.1125 9.51144 11.1063 9.51514C10.7575 9.7158 10.3946 9.88556 10.0137 10.0267C10.0079 10.0288 10.0025 10.0322 9.99807 10.0365C9.99362 10.0409 9.99014 10.0461 9.98788 10.0519C9.98562 10.0577 9.98462 10.0639 9.98495 10.0702C9.98528 10.0764 9.98693 10.0824 9.98979 10.088C10.1998 10.4887 10.4401 10.8702 10.7044 11.2325C10.7099 11.2399 10.7175 11.2455 10.7263 11.2484C10.7351 11.2513 10.7445 11.2515 10.7534 11.2488C12.0101 10.8706 13.1938 10.2827 14.2545 9.50989C14.2597 9.50627 14.2641 9.50159 14.2673 9.49616C14.2705 9.49072 14.2725 9.48466 14.2732 9.47839C14.5649 6.50689 13.7844 3.92505 12.203 1.63722C12.1991 1.62979 12.1927 1.62399 12.1849 1.62089ZM5.01162 7.91272C4.32212 7.91272 3.75337 7.28914 3.75337 6.52439C3.75337 5.75905 4.31104 5.13605 5.01162 5.13605C5.71746 5.13605 6.28096 5.7643 6.26987 6.52439C6.26987 7.28972 5.71221 7.91272 5.01162 7.91272ZM9.66371 7.91272C8.97362 7.91272 8.40546 7.28914 8.40546 6.52439C8.40546 5.75905 8.96254 5.13605 9.66371 5.13605C10.3695 5.13605 10.933 5.7643 10.922 6.52439C10.922 7.28972 10.3701 7.91272 9.66371 7.91272Z" fill="#232528"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.9 KiB |
10
frontend/casino/src/assets/img/DiscordImg.svg
Normal file
|
@ -0,0 +1,10 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_7790_7382)">
|
||||
<path d="M14.8519 5.62089C13.9594 5.21839 13.0027 4.92089 12.0023 4.75172C11.9934 4.75001 11.9841 4.75111 11.9759 4.75488C11.9676 4.75864 11.9608 4.76487 11.9562 4.77272C11.8337 4.98797 11.6972 5.26855 11.6015 5.49022C10.5405 5.33169 9.46181 5.33169 8.40078 5.49022C8.29423 5.24456 8.17407 5.00502 8.04086 4.77272C8.03635 4.76478 8.02952 4.7584 8.02128 4.75444C8.01305 4.75048 8.00381 4.74912 7.99478 4.75055C6.99495 4.91972 6.03828 5.21722 5.1452 5.6203C5.13751 5.62353 5.131 5.62902 5.12653 5.63605C3.3112 8.3048 2.81361 10.9076 3.05803 13.4778C3.05871 13.4841 3.06066 13.4902 3.06377 13.4957C3.06688 13.5012 3.07108 13.506 3.07611 13.5099C4.13568 14.2813 5.31748 14.8689 6.57203 15.2482C6.58078 15.2509 6.59013 15.2509 6.59887 15.2482C6.60761 15.2455 6.61534 15.2402 6.62103 15.2331C6.89099 14.872 7.13022 14.489 7.3362 14.088C7.33906 14.0825 7.3407 14.0765 7.34103 14.0703C7.34135 14.0641 7.34035 14.0579 7.33808 14.0522C7.33581 14.0464 7.33234 14.0412 7.32788 14.0369C7.32343 14.0326 7.31811 14.0294 7.31228 14.0273C6.93545 13.8854 6.57033 13.7141 6.22028 13.5151C6.21399 13.5115 6.20869 13.5065 6.20486 13.5003C6.20102 13.4942 6.19877 13.4872 6.19831 13.4799C6.19785 13.4727 6.19918 13.4655 6.20221 13.4589C6.20523 13.4523 6.20983 13.4466 6.21561 13.4422C6.28911 13.388 6.36261 13.3314 6.43261 13.2748C6.43891 13.2697 6.4465 13.2665 6.45454 13.2654C6.46257 13.2644 6.47073 13.2656 6.47811 13.269C8.76886 14.298 11.2498 14.298 13.5137 13.269C13.5211 13.2654 13.5293 13.2641 13.5375 13.265C13.5456 13.2659 13.5534 13.2691 13.5598 13.2742C13.6298 13.3314 13.7027 13.388 13.7768 13.4422C13.7826 13.4465 13.7873 13.4521 13.7904 13.4587C13.7935 13.4652 13.795 13.4724 13.7946 13.4796C13.7943 13.4868 13.7922 13.4939 13.7884 13.5001C13.7847 13.5063 13.7795 13.5114 13.7733 13.5151C13.4244 13.7158 13.0616 13.8856 12.6807 14.0267C12.6748 14.0288 12.6695 14.0322 12.6651 14.0365C12.6606 14.0409 12.6571 14.0461 12.6549 14.0519C12.6526 14.0577 12.6516 14.0639 12.6519 14.0702C12.6523 14.0764 12.6539 14.0824 12.6568 14.088C12.8668 14.4887 13.1071 14.8702 13.3714 15.2325C13.3769 15.2399 13.3845 15.2455 13.3933 15.2484C13.4021 15.2513 13.4115 15.2515 13.4204 15.2488C14.6771 14.8706 15.8608 14.2827 16.9215 13.5099C16.9267 13.5063 16.931 13.5016 16.9343 13.4962C16.9375 13.4907 16.9395 13.4847 16.9402 13.4784C17.2319 10.5069 16.4514 7.92505 14.8699 5.63722C14.8661 5.62979 14.8597 5.62399 14.8519 5.62089ZM7.67861 11.9127C6.98911 11.9127 6.42036 11.2891 6.42036 10.5244C6.42036 9.75905 6.97803 9.13605 7.67861 9.13605C8.38445 9.13605 8.94795 9.7643 8.93686 10.5244C8.93686 11.2897 8.3792 11.9127 7.67861 11.9127ZM12.3307 11.9127C11.6406 11.9127 11.0724 11.2891 11.0724 10.5244C11.0724 9.75905 11.6295 9.13605 12.3307 9.13605C13.0365 9.13605 13.6 9.7643 13.5889 10.5244C13.5889 11.2897 13.0371 11.9127 12.3307 11.9127Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_7790_7382">
|
||||
<rect width="14" height="14" fill="white" transform="translate(3 3)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 3 KiB |
4
frontend/casino/src/assets/img/Email.svg
Normal file
|
@ -0,0 +1,4 @@
|
|||
<svg width="16" height="12" viewBox="0 0 16 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.274414 0.987305L6.4248 5.59961C7.3584 6.2998 8.6416 6.2998 9.5752 5.59961L15.7246 0.987305C15.8994 1.28418 16 1.63086 16 2V10C16 10.5732 15.7588 11.0908 15.3721 11.4551C15.0137 11.793 14.5312 12 14 12H2C0.895508 12 0 11.1045 0 10V2C0 1.63086 0.0996094 1.28418 0.274414 0.987305Z" fill="white"/>
|
||||
<path d="M1.24023 0.149414C1.47461 0.0527344 1.73145 0 2 0H14C14.2686 0 14.5254 0.0537109 14.7598 0.149414L8.8252 4.59961C8.33594 4.9668 7.66406 4.9668 7.1748 4.59961L1.24023 0.149414Z" fill="white"/>
|
||||
</svg>
|
After Width: | Height: | Size: 611 B |
19
frontend/casino/src/assets/img/FMMakerLogoFooter.svg
Normal file
|
@ -0,0 +1,19 @@
|
|||
<svg width="635" height="74" viewBox="0 0 635 74" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M96.3261 58V30.392C96.3261 28.2267 96.8487 26.2667 97.8941 24.512C98.9767 22.7573 100.414 21.376 102.206 20.368C104.035 19.3227 106.07 18.8 108.31 18.8H122.926V26.64H109.486C108.441 26.64 107.545 27.0133 106.798 27.76C106.089 28.5067 105.734 29.4213 105.734 30.504V36.16H121.022V43.944H105.734V58H96.3261Z" fill="#04E762"/>
|
||||
<path d="M130.634 58V29.272H139.37V58H130.634ZM135.002 26.024C133.621 26.024 132.426 25.52 131.418 24.512C130.41 23.504 129.906 22.3093 129.906 20.928C129.906 19.5467 130.41 18.352 131.418 17.344C132.426 16.2987 133.621 15.776 135.002 15.776C136.383 15.776 137.578 16.2987 138.586 17.344C139.594 18.352 140.098 19.5467 140.098 20.928C140.098 22.3093 139.594 23.504 138.586 24.512C137.578 25.52 136.383 26.024 135.002 26.024Z" fill="#04E762"/>
|
||||
<path d="M148.528 58V17.12H157.208V58H148.528Z" fill="#04E762"/>
|
||||
<path d="M181.429 58C178.181 58 175.325 57.4027 172.861 56.208C170.397 54.976 168.475 53.296 167.093 51.168C165.749 49.0027 165.077 46.5013 165.077 43.664C165.077 40.528 165.731 37.84 167.037 35.6C168.344 33.36 170.08 31.6427 172.245 30.448C174.448 29.216 176.875 28.6 179.525 28.6C182.549 28.6 185.069 29.2347 187.085 30.504C189.139 31.7733 190.688 33.5093 191.733 35.712C192.779 37.8773 193.301 40.36 193.301 43.16C193.301 43.6453 193.264 44.224 193.189 44.896C193.152 45.5307 193.096 46.0347 193.021 46.408H174.205C174.429 47.3787 174.859 48.2 175.493 48.872C176.128 49.544 176.931 50.048 177.901 50.384C178.872 50.6827 179.955 50.832 181.149 50.832H189.941V58H181.429ZM173.981 40.976H184.901C184.827 40.3787 184.715 39.8 184.565 39.24C184.416 38.68 184.173 38.1947 183.837 37.784C183.539 37.336 183.184 36.9627 182.773 36.664C182.363 36.328 181.877 36.0667 181.317 35.88C180.795 35.6933 180.197 35.6 179.525 35.6C178.667 35.6 177.901 35.7493 177.229 36.048C176.557 36.3467 175.997 36.7573 175.549 37.28C175.101 37.7653 174.747 38.344 174.485 39.016C174.261 39.6507 174.093 40.304 173.981 40.976Z" fill="#04E762"/>
|
||||
<path d="M228.935 58.672C226.658 58.672 224.567 58.168 222.663 57.16C220.796 56.152 219.303 54.752 218.183 52.96C217.1 51.168 216.559 49.04 216.559 46.576V29.496C216.559 28.8987 216.41 28.3573 216.111 27.872C215.812 27.3867 215.42 26.9947 214.935 26.696C214.45 26.3973 213.908 26.248 213.311 26.248C212.714 26.248 212.172 26.3973 211.687 26.696C211.202 26.9947 210.81 27.3867 210.511 27.872C210.25 28.3573 210.119 28.8987 210.119 29.496V58H200.935V30.168C200.935 27.816 201.458 25.744 202.503 23.952C203.586 22.16 205.06 20.7413 206.927 19.696C208.831 18.6507 210.959 18.128 213.311 18.128C215.7 18.128 217.828 18.6507 219.695 19.696C221.562 20.7413 223.036 22.16 224.119 23.952C225.202 25.744 225.743 27.816 225.743 30.168V47.248C225.743 47.8827 225.892 48.4427 226.191 48.928C226.49 49.4133 226.863 49.8053 227.311 50.104C227.796 50.3653 228.319 50.496 228.879 50.496C229.476 50.496 230.018 50.3653 230.503 50.104C231.026 49.8053 231.436 49.4133 231.735 48.928C232.034 48.4427 232.183 47.8827 232.183 47.248V30.168C232.183 27.816 232.724 25.744 233.807 23.952C234.89 22.16 236.364 20.7413 238.231 19.696C240.135 18.6507 242.244 18.128 244.559 18.128C246.948 18.128 249.058 18.6507 250.887 19.696C252.754 20.7413 254.228 22.16 255.311 23.952C256.394 25.744 256.935 27.816 256.935 30.168V58H247.751V29.44C247.751 28.8427 247.602 28.32 247.303 27.872C247.042 27.3867 246.668 26.9947 246.183 26.696C245.698 26.3973 245.156 26.248 244.559 26.248C243.999 26.248 243.458 26.3973 242.935 26.696C242.45 26.9947 242.058 27.3867 241.759 27.872C241.46 28.32 241.311 28.8427 241.311 29.44V46.576C241.311 49.04 240.751 51.168 239.631 52.96C238.511 54.752 237.018 56.152 235.151 57.16C233.284 58.168 231.212 58.672 228.935 58.672Z" fill="#04E762"/>
|
||||
<path d="M277.565 58.672C275.027 58.672 272.787 58.0187 270.845 56.712C268.904 55.4053 267.392 53.6507 266.309 51.448C265.227 49.208 264.685 46.688 264.685 43.888C264.685 40.976 265.32 38.3813 266.589 36.104C267.859 33.7893 269.651 31.96 271.965 30.616C274.317 29.272 277.08 28.6 280.253 28.6C283.464 28.6 286.189 29.272 288.429 30.616C290.707 31.9227 292.443 33.7333 293.637 36.048C294.869 38.3253 295.485 40.8827 295.485 43.72V58H286.973V53.408H286.749C286.227 54.416 285.555 55.3307 284.733 56.152C283.912 56.936 282.904 57.552 281.709 58C280.552 58.448 279.171 58.672 277.565 58.672ZM280.141 51.168C281.448 51.168 282.587 50.8507 283.557 50.216C284.565 49.544 285.331 48.6293 285.853 47.472C286.376 46.3147 286.637 45.0267 286.637 43.608C286.637 42.2267 286.376 40.976 285.853 39.856C285.331 38.736 284.565 37.8587 283.557 37.224C282.587 36.552 281.448 36.216 280.141 36.216C278.797 36.216 277.621 36.552 276.613 37.224C275.605 37.8587 274.84 38.736 274.317 39.856C273.795 40.976 273.533 42.2267 273.533 43.608C273.533 45.0267 273.795 46.3147 274.317 47.472C274.84 48.6293 275.605 49.544 276.613 50.216C277.621 50.8507 278.797 51.168 280.141 51.168Z" fill="#04E762"/>
|
||||
<path d="M304.48 58V37.728C304.48 35.1147 305.227 33.0613 306.72 31.568C308.214 30.0747 310.286 29.328 312.936 29.328H321.28V36.384H315.064C314.542 36.384 314.094 36.5707 313.72 36.944C313.347 37.28 313.16 37.728 313.16 38.288V58H304.48Z" fill="#04E762"/>
|
||||
<path d="M327.957 58V17.12H336.637V40.136H340.445L346.997 29.272H356.685L348.957 41.256C351.197 42.1893 352.933 43.6267 354.165 45.568C355.435 47.472 356.069 49.712 356.069 52.288V58H347.333V52.288C347.333 51.2427 347.072 50.3093 346.549 49.488C346.064 48.6293 345.411 47.9573 344.589 47.472C343.768 46.9867 342.835 46.744 341.789 46.744H336.637V58H327.957Z" fill="#04E762"/>
|
||||
<path d="M379.453 58C376.205 58 373.349 57.4027 370.885 56.208C368.421 54.976 366.498 53.296 365.117 51.168C363.773 49.0027 363.101 46.5013 363.101 43.664C363.101 40.528 363.754 37.84 365.061 35.6C366.368 33.36 368.104 31.6427 370.269 30.448C372.472 29.216 374.898 28.6 377.549 28.6C380.573 28.6 383.093 29.2347 385.109 30.504C387.162 31.7733 388.712 33.5093 389.757 35.712C390.802 37.8773 391.325 40.36 391.325 43.16C391.325 43.6453 391.288 44.224 391.213 44.896C391.176 45.5307 391.12 46.0347 391.045 46.408H372.229C372.453 47.3787 372.882 48.2 373.517 48.872C374.152 49.544 374.954 50.048 375.925 50.384C376.896 50.6827 377.978 50.832 379.173 50.832H387.965V58H379.453ZM372.005 40.976H382.925C382.85 40.3787 382.738 39.8 382.589 39.24C382.44 38.68 382.197 38.1947 381.861 37.784C381.562 37.336 381.208 36.9627 380.797 36.664C380.386 36.328 379.901 36.0667 379.341 35.88C378.818 35.6933 378.221 35.6 377.549 35.6C376.69 35.6 375.925 35.7493 375.253 36.048C374.581 36.3467 374.021 36.7573 373.573 37.28C373.125 37.7653 372.77 38.344 372.509 39.016C372.285 39.6507 372.117 40.304 372.005 40.976Z" fill="#04E762"/>
|
||||
<path d="M409.71 58C407.06 58 404.988 57.2533 403.494 55.76C402.001 54.2293 401.254 52.176 401.254 49.6V22.272H409.99V49.096C409.99 49.544 410.14 49.936 410.438 50.272C410.774 50.5707 411.166 50.72 411.614 50.72H417.886V58H409.71ZM396.55 36.384V29.272H417.886V36.384H396.55Z" fill="#04E762"/>
|
||||
<path d="M471.386 58.672C469.109 58.672 467.019 58.168 465.115 57.16C463.248 56.152 461.754 54.752 460.634 52.96C459.552 51.168 459.01 49.04 459.01 46.576V29.496C459.01 28.8987 458.861 28.3573 458.562 27.872C458.264 27.3867 457.872 26.9947 457.386 26.696C456.901 26.3973 456.36 26.248 455.762 26.248C455.165 26.248 454.624 26.3973 454.138 26.696C453.653 26.9947 453.261 27.3867 452.962 27.872C452.701 28.3573 452.57 28.8987 452.57 29.496V58H443.386V30.168C443.386 27.816 443.909 25.744 444.954 23.952C446.037 22.16 447.512 20.7413 449.378 19.696C451.282 18.6507 453.41 18.128 455.762 18.128C458.152 18.128 460.28 18.6507 462.146 19.696C464.013 20.7413 465.488 22.16 466.57 23.952C467.653 25.744 468.194 27.816 468.194 30.168V47.248C468.194 47.8827 468.344 48.4427 468.642 48.928C468.941 49.4133 469.314 49.8053 469.762 50.104C470.248 50.3653 470.77 50.496 471.33 50.496C471.928 50.496 472.469 50.3653 472.954 50.104C473.477 49.8053 473.888 49.4133 474.186 48.928C474.485 48.4427 474.634 47.8827 474.634 47.248V30.168C474.634 27.816 475.176 25.744 476.258 23.952C477.341 22.16 478.816 20.7413 480.682 19.696C482.586 18.6507 484.696 18.128 487.01 18.128C489.4 18.128 491.509 18.6507 493.339 19.696C495.205 20.7413 496.68 22.16 497.762 23.952C498.845 25.744 499.386 27.816 499.386 30.168V58H490.202V29.44C490.202 28.8427 490.053 28.32 489.754 27.872C489.493 27.3867 489.12 26.9947 488.634 26.696C488.149 26.3973 487.608 26.248 487.01 26.248C486.45 26.248 485.909 26.3973 485.386 26.696C484.901 26.9947 484.509 27.3867 484.21 27.872C483.912 28.32 483.762 28.8427 483.762 29.44V46.576C483.762 49.04 483.202 51.168 482.082 52.96C480.962 54.752 479.469 56.152 477.602 57.16C475.736 58.168 473.664 58.672 471.386 58.672Z" fill="#04E762"/>
|
||||
<path d="M520.017 58.672C517.478 58.672 515.238 58.0187 513.297 56.712C511.355 55.4053 509.844 53.6507 508.761 51.448C507.678 49.208 507.137 46.688 507.137 43.888C507.137 40.976 507.771 38.3813 509.041 36.104C510.31 33.7893 512.102 31.96 514.417 30.616C516.769 29.272 519.532 28.6 522.705 28.6C525.916 28.6 528.641 29.272 530.881 30.616C533.158 31.9227 534.894 33.7333 536.089 36.048C537.321 38.3253 537.937 40.8827 537.937 43.72V58H529.425V53.408H529.201C528.678 54.416 528.006 55.3307 527.185 56.152C526.363 56.936 525.355 57.552 524.161 58C523.003 58.448 521.622 58.672 520.017 58.672ZM522.593 51.168C523.9 51.168 525.038 50.8507 526.009 50.216C527.017 49.544 527.782 48.6293 528.305 47.472C528.827 46.3147 529.089 45.0267 529.089 43.608C529.089 42.2267 528.827 40.976 528.305 39.856C527.782 38.736 527.017 37.8587 526.009 37.224C525.038 36.552 523.9 36.216 522.593 36.216C521.249 36.216 520.073 36.552 519.065 37.224C518.057 37.8587 517.291 38.736 516.769 39.856C516.246 40.976 515.985 42.2267 515.985 43.608C515.985 45.0267 516.246 46.3147 516.769 47.472C517.291 48.6293 518.057 49.544 519.065 50.216C520.073 50.8507 521.249 51.168 522.593 51.168Z" fill="#04E762"/>
|
||||
<path d="M547.156 58V17.12H555.836V40.136H559.644L566.196 29.272H575.884L568.156 41.256C570.396 42.1893 572.132 43.6267 573.364 45.568C574.633 47.472 575.268 49.712 575.268 52.288V58H566.532V52.288C566.532 51.2427 566.27 50.3093 565.748 49.488C565.262 48.6293 564.609 47.9573 563.788 47.472C562.966 46.9867 562.033 46.744 560.988 46.744H555.836V58H547.156Z" fill="#04E762"/>
|
||||
<path d="M598.651 58C595.403 58 592.547 57.4027 590.083 56.208C587.619 54.976 585.697 53.296 584.315 51.168C582.971 49.0027 582.299 46.5013 582.299 43.664C582.299 40.528 582.953 37.84 584.259 35.6C585.566 33.36 587.302 31.6427 589.467 30.448C591.67 29.216 594.097 28.6 596.747 28.6C599.771 28.6 602.291 29.2347 604.307 30.504C606.361 31.7733 607.91 33.5093 608.955 35.712C610.001 37.8773 610.523 40.36 610.523 43.16C610.523 43.6453 610.486 44.224 610.411 44.896C610.374 45.5307 610.318 46.0347 610.243 46.408H591.427C591.651 47.3787 592.081 48.2 592.715 48.872C593.35 49.544 594.153 50.048 595.123 50.384C596.094 50.6827 597.177 50.832 598.371 50.832H607.163V58H598.651ZM591.203 40.976H602.123C602.049 40.3787 601.937 39.8 601.787 39.24C601.638 38.68 601.395 38.1947 601.059 37.784C600.761 37.336 600.406 36.9627 599.995 36.664C599.585 36.328 599.099 36.0667 598.539 35.88C598.017 35.6933 597.419 35.6 596.747 35.6C595.889 35.6 595.123 35.7493 594.451 36.048C593.779 36.3467 593.219 36.7573 592.771 37.28C592.323 37.7653 591.969 38.344 591.707 39.016C591.483 39.6507 591.315 40.304 591.203 40.976Z" fill="#04E762"/>
|
||||
<path d="M618.157 58V37.728C618.157 35.1147 618.903 33.0613 620.397 31.568C621.89 30.0747 623.962 29.328 626.613 29.328H634.957V36.384H628.741C628.218 36.384 627.77 36.5707 627.397 36.944C627.023 37.28 626.837 37.728 626.837 38.288V58H618.157Z" fill="#04E762"/>
|
||||
<path d="M76.9346 46.0397L69.8082 6.39126C69.4861 4.59718 68.5515 2.97447 67.1674 1.80637C65.7834 0.638266 64.0377 -0.00105078 62.2353 1.29641e-06H14.7648C12.9609 -0.000108353 11.2143 0.640447 9.82955 1.80992C8.44483 2.97939 7.50994 4.60355 7.18795 6.39905L0.0654498 46.0397L0.1386 46.0514C0.0924001 46.2851 0 46.4954 0 46.7368V66.2105C0 70.5064 3.45345 74 7.7 74H69.3C73.5466 74 77 70.5064 77 66.2105V46.7368C77 46.4915 76.9076 46.2851 76.8652 46.0514L76.9346 46.0397ZM14.7648 7.78947H62.2391L68.5415 42.8421H8.4623L14.7648 7.78947ZM7.7 66.2105V50.6316H69.3L69.3077 66.2105H7.7Z" fill="#04E762"/>
|
||||
<path d="M57.75 54.5263H65.45V62.3158H57.75V54.5263ZM46.2 54.5263H53.9V62.3158H46.2V54.5263Z" fill="#04E762"/>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
19
frontend/casino/src/assets/img/FMMakerLogoHeader.svg
Normal file
|
@ -0,0 +1,19 @@
|
|||
<svg width="635" height="74" viewBox="0 0 635 74" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M96.3261 58V30.392C96.3261 28.2267 96.8487 26.2667 97.8941 24.512C98.9767 22.7573 100.414 21.376 102.206 20.368C104.035 19.3227 106.07 18.8 108.31 18.8H122.926V26.64H109.486C108.441 26.64 107.545 27.0133 106.798 27.76C106.089 28.5067 105.734 29.4213 105.734 30.504V36.16H121.022V43.944H105.734V58H96.3261Z" fill="#0090FF"/>
|
||||
<path d="M130.634 58V29.272H139.37V58H130.634ZM135.002 26.024C133.621 26.024 132.426 25.52 131.418 24.512C130.41 23.504 129.906 22.3093 129.906 20.928C129.906 19.5467 130.41 18.352 131.418 17.344C132.426 16.2987 133.621 15.776 135.002 15.776C136.383 15.776 137.578 16.2987 138.586 17.344C139.594 18.352 140.098 19.5467 140.098 20.928C140.098 22.3093 139.594 23.504 138.586 24.512C137.578 25.52 136.383 26.024 135.002 26.024Z" fill="#0090FF"/>
|
||||
<path d="M148.528 58V17.12H157.208V58H148.528Z" fill="#0090FF"/>
|
||||
<path d="M181.429 58C178.181 58 175.325 57.4027 172.861 56.208C170.397 54.976 168.475 53.296 167.093 51.168C165.749 49.0027 165.077 46.5013 165.077 43.664C165.077 40.528 165.731 37.84 167.037 35.6C168.344 33.36 170.08 31.6427 172.245 30.448C174.448 29.216 176.875 28.6 179.525 28.6C182.549 28.6 185.069 29.2347 187.085 30.504C189.139 31.7733 190.688 33.5093 191.733 35.712C192.779 37.8773 193.301 40.36 193.301 43.16C193.301 43.6453 193.264 44.224 193.189 44.896C193.152 45.5307 193.096 46.0347 193.021 46.408H174.205C174.429 47.3787 174.859 48.2 175.493 48.872C176.128 49.544 176.931 50.048 177.901 50.384C178.872 50.6827 179.955 50.832 181.149 50.832H189.941V58H181.429ZM173.981 40.976H184.901C184.827 40.3787 184.715 39.8 184.565 39.24C184.416 38.68 184.173 38.1947 183.837 37.784C183.539 37.336 183.184 36.9627 182.773 36.664C182.363 36.328 181.877 36.0667 181.317 35.88C180.795 35.6933 180.197 35.6 179.525 35.6C178.667 35.6 177.901 35.7493 177.229 36.048C176.557 36.3467 175.997 36.7573 175.549 37.28C175.101 37.7653 174.747 38.344 174.485 39.016C174.261 39.6507 174.093 40.304 173.981 40.976Z" fill="#0090FF"/>
|
||||
<path d="M228.935 58.672C226.658 58.672 224.567 58.168 222.663 57.16C220.796 56.152 219.303 54.752 218.183 52.96C217.1 51.168 216.559 49.04 216.559 46.576V29.496C216.559 28.8987 216.41 28.3573 216.111 27.872C215.812 27.3867 215.42 26.9947 214.935 26.696C214.45 26.3973 213.908 26.248 213.311 26.248C212.714 26.248 212.172 26.3973 211.687 26.696C211.202 26.9947 210.81 27.3867 210.511 27.872C210.25 28.3573 210.119 28.8987 210.119 29.496V58H200.935V30.168C200.935 27.816 201.458 25.744 202.503 23.952C203.586 22.16 205.06 20.7413 206.927 19.696C208.831 18.6507 210.959 18.128 213.311 18.128C215.7 18.128 217.828 18.6507 219.695 19.696C221.562 20.7413 223.036 22.16 224.119 23.952C225.202 25.744 225.743 27.816 225.743 30.168V47.248C225.743 47.8827 225.892 48.4427 226.191 48.928C226.49 49.4133 226.863 49.8053 227.311 50.104C227.796 50.3653 228.319 50.496 228.879 50.496C229.476 50.496 230.018 50.3653 230.503 50.104C231.026 49.8053 231.436 49.4133 231.735 48.928C232.034 48.4427 232.183 47.8827 232.183 47.248V30.168C232.183 27.816 232.724 25.744 233.807 23.952C234.89 22.16 236.364 20.7413 238.231 19.696C240.135 18.6507 242.244 18.128 244.559 18.128C246.948 18.128 249.058 18.6507 250.887 19.696C252.754 20.7413 254.228 22.16 255.311 23.952C256.394 25.744 256.935 27.816 256.935 30.168V58H247.751V29.44C247.751 28.8427 247.602 28.32 247.303 27.872C247.042 27.3867 246.668 26.9947 246.183 26.696C245.698 26.3973 245.156 26.248 244.559 26.248C243.999 26.248 243.458 26.3973 242.935 26.696C242.45 26.9947 242.058 27.3867 241.759 27.872C241.46 28.32 241.311 28.8427 241.311 29.44V46.576C241.311 49.04 240.751 51.168 239.631 52.96C238.511 54.752 237.018 56.152 235.151 57.16C233.284 58.168 231.212 58.672 228.935 58.672Z" fill="#0090FF"/>
|
||||
<path d="M277.565 58.672C275.027 58.672 272.787 58.0187 270.845 56.712C268.904 55.4053 267.392 53.6507 266.309 51.448C265.227 49.208 264.685 46.688 264.685 43.888C264.685 40.976 265.32 38.3813 266.589 36.104C267.859 33.7893 269.651 31.96 271.965 30.616C274.317 29.272 277.08 28.6 280.253 28.6C283.464 28.6 286.189 29.272 288.429 30.616C290.707 31.9227 292.443 33.7333 293.637 36.048C294.869 38.3253 295.485 40.8827 295.485 43.72V58H286.973V53.408H286.749C286.227 54.416 285.555 55.3307 284.733 56.152C283.912 56.936 282.904 57.552 281.709 58C280.552 58.448 279.171 58.672 277.565 58.672ZM280.141 51.168C281.448 51.168 282.587 50.8507 283.557 50.216C284.565 49.544 285.331 48.6293 285.853 47.472C286.376 46.3147 286.637 45.0267 286.637 43.608C286.637 42.2267 286.376 40.976 285.853 39.856C285.331 38.736 284.565 37.8587 283.557 37.224C282.587 36.552 281.448 36.216 280.141 36.216C278.797 36.216 277.621 36.552 276.613 37.224C275.605 37.8587 274.84 38.736 274.317 39.856C273.795 40.976 273.533 42.2267 273.533 43.608C273.533 45.0267 273.795 46.3147 274.317 47.472C274.84 48.6293 275.605 49.544 276.613 50.216C277.621 50.8507 278.797 51.168 280.141 51.168Z" fill="#0090FF"/>
|
||||
<path d="M304.48 58V37.728C304.48 35.1147 305.227 33.0613 306.72 31.568C308.214 30.0747 310.286 29.328 312.936 29.328H321.28V36.384H315.064C314.542 36.384 314.094 36.5707 313.72 36.944C313.347 37.28 313.16 37.728 313.16 38.288V58H304.48Z" fill="#0090FF"/>
|
||||
<path d="M327.957 58V17.12H336.637V40.136H340.445L346.997 29.272H356.685L348.957 41.256C351.197 42.1893 352.933 43.6267 354.165 45.568C355.435 47.472 356.069 49.712 356.069 52.288V58H347.333V52.288C347.333 51.2427 347.072 50.3093 346.549 49.488C346.064 48.6293 345.411 47.9573 344.589 47.472C343.768 46.9867 342.835 46.744 341.789 46.744H336.637V58H327.957Z" fill="#0090FF"/>
|
||||
<path d="M379.453 58C376.205 58 373.349 57.4027 370.885 56.208C368.421 54.976 366.498 53.296 365.117 51.168C363.773 49.0027 363.101 46.5013 363.101 43.664C363.101 40.528 363.754 37.84 365.061 35.6C366.368 33.36 368.104 31.6427 370.269 30.448C372.472 29.216 374.898 28.6 377.549 28.6C380.573 28.6 383.093 29.2347 385.109 30.504C387.162 31.7733 388.712 33.5093 389.757 35.712C390.802 37.8773 391.325 40.36 391.325 43.16C391.325 43.6453 391.288 44.224 391.213 44.896C391.176 45.5307 391.12 46.0347 391.045 46.408H372.229C372.453 47.3787 372.882 48.2 373.517 48.872C374.152 49.544 374.954 50.048 375.925 50.384C376.896 50.6827 377.978 50.832 379.173 50.832H387.965V58H379.453ZM372.005 40.976H382.925C382.85 40.3787 382.738 39.8 382.589 39.24C382.44 38.68 382.197 38.1947 381.861 37.784C381.562 37.336 381.208 36.9627 380.797 36.664C380.386 36.328 379.901 36.0667 379.341 35.88C378.818 35.6933 378.221 35.6 377.549 35.6C376.69 35.6 375.925 35.7493 375.253 36.048C374.581 36.3467 374.021 36.7573 373.573 37.28C373.125 37.7653 372.77 38.344 372.509 39.016C372.285 39.6507 372.117 40.304 372.005 40.976Z" fill="#0090FF"/>
|
||||
<path d="M409.71 58C407.06 58 404.988 57.2533 403.494 55.76C402.001 54.2293 401.254 52.176 401.254 49.6V22.272H409.99V49.096C409.99 49.544 410.14 49.936 410.438 50.272C410.774 50.5707 411.166 50.72 411.614 50.72H417.886V58H409.71ZM396.55 36.384V29.272H417.886V36.384H396.55Z" fill="#0090FF"/>
|
||||
<path d="M471.386 58.672C469.109 58.672 467.019 58.168 465.115 57.16C463.248 56.152 461.754 54.752 460.634 52.96C459.552 51.168 459.01 49.04 459.01 46.576V29.496C459.01 28.8987 458.861 28.3573 458.562 27.872C458.264 27.3867 457.872 26.9947 457.386 26.696C456.901 26.3973 456.36 26.248 455.762 26.248C455.165 26.248 454.624 26.3973 454.138 26.696C453.653 26.9947 453.261 27.3867 452.962 27.872C452.701 28.3573 452.57 28.8987 452.57 29.496V58H443.386V30.168C443.386 27.816 443.909 25.744 444.954 23.952C446.037 22.16 447.512 20.7413 449.378 19.696C451.282 18.6507 453.41 18.128 455.762 18.128C458.152 18.128 460.28 18.6507 462.146 19.696C464.013 20.7413 465.488 22.16 466.57 23.952C467.653 25.744 468.194 27.816 468.194 30.168V47.248C468.194 47.8827 468.344 48.4427 468.642 48.928C468.941 49.4133 469.314 49.8053 469.762 50.104C470.248 50.3653 470.77 50.496 471.33 50.496C471.928 50.496 472.469 50.3653 472.954 50.104C473.477 49.8053 473.888 49.4133 474.186 48.928C474.485 48.4427 474.634 47.8827 474.634 47.248V30.168C474.634 27.816 475.176 25.744 476.258 23.952C477.341 22.16 478.816 20.7413 480.682 19.696C482.586 18.6507 484.696 18.128 487.01 18.128C489.4 18.128 491.509 18.6507 493.339 19.696C495.205 20.7413 496.68 22.16 497.762 23.952C498.845 25.744 499.386 27.816 499.386 30.168V58H490.202V29.44C490.202 28.8427 490.053 28.32 489.754 27.872C489.493 27.3867 489.12 26.9947 488.634 26.696C488.149 26.3973 487.608 26.248 487.01 26.248C486.45 26.248 485.909 26.3973 485.386 26.696C484.901 26.9947 484.509 27.3867 484.21 27.872C483.912 28.32 483.762 28.8427 483.762 29.44V46.576C483.762 49.04 483.202 51.168 482.082 52.96C480.962 54.752 479.469 56.152 477.602 57.16C475.736 58.168 473.664 58.672 471.386 58.672Z" fill="#0090FF"/>
|
||||
<path d="M520.017 58.672C517.478 58.672 515.238 58.0187 513.297 56.712C511.355 55.4053 509.844 53.6507 508.761 51.448C507.678 49.208 507.137 46.688 507.137 43.888C507.137 40.976 507.771 38.3813 509.041 36.104C510.31 33.7893 512.102 31.96 514.417 30.616C516.769 29.272 519.532 28.6 522.705 28.6C525.916 28.6 528.641 29.272 530.881 30.616C533.158 31.9227 534.894 33.7333 536.089 36.048C537.321 38.3253 537.937 40.8827 537.937 43.72V58H529.425V53.408H529.201C528.678 54.416 528.006 55.3307 527.185 56.152C526.363 56.936 525.355 57.552 524.161 58C523.003 58.448 521.622 58.672 520.017 58.672ZM522.593 51.168C523.9 51.168 525.038 50.8507 526.009 50.216C527.017 49.544 527.782 48.6293 528.305 47.472C528.827 46.3147 529.089 45.0267 529.089 43.608C529.089 42.2267 528.827 40.976 528.305 39.856C527.782 38.736 527.017 37.8587 526.009 37.224C525.038 36.552 523.9 36.216 522.593 36.216C521.249 36.216 520.073 36.552 519.065 37.224C518.057 37.8587 517.291 38.736 516.769 39.856C516.246 40.976 515.985 42.2267 515.985 43.608C515.985 45.0267 516.246 46.3147 516.769 47.472C517.291 48.6293 518.057 49.544 519.065 50.216C520.073 50.8507 521.249 51.168 522.593 51.168Z" fill="#0090FF"/>
|
||||
<path d="M547.156 58V17.12H555.836V40.136H559.644L566.196 29.272H575.884L568.156 41.256C570.396 42.1893 572.132 43.6267 573.364 45.568C574.633 47.472 575.268 49.712 575.268 52.288V58H566.532V52.288C566.532 51.2427 566.27 50.3093 565.748 49.488C565.262 48.6293 564.609 47.9573 563.788 47.472C562.966 46.9867 562.033 46.744 560.988 46.744H555.836V58H547.156Z" fill="#0090FF"/>
|
||||
<path d="M598.651 58C595.403 58 592.547 57.4027 590.083 56.208C587.619 54.976 585.697 53.296 584.315 51.168C582.971 49.0027 582.299 46.5013 582.299 43.664C582.299 40.528 582.953 37.84 584.259 35.6C585.566 33.36 587.302 31.6427 589.467 30.448C591.67 29.216 594.097 28.6 596.747 28.6C599.771 28.6 602.291 29.2347 604.307 30.504C606.361 31.7733 607.91 33.5093 608.955 35.712C610.001 37.8773 610.523 40.36 610.523 43.16C610.523 43.6453 610.486 44.224 610.411 44.896C610.374 45.5307 610.318 46.0347 610.243 46.408H591.427C591.651 47.3787 592.081 48.2 592.715 48.872C593.35 49.544 594.153 50.048 595.123 50.384C596.094 50.6827 597.177 50.832 598.371 50.832H607.163V58H598.651ZM591.203 40.976H602.123C602.049 40.3787 601.937 39.8 601.787 39.24C601.638 38.68 601.395 38.1947 601.059 37.784C600.761 37.336 600.406 36.9627 599.995 36.664C599.585 36.328 599.099 36.0667 598.539 35.88C598.017 35.6933 597.419 35.6 596.747 35.6C595.889 35.6 595.123 35.7493 594.451 36.048C593.779 36.3467 593.219 36.7573 592.771 37.28C592.323 37.7653 591.969 38.344 591.707 39.016C591.483 39.6507 591.315 40.304 591.203 40.976Z" fill="#0090FF"/>
|
||||
<path d="M618.157 58V37.728C618.157 35.1147 618.903 33.0613 620.397 31.568C621.89 30.0747 623.962 29.328 626.613 29.328H634.957V36.384H628.741C628.218 36.384 627.77 36.5707 627.397 36.944C627.023 37.28 626.837 37.728 626.837 38.288V58H618.157Z" fill="#0090FF"/>
|
||||
<path d="M76.9346 46.0397L69.8082 6.39126C69.4861 4.59718 68.5515 2.97447 67.1674 1.80637C65.7834 0.638266 64.0377 -0.00105078 62.2353 1.29641e-06H14.7648C12.9609 -0.000108353 11.2143 0.640447 9.82955 1.80992C8.44483 2.97939 7.50994 4.60355 7.18795 6.39905L0.0654498 46.0397L0.1386 46.0514C0.0924001 46.2851 0 46.4954 0 46.7368V66.2105C0 70.5064 3.45345 74 7.7 74H69.3C73.5466 74 77 70.5064 77 66.2105V46.7368C77 46.4915 76.9076 46.2851 76.8652 46.0514L76.9346 46.0397ZM14.7648 7.78947H62.2391L68.5415 42.8421H8.4623L14.7648 7.78947ZM7.7 66.2105V50.6316H69.3L69.3077 66.2105H7.7Z" fill="#0090FF"/>
|
||||
<path d="M57.75 54.5263H65.45V62.3158H57.75V54.5263ZM46.2 54.5263H53.9V62.3158H46.2V54.5263Z" fill="#0090FF"/>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
4
frontend/casino/src/assets/img/FWicon.svg
Normal file
|
@ -0,0 +1,4 @@
|
|||
<svg width="48" height="40" viewBox="0 0 48 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M47.999 6.66667C47.999 2.98477 45.135 1.61177e-06 41.602 1.45154e-06L11.5662 0L-0.000976562 12L0.0216138 20L0.0216132 33.3333C0.0216131 37.0152 2.88564 40 6.4186 40H41.602C45.135 40 47.999 37.0152 47.999 33.3333V6.66667ZM6.4186 15H14.4577V6.69629L19.2126 6.66666L41.602 6.66666V33.3333H6.4186L6.4186 15Z" fill="#0090FF"/>
|
||||
<path d="M29.1293 20C29.1293 18.0363 30.6636 16.4444 32.5563 16.4444H42.4088C44.3014 16.4444 45.8357 18.0363 45.8357 20C45.8357 21.9637 44.3014 23.5556 42.4088 23.5556H32.5563C30.6636 23.5556 29.1293 21.9637 29.1293 20Z" fill="#0090FF"/>
|
||||
</svg>
|
After Width: | Height: | Size: 712 B |
4
frontend/casino/src/assets/img/Instagram.svg
Normal file
|
@ -0,0 +1,4 @@
|
|||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.99967 0.583008C5.25667 0.583008 5.03851 0.590008 4.35426 0.621508C3.67176 0.653008 3.20451 0.761508 2.79617 0.919591C2.36828 1.08085 1.9807 1.33347 1.66042 1.65984C1.33383 1.98027 1.08101 2.36806 0.919591 2.79617C0.761508 3.20451 0.652424 3.67117 0.621508 4.35484C0.590591 5.03851 0.583008 5.25667 0.583008 6.99967C0.583008 8.74209 0.590008 8.96026 0.621508 9.64567C0.653008 10.3282 0.761508 10.7948 0.919591 11.2032C1.08077 11.6313 1.3334 12.0191 1.65984 12.3395C1.98057 12.6657 2.36854 12.9182 2.79676 13.0792C3.20509 13.2378 3.67176 13.3469 4.35426 13.3778C5.03851 13.4088 5.25667 13.4163 6.99967 13.4163C8.74267 13.4163 8.96084 13.4093 9.64567 13.3778C10.3282 13.3463 10.7948 13.2378 11.2032 13.0792C11.6308 12.9182 12.0187 12.6662 12.3395 12.3395C12.6658 12.0188 12.9182 11.6308 13.0792 11.2026C13.2378 10.7943 13.3469 10.3276 13.3778 9.64509C13.4088 8.96084 13.4163 8.74267 13.4163 6.99967C13.4163 5.25726 13.4093 5.03909 13.3778 4.35367C13.3463 3.67118 13.2378 3.20451 13.0792 2.79617C12.9182 2.36801 12.6662 1.98067 12.3395 1.66042C12.0187 1.33376 11.6308 1.08117 11.2032 0.919591C10.7948 0.761508 10.3282 0.652424 9.64451 0.621508C8.96084 0.590591 8.74267 0.583008 6.99967 0.583008ZM6.99967 1.73917C8.71292 1.73917 8.91593 1.74559 9.59259 1.77651C10.2185 1.80509 10.558 1.90951 10.7843 1.99759C11.063 2.10038 11.3151 2.26422 11.5223 2.47709C11.7468 2.70167 11.8851 2.91576 12.0018 3.21501C12.0898 3.44134 12.1943 3.78084 12.2228 4.40676C12.2538 5.08342 12.2602 5.28642 12.2602 6.99967C12.2602 8.71292 12.2538 8.91593 12.2228 9.59259C12.1943 10.2185 12.0898 10.558 12.0018 10.7843C11.8991 11.0626 11.7352 11.3152 11.5223 11.5223C11.2977 11.7468 11.0836 11.8851 10.7843 12.0018C10.558 12.0898 10.2185 12.1943 9.59259 12.2228C8.91593 12.2538 8.71351 12.2602 6.99967 12.2602C5.28584 12.2602 5.08342 12.2538 4.40676 12.2228C3.78084 12.1943 3.44134 12.0898 3.21501 12.0018C2.93676 11.8991 2.68417 11.7352 2.47709 11.5223C2.26417 11.3152 2.10026 11.0626 1.99759 10.7843C1.90951 10.558 1.80509 10.2185 1.77651 9.59259C1.74559 8.91593 1.73917 8.71292 1.73917 6.99967C1.73917 5.28642 1.74559 5.08342 1.77651 4.40676C1.80509 3.78084 1.90951 3.44134 1.99759 3.21501C2.10036 2.93634 2.2642 2.6842 2.47709 2.47709C2.70167 2.25251 2.91576 2.11426 3.21501 1.99759C3.44134 1.90951 3.78084 1.80509 4.40676 1.77651C5.08342 1.74559 5.28642 1.73917 6.99967 1.73917ZM7.62205 9.05051C7.14748 9.19401 6.63781 9.16829 6.18009 8.97776C5.88774 8.85653 5.6259 8.67199 5.41343 8.43743C5.20096 8.20286 5.04313 7.92411 4.95132 7.62123C4.85951 7.31835 4.836 6.99888 4.88248 6.68582C4.92895 6.37276 5.04426 6.0739 5.2201 5.81075C5.39594 5.54761 5.62794 5.32672 5.89939 5.164C6.17085 5.00128 6.475 4.90077 6.78996 4.8697C7.10493 4.83863 7.42286 4.87779 7.72087 4.98434C8.01888 5.0909 8.28956 5.2622 8.51342 5.48592C8.86459 5.83591 9.08336 6.29696 9.13237 6.79032C9.18137 7.28368 9.05757 7.77876 8.78211 8.19098C8.50665 8.60321 8.09662 8.90702 7.62205 9.05051ZM5.73751 3.95255C5.33736 4.1183 4.97377 4.36124 4.66751 4.66751C4.04898 5.28604 3.70149 6.12494 3.70149 6.99967C3.70149 7.87441 4.04898 8.71331 4.66751 9.33184C5.28604 9.95037 6.12494 10.2979 6.99967 10.2979C7.87441 10.2979 8.71331 9.95037 9.33184 9.33184C9.63811 9.02558 9.88105 8.66199 10.0468 8.26183C10.2125 7.86168 10.2979 7.4328 10.2979 6.99967C10.2979 6.56655 10.2125 6.13767 10.0468 5.73751C9.88105 5.33736 9.63811 4.97377 9.33184 4.66751C9.02558 4.36124 8.66199 4.1183 8.26183 3.95255C7.86168 3.7868 7.4328 3.70149 6.99967 3.70149C6.56655 3.70149 6.13767 3.7868 5.73751 3.95255Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.59259 1.77651C8.91593 1.74559 8.71292 1.73917 6.99967 1.73917C5.28642 1.73917 5.08342 1.74559 4.40676 1.77651C3.78084 1.80509 3.44134 1.90951 3.21501 1.99759C2.91576 2.11426 2.70167 2.25251 2.47709 2.47709C2.2642 2.6842 2.10036 2.93634 1.99759 3.21501C1.90951 3.44134 1.80509 3.78084 1.77651 4.40676C1.74559 5.08342 1.73917 5.28642 1.73917 6.99967C1.73917 8.71292 1.74559 8.91593 1.77651 9.59259C1.80509 10.2185 1.90951 10.558 1.99759 10.7843C2.10026 11.0626 2.26417 11.3152 2.47709 11.5223C2.68417 11.7352 2.93676 11.8991 3.21501 12.0018C3.44134 12.0898 3.78084 12.1943 4.40676 12.2228C5.08342 12.2538 5.28584 12.2602 6.99967 12.2602C8.71351 12.2602 8.91593 12.2538 9.59259 12.2228C10.2185 12.1943 10.558 12.0898 10.7843 12.0018C11.0836 11.8851 11.2977 11.7468 11.5223 11.5223C11.7352 11.3152 11.8991 11.0626 12.0018 10.7843C12.0898 10.558 12.1943 10.2185 12.2228 9.59259C12.2538 8.91593 12.2602 8.71292 12.2602 6.99967C12.2602 5.28642 12.2538 5.08342 12.2228 4.40676C12.1943 3.78084 12.0898 3.44134 12.0018 3.21501C11.8851 2.91576 11.7468 2.70167 11.5223 2.47709C11.3151 2.26422 11.063 2.10038 10.7843 1.99759C10.558 1.90951 10.2185 1.80509 9.59259 1.77651ZM5.73751 3.95255C5.33736 4.1183 4.97377 4.36124 4.66751 4.66751C4.04898 5.28604 3.70149 6.12494 3.70149 6.99967C3.70149 7.87441 4.04898 8.71331 4.66751 9.33184C5.28604 9.95037 6.12494 10.2979 6.99967 10.2979C7.87441 10.2979 8.71331 9.95037 9.33184 9.33184C9.63811 9.02558 9.88105 8.66199 10.0468 8.26183C10.2125 7.86168 10.2979 7.4328 10.2979 6.99967C10.2979 6.56655 10.2125 6.13767 10.0468 5.73751C9.88105 5.33736 9.63811 4.97377 9.33184 4.66751C9.02558 4.36124 8.66199 4.1183 8.26183 3.95255C7.86168 3.7868 7.4328 3.70149 6.99967 3.70149C6.56655 3.70149 6.13767 3.7868 5.73751 3.95255ZM11.208 3.93949C11.166 4.03499 11.1052 4.12108 11.0293 4.19267C10.8817 4.33191 10.6857 4.40814 10.4828 4.40518C10.2799 4.40222 10.0862 4.32031 9.94268 4.17683C9.7992 4.03335 9.71729 3.83961 9.71433 3.63672C9.71138 3.43383 9.78761 3.23777 9.92684 3.09017C9.99844 3.01428 10.0845 2.95352 10.18 2.9115C10.2755 2.86947 10.3785 2.84704 10.4828 2.84551C10.5871 2.84399 10.6907 2.86342 10.7874 2.90264C10.8841 2.94187 10.9719 3.00009 11.0457 3.07386C11.1194 3.14764 11.1777 3.23547 11.2169 3.33215C11.2561 3.42883 11.2755 3.53239 11.274 3.63672C11.2725 3.74104 11.25 3.844 11.208 3.93949Z" fill="white"/>
|
||||
</svg>
|
After Width: | Height: | Size: 5.9 KiB |
10
frontend/casino/src/assets/img/InstagramImg.svg
Normal file
|
@ -0,0 +1,10 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_7790_7413)">
|
||||
<path d="M9.99999 4.26129C11.8691 4.26129 12.0905 4.2684 12.8286 4.30208C13.5111 4.33323 13.8817 4.44726 14.1284 4.5431C14.4551 4.67008 14.6883 4.8218 14.9333 5.06674C15.1782 5.31167 15.3299 5.54489 15.4569 5.8716C15.5527 6.11829 15.6668 6.48893 15.6979 7.1714C15.7316 7.90955 15.7387 8.13092 15.7387 10C15.7387 11.8691 15.7316 12.0905 15.6979 12.8286C15.6668 13.5111 15.5527 13.8817 15.4569 14.1284C15.3299 14.4551 15.1782 14.6884 14.9333 14.9333C14.6883 15.1782 14.4551 15.3299 14.1284 15.4569C13.8817 15.5528 13.5111 15.6668 12.8286 15.698C12.0906 15.7316 11.8692 15.7387 9.99999 15.7387C8.13079 15.7387 7.90941 15.7316 7.1714 15.698C6.48891 15.6668 6.11826 15.5528 5.8716 15.4569C5.54486 15.3299 5.31165 15.1782 5.06671 14.9333C4.82177 14.6884 4.67005 14.4551 4.5431 14.1284C4.44723 13.8817 4.3332 13.5111 4.30205 12.8286C4.26837 12.0905 4.26126 11.8691 4.26126 10C4.26126 8.13092 4.26837 7.90955 4.30205 7.17143C4.3332 6.48893 4.44723 6.11829 4.5431 5.8716C4.67005 5.54489 4.82177 5.31167 5.06671 5.06674C5.31165 4.8218 5.54486 4.67008 5.8716 4.5431C6.11826 4.44726 6.48891 4.33323 7.17137 4.30208C7.90952 4.2684 8.1309 4.26129 9.99999 4.26129ZM9.99999 3C8.09889 3 7.86053 3.00806 7.11391 3.04212C6.36881 3.07614 5.85999 3.19445 5.41471 3.3675C4.95439 3.54639 4.56402 3.78575 4.17487 4.1749C3.78572 4.56405 3.54637 4.95442 3.36748 5.41473C3.19442 5.86001 3.07611 6.36884 3.0421 7.11394C3.00803 7.86053 3 8.09891 3 10C3 11.9011 3.00803 12.1395 3.0421 12.8861C3.07611 13.6312 3.19442 14.14 3.36748 14.5853C3.54637 15.0456 3.78572 15.436 4.17487 15.8251C4.56402 16.2143 4.95439 16.4536 5.41471 16.6325C5.85999 16.8056 6.36881 16.9239 7.11391 16.9579C7.86053 16.992 8.09889 17 9.99999 17C11.9011 17 12.1395 16.992 12.8861 16.9579C13.6312 16.9239 14.14 16.8056 14.5853 16.6325C15.0456 16.4536 15.436 16.2143 15.8251 15.8251C16.2143 15.436 16.4536 15.0456 16.6325 14.5853C16.8055 14.14 16.9239 13.6312 16.9579 12.8861C16.9919 12.1395 17 11.9011 17 10C17 8.09891 16.9919 7.86053 16.9579 7.11394C16.9239 6.36884 16.8055 5.86001 16.6325 5.41473C16.4536 4.95442 16.2143 4.56405 15.8251 4.1749C15.436 3.78575 15.0456 3.54639 14.5853 3.3675C14.14 3.19445 13.6312 3.07614 12.8861 3.04212C12.1395 3.00806 11.9011 3 9.99999 3ZM9.99999 6.40541C8.01475 6.40541 6.40538 8.01478 6.40538 10C6.40538 11.9853 8.01475 13.5946 9.99999 13.5946C11.9852 13.5946 13.5946 11.9853 13.5946 10C13.5946 8.01478 11.9852 6.40541 9.99999 6.40541ZM9.99999 12.3334C8.71133 12.3334 7.66664 11.2887 7.66664 10C7.66664 8.71136 8.71133 7.66667 9.99999 7.66667C11.2886 7.66667 12.3333 8.71136 12.3333 10C12.3333 11.2887 11.2886 12.3334 9.99999 12.3334ZM14.5766 6.26339C14.5766 6.72731 14.2005 7.10341 13.7366 7.10341C13.2727 7.10341 12.8966 6.72731 12.8966 6.26339C12.8966 5.79947 13.2727 5.4234 13.7366 5.4234C14.2005 5.4234 14.5766 5.79947 14.5766 6.26339Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_7790_7413">
|
||||
<rect width="14" height="14" fill="white" transform="translate(3 3)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 3 KiB |
3
frontend/casino/src/assets/img/LinkedinBlack.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.83358 4.23322H7.00008V5.31239C7.31217 4.69172 8.1125 4.13405 9.31475 4.13405C11.6195 4.13405 12.1667 5.36955 12.1667 7.63639V11.8346H9.83333V8.15264C9.83333 6.86172 9.52125 6.13372 8.72675 6.13372C7.62483 6.13372 7.16692 6.9183 7.16692 8.15205V11.8346H4.83358V4.23322ZM0.8325 11.7355H3.16583V4.13405H0.8325V11.7355ZM3.50008 1.65547C3.50017 1.85105 3.46138 2.04469 3.38598 2.22514C3.31057 2.4056 3.20005 2.56927 3.06083 2.70664C2.77873 2.987 2.39689 3.14393 1.99917 3.14297C1.60214 3.1427 1.22118 2.98617 0.938667 2.70722C0.799957 2.56938 0.689808 2.40553 0.614534 2.22505C0.539259 2.04457 0.500338 1.85102 0.5 1.65547C0.5 1.26055 0.6575 0.882552 0.93925 0.603719C1.22152 0.324394 1.60264 0.167794 1.99975 0.167969C2.39758 0.167969 2.77908 0.324886 3.06083 0.603719C3.342 0.882552 3.50008 1.26055 3.50008 1.65547Z" fill="#232528"/>
|
||||
</svg>
|
After Width: | Height: | Size: 986 B |
3
frontend/casino/src/assets/img/LinkedinImg.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.50058 8.23712H10.6671V9.31629C10.9792 8.69562 11.7795 8.13796 12.9817 8.13796C15.2865 8.13796 15.8337 9.37346 15.8337 11.6403V15.8385H13.5003V12.1565C13.5003 10.8656 13.1882 10.1376 12.3937 10.1376C11.2918 10.1376 10.8339 10.9222 10.8339 12.156V15.8385H8.50058V8.23712ZM4.49949 15.7394H6.83283V8.13796H4.49949V15.7394ZM7.16708 5.65938C7.16716 5.85495 7.12837 6.0486 7.05297 6.22905C6.97756 6.40951 6.86704 6.57317 6.72783 6.71054C6.44573 6.99091 6.06388 7.14784 5.66616 7.14688C5.26914 7.14661 4.88817 6.99007 4.60566 6.71113C4.46695 6.57329 4.3568 6.40944 4.28153 6.22896C4.20625 6.04848 4.16733 5.85492 4.16699 5.65938C4.16699 5.26446 4.32449 4.88646 4.60624 4.60763C4.88851 4.3283 5.26963 4.1717 5.66674 4.17188C6.06458 4.17188 6.44608 4.32879 6.72783 4.60763C7.00899 4.88646 7.16708 5.26446 7.16708 5.65938Z" fill="white"/>
|
||||
</svg>
|
After Width: | Height: | Size: 983 B |
5
frontend/casino/src/assets/img/MediumBlack.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<svg width="16" height="10" viewBox="0 0 16 10" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9.00131 4.99906C9.00131 7.49893 6.9863 9.52547 4.50065 9.52547C2.01501 9.52547 0 7.49893 0 4.99906C0 2.4992 2.01501 0.472656 4.50065 0.472656C6.9863 0.472656 9.00131 2.4992 9.00131 4.99906Z" fill="#232528"/>
|
||||
<path d="M14 4.9991C14 7.35274 12.995 9.26074 11.7552 9.26074C10.5155 9.26074 9.51047 7.35274 9.51047 4.9991C9.51047 2.64547 10.5155 0.737467 11.7552 0.737467C12.995 0.737467 14 2.64547 14 4.9991Z" fill="#232528"/>
|
||||
<path d="M16 4.99902C16 7.09679 15.646 8.79736 15.2094 8.79736C14.7727 8.79736 14.4188 7.09679 14.4188 4.99902C14.4188 2.90126 14.7727 1.20068 15.2094 1.20068C15.646 1.20068 16 2.90126 16 4.99902Z" fill="#232528"/>
|
||||
</svg>
|
After Width: | Height: | Size: 751 B |
5
frontend/casino/src/assets/img/MediumImg.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11.0013 10.003C11.0013 12.5028 8.9863 14.5294 6.50065 14.5294C4.01501 14.5294 2 12.5028 2 10.003C2 7.5031 4.01501 5.47656 6.50065 5.47656C8.9863 5.47656 11.0013 7.5031 11.0013 10.003Z" fill="white"/>
|
||||
<path d="M16 10.003C16 12.3566 14.995 14.2646 13.7552 14.2646C12.5155 14.2646 11.5105 12.3566 11.5105 10.003C11.5105 7.64937 12.5155 5.74137 13.7552 5.74137C14.995 5.74137 16 7.64937 16 10.003Z" fill="white"/>
|
||||
<path d="M18 10.0029C18 12.1007 17.646 13.8013 17.2094 13.8013C16.7727 13.8013 16.4188 12.1007 16.4188 10.0029C16.4188 7.90516 16.7727 6.20459 17.2094 6.20459C17.646 6.20459 18 7.90516 18 10.0029Z" fill="white"/>
|
||||
</svg>
|
After Width: | Height: | Size: 736 B |
4
frontend/casino/src/assets/img/Redirect.svg
Normal file
|
@ -0,0 +1,4 @@
|
|||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.66665 2L10.862 4.19533L6.19531 8.862L7.13798 9.80467L11.8046 5.138L14 7.33333V2H8.66665Z" fill="#0090FF"/>
|
||||
<path d="M12.6667 12.6667H3.33333V3.33333H8L6.66667 2H3.33333C2.598 2 2 2.598 2 3.33333V12.6667C2 13.402 2.598 14 3.33333 14H12.6667C13.402 14 14 13.402 14 12.6667V9.33333L12.6667 8V12.6667Z" fill="#0090FF"/>
|
||||
</svg>
|
After Width: | Height: | Size: 431 B |
7
frontend/casino/src/assets/img/SuccesfullIcon.svg
Normal file
|
@ -0,0 +1,7 @@
|
|||
<svg width="128" height="84" viewBox="0 0 128 84" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.7094 37.6251L46.8241 82L109.252 19.2043L92.1483 2L54.9483 39.4194L48.2425 46.1647C47.4605 46.9513 46.1878 46.9513 45.4058 46.1647L18.6034 19.2043L2.7094 35.1921C2.04147 35.8639 2.04147 36.9533 2.7094 37.6251Z" fill="#028FFF" fill-opacity="0.25"/>
|
||||
<path d="M109.252 19.2043L46.8241 82H62.364C62.8176 82 63.2526 81.8187 63.5734 81.4961L125.5 19.2043H109.252Z" fill="#028FFF" fill-opacity="0.5"/>
|
||||
<path d="M92.1483 2L109.252 19.2043H125.5L108.897 2.5039C108.577 2.18126 108.142 2 107.688 2H92.1483Z" fill="#028FFF" fill-opacity="0.5"/>
|
||||
<path d="M18.6034 19.2043L45.4058 46.1647C46.1878 46.9513 47.4605 46.9513 48.2425 46.1647L54.9483 39.4194L35.3527 19.7082C35.0319 19.3856 34.5969 19.2043 34.1433 19.2043H18.6034Z" fill="#028FFF" fill-opacity="0.5"/>
|
||||
<path d="M46.8241 82L109.252 19.2043M46.8241 82L2.7094 37.6251M46.8241 82H62.364M18.6034 19.2043L45.4058 46.1647C46.1878 46.9513 47.4605 46.9513 48.2425 46.1647L54.9483 39.4194M18.6034 19.2043L2.7094 35.1921M18.6034 19.2043H34.1433M92.1483 2L109.252 19.2043M92.1483 2L54.9483 39.4194M92.1483 2H107.688M109.252 19.2043H125.5M54.9483 39.4194L35.3527 19.7082M125.5 19.2043L108.897 2.5039M125.5 19.2043L63.5734 81.4961M2.7094 37.6251C2.04147 36.9533 2.04147 35.8639 2.7094 35.1921M2.7094 37.6251V37.6251C2.04032 36.9521 2.04032 35.8651 2.7094 35.1921V35.1921M34.1433 19.2043C34.5969 19.2043 35.0319 19.3856 35.3527 19.7082M34.1433 19.2043V19.2043C34.5967 19.2043 35.033 19.3866 35.3527 19.7082V19.7082M107.688 2C108.142 2 108.577 2.18126 108.897 2.5039M107.688 2V2C108.142 2 108.578 2.18231 108.897 2.5039V2.5039M63.5734 81.4961C63.2526 81.8187 62.8176 82 62.364 82M63.5734 81.4961V81.4961C63.2537 81.8177 62.8174 82 62.364 82V82" stroke="#028FFF" stroke-width="4" stroke-linejoin="round"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
3
frontend/casino/src/assets/img/TelegramBlack.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg width="13" height="11" viewBox="0 0 13 11" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.2032 0.584146C11.3474 0.523474 11.5051 0.502549 11.6601 0.523548C11.8151 0.544547 11.9616 0.606703 12.0844 0.703546C12.2073 0.800389 12.3019 0.928379 12.3584 1.07419C12.415 1.22001 12.4314 1.37832 12.406 1.53265L11.083 9.55756C10.9547 10.3316 10.1054 10.7756 9.39546 10.39C8.80163 10.0674 7.91963 9.5704 7.12629 9.05181C6.72963 8.79223 5.51454 7.96098 5.66388 7.36948C5.79221 6.86373 7.83388 4.96323 9.00054 3.83331C9.45846 3.3894 9.24963 3.13331 8.70888 3.54165C7.36546 4.55548 5.21004 6.09723 4.49721 6.53123C3.86838 6.9139 3.54054 6.97923 3.14854 6.9139C2.43338 6.7949 1.77013 6.61056 1.22879 6.38598C0.497294 6.08265 0.532877 5.07698 1.22821 4.78415L11.2032 0.584146Z" fill="#232528"/>
|
||||
</svg>
|
After Width: | Height: | Size: 846 B |
10
frontend/casino/src/assets/img/TelegramImg.svg
Normal file
|
@ -0,0 +1,10 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_7790_7388)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.5362 5.58415C14.6804 5.52347 14.8382 5.50255 14.9931 5.52355C15.1481 5.54455 15.2946 5.6067 15.4175 5.70355C15.5403 5.80039 15.6349 5.92838 15.6914 6.07419C15.748 6.22001 15.7644 6.37832 15.7391 6.53265L14.4161 14.5576C14.2877 15.3316 13.4384 15.7756 12.7285 15.39C12.1346 15.0674 11.2526 14.5704 10.4593 14.0518C10.0626 13.7922 8.84755 12.961 8.99689 12.3695C9.12522 11.8637 11.1669 9.96323 12.3336 8.83331C12.7915 8.3894 12.5826 8.13331 12.0419 8.54165C10.6985 9.55548 8.54305 11.0972 7.83022 11.5312C7.20139 11.9139 6.87355 11.9792 6.48155 11.9139C5.76638 11.7949 5.10314 11.6106 4.5618 11.386C3.8303 11.0826 3.86589 10.077 4.56122 9.78415L14.5362 5.58415Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_7790_7388">
|
||||
<rect width="14" height="14" fill="white" transform="translate(3 3)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 1,005 B |
3
frontend/casino/src/assets/img/TwitterBlack.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg width="14" height="12" viewBox="0 0 14 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13.6663 1.93065C13.1757 2.14398 12.649 2.29065 12.0957 2.35465C12.661 2.02132 13.093 1.49332 13.2983 0.865315C12.7596 1.17927 12.1718 1.40014 11.5597 1.51865C11.3022 1.24875 10.9924 1.03413 10.6492 0.887873C10.3061 0.741621 9.9367 0.666803 9.56367 0.667982C8.05301 0.667982 6.82901 1.87465 6.82901 3.36132C6.82901 3.57198 6.85301 3.77731 6.89968 3.97465C5.81611 3.92319 4.75517 3.64644 3.78454 3.16204C2.81391 2.67765 1.95491 1.99625 1.26234 1.16132C1.01909 1.57078 0.891021 2.03838 0.891675 2.51465C0.891675 3.44798 1.37567 4.27465 2.10901 4.75598C1.67493 4.74237 1.25015 4.62681 0.869008 4.41865V4.45198C0.873127 5.07793 1.09407 5.6831 1.49423 6.16445C1.89439 6.64581 2.44901 6.97359 3.06367 7.09198C2.66015 7.19868 2.23793 7.21417 1.82767 7.13732C2.00651 7.67581 2.34857 8.14526 2.80637 8.48048C3.26417 8.8157 3.81499 9.00007 4.38234 9.00798C3.40896 9.75806 2.21386 10.1633 0.985008 10.16C0.765008 10.16 0.547674 10.1466 0.333008 10.1226C1.58697 10.9164 3.04096 11.3367 4.52501 11.3346C9.55701 11.3346 12.3077 7.23065 12.3077 3.67065L12.2983 3.32132C12.8347 2.94436 13.2982 2.47316 13.6663 1.93065Z" fill="#232528"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
3
frontend/casino/src/assets/img/TwitterImg.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M2.55982 3L8.33276 10.7218L2.52344 17H3.83099L8.91716 11.5032L13.0265 17H17.4758L11.3779 8.84394L16.7853 3H15.4777L10.7938 8.06227L7.00915 3H2.55982ZM4.48263 3.96341H6.52663L15.5528 16.0366H13.5088L4.48263 3.96341Z" fill="white"/>
|
||||
</svg>
|
After Width: | Height: | Size: 343 B |
3
frontend/casino/src/assets/img/YoutubeBlack.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg width="14" height="10" viewBox="0 0 14 10" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.564 0.335938H2.76933C1.24 0.335938 0 1.5626 0 3.0746V6.92794C0 8.44127 1.24 9.6666 2.76933 9.6666H10.564C12.0933 9.6666 13.3333 8.43994 13.3333 6.92794V3.0746C13.3333 1.56127 12.0933 0.335938 10.564 0.335938ZM8.692 5.18927L5.04533 6.90927C5.02303 6.91981 4.99842 6.92456 4.97379 6.92306C4.94916 6.92157 4.92531 6.91389 4.90444 6.90073C4.88356 6.88757 4.86635 6.86935 4.85439 6.84777C4.84243 6.82619 4.8361 6.80194 4.836 6.77727V3.2306C4.83622 3.20561 4.84283 3.18109 4.85519 3.15937C4.86755 3.13765 4.88525 3.11945 4.90663 3.10649C4.928 3.09353 4.95233 3.08625 4.9773 3.08534C5.00228 3.08443 5.02707 3.08991 5.04933 3.10127L8.69467 4.92794C8.71864 4.94046 8.73868 4.95937 8.75257 4.98258C8.76646 5.00578 8.77367 5.03238 8.77339 5.05942C8.77312 5.08647 8.76537 5.11291 8.75101 5.13582C8.73664 5.15874 8.71622 5.17724 8.692 5.18927Z" fill="#232528"/>
|
||||
</svg>
|
After Width: | Height: | Size: 965 B |
3
frontend/casino/src/assets/img/YoutubeImg.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13.897 5.33594H6.10234C4.57301 5.33594 3.33301 6.5626 3.33301 8.0746V11.9279C3.33301 13.4413 4.57301 14.6666 6.10234 14.6666H13.897C15.4263 14.6666 16.6663 13.4399 16.6663 11.9279V8.0746C16.6663 6.56127 15.4263 5.33594 13.897 5.33594ZM12.025 10.1893L8.37834 11.9093C8.35603 11.9198 8.33143 11.9246 8.3068 11.9231C8.28217 11.9216 8.25831 11.9139 8.23744 11.9007C8.21657 11.8876 8.19936 11.8694 8.1874 11.8478C8.17543 11.8262 8.16911 11.8019 8.16901 11.7773V8.2306C8.16923 8.20561 8.17583 8.18109 8.1882 8.15937C8.20056 8.13765 8.21826 8.11945 8.23963 8.10649C8.26101 8.09353 8.28533 8.08625 8.31031 8.08534C8.33528 8.08443 8.36008 8.08991 8.38234 8.10127L12.0277 9.92794C12.0516 9.94046 12.0717 9.95937 12.0856 9.98258C12.0995 10.0058 12.1067 10.0324 12.1064 10.0594C12.1061 10.0865 12.0984 10.1129 12.084 10.1358C12.0696 10.1587 12.0492 10.1772 12.025 10.1893Z" fill="white"/>
|
||||
</svg>
|
After Width: | Height: | Size: 990 B |
4
frontend/casino/src/assets/img/closeButtonIcon.svg
Normal file
|
@ -0,0 +1,4 @@
|
|||
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1 11L6 6M6 6L11 1M6 6L11 11M6 6L1 1" stroke="#0090FF" stroke-width="2" stroke-linecap="round"/>
|
||||
<path d="M1 11L6 6M6 6L11 1M6 6L11 11M6 6L1 1" stroke="white" stroke-opacity="0.3" stroke-width="2" stroke-linecap="round"/>
|
||||
</svg>
|
After Width: | Height: | Size: 334 B |
|
@ -1,7 +0,0 @@
|
|||
export const AppNav = () => {
|
||||
return (
|
||||
<div>
|
||||
|
||||
</div>
|
||||
);
|
||||
};
|
|
@ -1 +0,0 @@
|
|||
export * from './AppNav'
|
|
@ -1 +0,0 @@
|
|||
export * from './Footer'
|
3
frontend/casino/src/index.css
Normal file
|
@ -0,0 +1,3 @@
|
|||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
|
@ -1,6 +1,7 @@
|
|||
import React from 'react'
|
||||
import ReactDOM from 'react-dom/client'
|
||||
import { App } from './App.tsx'
|
||||
import './index.css'
|
||||
|
||||
ReactDOM.createRoot(document.getElementById('root')!).render(
|
||||
<React.StrictMode>
|
||||
|
|
110
frontend/casino/src/styles/global.ts
Normal file
|
@ -0,0 +1,110 @@
|
|||
import interRegular from '../assets/fonts/Inter-Regular.ttf'
|
||||
import montserratBold from '../assets/fonts/Montserrat-Bold.ttf'
|
||||
import montserratSemiBold from '../assets/fonts/Montserrat-SemiBold.ttf'
|
||||
import montserratRegular400 from '../assets/fonts/Montserrat-VariableFont_wght.ttf'
|
||||
import montserratReg from '../assets/fonts/Montserrat-VariableFont_wght500.ttf'
|
||||
import museoModernoSemiBold from '../assets/fonts/MuseoModerno-SemiBold.ttf'
|
||||
import museoModernoBold from '../assets/fonts/MuseoModerno-VariableFont_wght.ttf'
|
||||
import soraBold from '../assets/fonts/Sora-Bold.ttf'
|
||||
import SpaceGrotesk from '../assets/fonts/SpaceGrotesk-VariableFont_wght.ttf'
|
||||
import { globalCss } from './stitches.config'
|
||||
|
||||
export const globalStyles = globalCss({
|
||||
'@font-face': [
|
||||
{
|
||||
fontFamily: 'Montserrat',
|
||||
fontStyle: 'normal',
|
||||
fontWeight: 600,
|
||||
src: `local(''), url('${montserratSemiBold}') format('truetype')`,
|
||||
},
|
||||
{
|
||||
fontFamily: 'Montserrat',
|
||||
fontStyle: 'normal',
|
||||
fontWeight: 500,
|
||||
src: `local(''), url('${montserratReg}') format('truetype')`,
|
||||
},
|
||||
{
|
||||
fontFamily: 'Montserrat',
|
||||
fontStyle: 'normal',
|
||||
fontWeight: 700,
|
||||
src: `local(''), url('${montserratBold}') format('truetype')`,
|
||||
},
|
||||
{
|
||||
fontFamily: 'Montserrat',
|
||||
fontStyle: 'normal',
|
||||
fontWeight: 400,
|
||||
src: `local(''), url('${montserratRegular400}') format('truetype')`,
|
||||
},
|
||||
{
|
||||
fontFamily: 'Sora',
|
||||
fontStyle: 'normal',
|
||||
fontWeight: 700,
|
||||
src: `local(''), url('${soraBold}') format('truetype')`,
|
||||
},
|
||||
{
|
||||
fontFamily: 'Inter',
|
||||
fontStyle: 'normal',
|
||||
fontWeight: 400,
|
||||
src: `local(''), url('${interRegular}') format('truetype')`,
|
||||
},
|
||||
{
|
||||
fontFamily: 'Space Grotesk',
|
||||
fontStyle: 'normal',
|
||||
fontWeight: 700,
|
||||
src: `local(''), url('${SpaceGrotesk}') format('truetype')`,
|
||||
},
|
||||
{
|
||||
fontFamily: 'MuseoModerno',
|
||||
fontStyle: 'normal',
|
||||
fontWeight: 600,
|
||||
src: `local(''), url('${museoModernoSemiBold}') format('truetype')`,
|
||||
},
|
||||
{
|
||||
fontFamily: 'MuseoModerno',
|
||||
fontStyle: 'normal',
|
||||
fontWeight: 700,
|
||||
src: `local(''), url('${museoModernoBold}') format('truetype')`,
|
||||
},
|
||||
],
|
||||
'html, body, #root, #root>div': {
|
||||
fontFamily: '$primary',
|
||||
fontSize: '$html',
|
||||
height: '100%',
|
||||
},
|
||||
a: {
|
||||
textDecoration: 'none',
|
||||
},
|
||||
html: {
|
||||
// breaks popovers
|
||||
// overflowY: 'hidden'
|
||||
},
|
||||
body: {
|
||||
overflow: 'overlay',
|
||||
},
|
||||
'*::-webkit-scrollbar, html *::-webkit-scrollbar': {
|
||||
width: '10px',
|
||||
height: '4px',
|
||||
},
|
||||
'*::-webkit-scrollbar-track, html *::-webkit-scrollbar-track': {
|
||||
background: 'none',
|
||||
boxShadow: 'inset 0 0 5px 5px #0090FF',
|
||||
border: 'solid 6px transparent',
|
||||
},
|
||||
|
||||
'*::-webkit-scrollbar-thumb, html *::-webkit-scrollbar-thumb': {
|
||||
background: '#0090FF',
|
||||
borderRadius: '8px',
|
||||
border: 'solid 1px rgba(255, 255, 255, 0.5)',
|
||||
},
|
||||
|
||||
'#root': {
|
||||
height: '100%',
|
||||
},
|
||||
'& .nextui-c-cVVQUL-kzmUGS-borderWeight-black': {
|
||||
background: 'none !important',
|
||||
overflow: 'inherit !important',
|
||||
border: 'none !important',
|
||||
boxShadow: 'none !important',
|
||||
marginRight: '20px',
|
||||
},
|
||||
})
|
3
frontend/casino/src/styles/index.ts
Normal file
|
@ -0,0 +1,3 @@
|
|||
export * from './provider'
|
||||
export * from './shared'
|
||||
export * from './stitches.config'
|
13
frontend/casino/src/styles/provider.tsx
Normal file
|
@ -0,0 +1,13 @@
|
|||
import 'reseter.css/css/minireseter.css'
|
||||
|
||||
import { observer } from 'mobx-react-lite'
|
||||
import { type FC, type PropsWithChildren } from 'react'
|
||||
|
||||
import { globalStyles } from './global'
|
||||
|
||||
export const StitchesProvider: FC<PropsWithChildren> = observer(({ children }) => {
|
||||
globalStyles()
|
||||
|
||||
// currently, there is nothing provided, but in future this will likely to change
|
||||
return <>{children}</>
|
||||
})
|
72
frontend/casino/src/styles/shared.ts
Normal file
|
@ -0,0 +1,72 @@
|
|||
import { css, type theme } from './stitches.config'
|
||||
|
||||
// shows on all breakpoints, that higher than a specified one
|
||||
export const cssShowIn = css({
|
||||
variants: {
|
||||
showIn: {
|
||||
xs: {
|
||||
'@xsUp': {
|
||||
display: 'none',
|
||||
},
|
||||
},
|
||||
sm: {
|
||||
'@smUp': {
|
||||
display: 'none',
|
||||
},
|
||||
},
|
||||
md: {
|
||||
'@mdUp': {
|
||||
display: 'none',
|
||||
},
|
||||
},
|
||||
lg: {
|
||||
'@lgUp': {
|
||||
display: 'none',
|
||||
},
|
||||
},
|
||||
xl: {
|
||||
'@xlUp': {
|
||||
display: 'none',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
export const cssHideIn = css({
|
||||
variants: {
|
||||
hideIn: {
|
||||
xs: {
|
||||
'@xs': {
|
||||
display: 'none',
|
||||
},
|
||||
},
|
||||
sm: {
|
||||
'@sm': {
|
||||
display: 'none',
|
||||
},
|
||||
},
|
||||
md: {
|
||||
'@md': {
|
||||
display: 'none',
|
||||
},
|
||||
},
|
||||
lg: {
|
||||
'@lg': {
|
||||
display: 'none',
|
||||
},
|
||||
},
|
||||
xl: {
|
||||
'@xl': {
|
||||
display: 'none',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
export const cssShowHideIn = css(cssShowIn, cssHideIn)
|
||||
|
||||
export type ThemeType = typeof theme
|
||||
|
||||
export type BreakpointsOptions = keyof ThemeType['breakpoints']
|
222
frontend/casino/src/styles/stitches.config.ts
Normal file
|
@ -0,0 +1,222 @@
|
|||
import { createStitches, type PropertyValue } from '@stitches/react'
|
||||
|
||||
export const {
|
||||
styled,
|
||||
css,
|
||||
globalCss,
|
||||
keyframes,
|
||||
getCssText,
|
||||
theme,
|
||||
createTheme,
|
||||
config,
|
||||
} = createStitches({
|
||||
theme: {
|
||||
colors: {
|
||||
blue300: '#4DB1FF',
|
||||
blue500: '#0090FF',
|
||||
blue600: '#655BE5', // Color: Slate Blue
|
||||
blue700: '#4160ED', // Color: Ultramarine Blue
|
||||
blue900: '#13132D', // Color: Space Cadet
|
||||
|
||||
purple: '#AF29FF', // Color: Electric Purple
|
||||
magenta: '#E14BEC', // Color: Magenta
|
||||
pink: '#F4CFF3', // Color: Pink Lace
|
||||
|
||||
black: '#000000', // Color: Eerie Black
|
||||
white: '#ffffff',
|
||||
whiteOp25: 'rgba(255, 255, 255, 0.25)',
|
||||
whiteOp50: 'rgba(255, 255, 255, 0.5)',
|
||||
whiteOp75: 'rgba(255, 255, 255, 0.75)',
|
||||
blue500Op75: 'rgba(0, 144, 255, 0.75)',
|
||||
|
||||
gray100: '#F9F9F9',
|
||||
gray200: '#E5E5E5',
|
||||
gray300: '#E9E9EA', // raisin + 90%
|
||||
gray400: '#A7A8A9', // raisin + 60%
|
||||
gray500: '#59596C',
|
||||
gray600: '#656669', // raisin + 30%
|
||||
gray700: '#2F3134',
|
||||
gray800: '#232528', // raisin
|
||||
|
||||
green: '#00FF0A',
|
||||
|
||||
red: '#D81B60',
|
||||
red500: '#C54B5C',
|
||||
|
||||
gradient0: '#38BCC9',
|
||||
gradient1: '#088DFA',
|
||||
},
|
||||
|
||||
space: {
|
||||
1: '4px', // на мобилках
|
||||
2: '8px',
|
||||
3: '16px', // самый ходовой
|
||||
4: '32px',
|
||||
5: '40px',
|
||||
6: '80px',
|
||||
},
|
||||
|
||||
fonts: {
|
||||
h: 'Montserrat, sans-serif',
|
||||
body: 'Montserrat, sans-serif',
|
||||
button: 'Montserrat, sans-serif',
|
||||
primary: 'Montserrat, sans-serif',
|
||||
secondary: 'Inter, sans-serif',
|
||||
ternary: 'Space Grotesk, sans-serif',
|
||||
fourfold: 'MuseoModerno, sans-serif',
|
||||
},
|
||||
|
||||
// 1rem = 16px
|
||||
fontSizes: {
|
||||
html: '16px', // defines 1rem
|
||||
|
||||
h1: '3rem', // 48px
|
||||
h2: '2.5rem', // 40px
|
||||
h3: '2rem', // 32px
|
||||
h4: '1.5625rem', // 25px
|
||||
h5: '1.25rem', // 20px
|
||||
|
||||
body1: '1.5rem', // 24px
|
||||
body2: '1.25rem', // 20px
|
||||
body3: '1.125rem', // 18px
|
||||
body4: '1rem', // 16px
|
||||
|
||||
button1: '1rem', // 16px
|
||||
|
||||
primary1: '1rem', // 16px
|
||||
primary2: '0.875rem', // 14px
|
||||
primary3: '0.75rem', // 12px
|
||||
|
||||
secondary1: '1rem', // 16px
|
||||
secondary2: '0.875rem', // 14px
|
||||
secondary3: '0.75rem', // 12px
|
||||
|
||||
ternary1: '2.5rem', // 40px
|
||||
ternary2: '2rem', // 32px
|
||||
ternary3: '1.5rem', // 24px
|
||||
|
||||
fourfold1: '2.5rem', // 40px
|
||||
fourfold2: '2rem', // 32px
|
||||
fourfold3: '1.5rem', // 24px
|
||||
},
|
||||
|
||||
fontWeights: {
|
||||
h: 700, // header
|
||||
body: 400,
|
||||
button: 600,
|
||||
primary: 600,
|
||||
secondary: 400,
|
||||
ternary: 700,
|
||||
fourfold: 700,
|
||||
},
|
||||
|
||||
lineHeights: {
|
||||
h1: 1.1666,
|
||||
h2: 1.26,
|
||||
h3: 1.26,
|
||||
h4: 1.26,
|
||||
h5: 1.2,
|
||||
|
||||
body1: 1.333,
|
||||
body2: 1.219, // 20px
|
||||
body3: 1.2777, // 18px
|
||||
body4: 1.21875, // 16px
|
||||
|
||||
button1: 1.5, // 16px
|
||||
|
||||
primary1: 1.25, // 16px
|
||||
primary2: 1.4285714, // 14px
|
||||
primary3: 1.333, // 12px
|
||||
|
||||
secondary1: 1.21, // 16px
|
||||
secondary2: 1.2857143, // 14px
|
||||
secondary3: 1.333333, // 12px
|
||||
|
||||
ternary1: '48px',
|
||||
ternary2: '48px',
|
||||
ternary3: '30px',
|
||||
|
||||
fourfold1: '48px',
|
||||
fourfold2: '48px',
|
||||
fourfold3: '30px',
|
||||
},
|
||||
|
||||
radii: {
|
||||
1: '8px',
|
||||
2: '12px',
|
||||
3: '16px',
|
||||
4: '32px',
|
||||
6: '80px',
|
||||
},
|
||||
|
||||
shadows: {
|
||||
// names of shadows are from the figma
|
||||
form: '0px 0px 15px rgba(19, 19, 45, 0.05)',
|
||||
hover: '0px 2px 15px rgba(19, 19, 45, 0.2)',
|
||||
header: '0px 4px 15px rgba(19, 19, 45, 0.05)',
|
||||
footer: '0px -4px 15px rgba(19, 19, 45, 0.05)',
|
||||
low: '0px 4px 15px rgba(19, 19, 45, 0.1)',
|
||||
},
|
||||
|
||||
breakpoints: {
|
||||
xs: '400px',
|
||||
sm: '600px',
|
||||
md: '900px',
|
||||
lg: '1200px',
|
||||
xl: '1536px',
|
||||
},
|
||||
|
||||
gradients: {
|
||||
main: 'linear-gradient(90deg, $colors$gradient0 0%, $colors$gradient1 100%)',
|
||||
background: 'linear-gradient(291.31deg, #512da8 0%, #49b2fd 100%)',
|
||||
button: 'linear-gradient(to left, #0076D0, #0090FF, #38BCC9, #0099A8, #0090FF, #0076D0)',
|
||||
mainNew: 'linear-gradient(135deg, #028FFF 0%, #04E762 100%)',
|
||||
},
|
||||
|
||||
layout: {
|
||||
navBarHeight: '80px',
|
||||
bannerHeight: '36px',
|
||||
blockchainToggleHeight: '58px',
|
||||
},
|
||||
},
|
||||
|
||||
media: {
|
||||
xs: '(max-width: 400px)',
|
||||
sm: '(max-width: 600px)',
|
||||
mdx: '(max-width: 700px)',
|
||||
md: '(max-width: 900px)',
|
||||
lg: '(max-width: 1200px)',
|
||||
xl: '(max-width: 1536px)',
|
||||
|
||||
xsUp: '(min-width: 400px)',
|
||||
smUp: '(min-width: 600px)',
|
||||
mdxUp: '(min-width: 700px)',
|
||||
mdUp: '(min-width: 900px)',
|
||||
lgUp: '(min-width: 1201px)',
|
||||
xlUp: '(min-width: 1536px)',
|
||||
},
|
||||
|
||||
utils: {
|
||||
focusRing: (color: string) => ({
|
||||
outline: `2px solid ${color}`,
|
||||
outlineOffset: '2px',
|
||||
}),
|
||||
paddingLR: (padding: PropertyValue<'paddingLeft'>) => ({
|
||||
paddingLeft: padding,
|
||||
paddingRight: padding,
|
||||
}),
|
||||
paddingTB: (padding: PropertyValue<'paddingTop'>) => ({
|
||||
paddingTop: padding,
|
||||
paddingBottom: padding,
|
||||
}),
|
||||
dflex: (value: PropertyValue<'alignItems'>) => ({
|
||||
display: 'flex',
|
||||
alignItems: value,
|
||||
justifyContent: value,
|
||||
}),
|
||||
size: (value: PropertyValue<'width'>) => ({
|
||||
width: value,
|
||||
height: value,
|
||||
}),
|
||||
},
|
||||
})
|
11
frontend/casino/tailwind.config.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: [
|
||||
"./index.html",
|
||||
"./src/**/*.{js,ts,jsx,tsx}",
|
||||
],
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
|
@ -12,6 +12,11 @@
|
|||
resolved "https://registry.yarnpkg.com/@adraffy/ens-normalize/-/ens-normalize-1.10.0.tgz#d2a39395c587e092d77cbbc80acf956a54f38bf7"
|
||||
integrity sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q==
|
||||
|
||||
"@alloc/quick-lru@^5.2.0":
|
||||
version "5.2.0"
|
||||
resolved "https://registry.yarnpkg.com/@alloc/quick-lru/-/quick-lru-5.2.0.tgz#7bf68b20c0a350f936915fcae06f58e32007ce30"
|
||||
integrity sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==
|
||||
|
||||
"@ampproject/remapping@^2.2.0":
|
||||
version "2.2.1"
|
||||
resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630"
|
||||
|
@ -4341,6 +4346,11 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0:
|
|||
dependencies:
|
||||
color-convert "^2.0.1"
|
||||
|
||||
any-promise@^1.0.0:
|
||||
version "1.3.0"
|
||||
resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f"
|
||||
integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==
|
||||
|
||||
anymatch@^3.1.3, anymatch@~3.1.2:
|
||||
version "3.1.3"
|
||||
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
|
||||
|
@ -4354,6 +4364,11 @@ arch@^2.2.0:
|
|||
resolved "https://registry.yarnpkg.com/arch/-/arch-2.2.0.tgz#1bc47818f305764f23ab3306b0bfc086c5a29d11"
|
||||
integrity sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==
|
||||
|
||||
arg@^5.0.2:
|
||||
version "5.0.2"
|
||||
resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c"
|
||||
integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==
|
||||
|
||||
argparse@^2.0.1:
|
||||
version "2.0.1"
|
||||
resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
|
||||
|
@ -4464,6 +4479,18 @@ atomic-sleep@^1.0.0:
|
|||
resolved "https://registry.yarnpkg.com/atomic-sleep/-/atomic-sleep-1.0.0.tgz#eb85b77a601fc932cfe432c5acd364a9e2c9075b"
|
||||
integrity sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==
|
||||
|
||||
autoprefixer@^10.4.16:
|
||||
version "10.4.16"
|
||||
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.16.tgz#fad1411024d8670880bdece3970aa72e3572feb8"
|
||||
integrity sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==
|
||||
dependencies:
|
||||
browserslist "^4.21.10"
|
||||
caniuse-lite "^1.0.30001538"
|
||||
fraction.js "^4.3.6"
|
||||
normalize-range "^0.1.2"
|
||||
picocolors "^1.0.0"
|
||||
postcss-value-parser "^4.2.0"
|
||||
|
||||
available-typed-arrays@^1.0.5:
|
||||
version "1.0.5"
|
||||
resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7"
|
||||
|
@ -4548,7 +4575,7 @@ braces@^3.0.2, braces@~3.0.2:
|
|||
dependencies:
|
||||
fill-range "^7.0.1"
|
||||
|
||||
browserslist@^4.22.2:
|
||||
browserslist@^4.21.10, browserslist@^4.22.2:
|
||||
version "4.22.2"
|
||||
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.2.tgz#704c4943072bd81ea18997f3bd2180e89c77874b"
|
||||
integrity sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==
|
||||
|
@ -4611,11 +4638,21 @@ callsites@^3.0.0:
|
|||
resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
|
||||
integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
|
||||
|
||||
camelcase-css@^2.0.1:
|
||||
version "2.0.1"
|
||||
resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5"
|
||||
integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==
|
||||
|
||||
camelcase@^5.0.0:
|
||||
version "5.3.1"
|
||||
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
|
||||
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
|
||||
|
||||
caniuse-lite@^1.0.30001538:
|
||||
version "1.0.30001570"
|
||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001570.tgz#b4e5c1fa786f733ab78fc70f592df6b3f23244ca"
|
||||
integrity sha512-+3e0ASu4sw1SWaoCtvPeyXp+5PsjigkSt8OXZbF9StH5pQWbxEjLAZE3n8Aup5udop1uRiKA7a4utUk/uoSpUw==
|
||||
|
||||
caniuse-lite@^1.0.30001565:
|
||||
version "1.0.30001568"
|
||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001568.tgz#53fa9297273c9a977a560663f48cbea1767518b7"
|
||||
|
@ -4748,6 +4785,11 @@ commander@^2.20.3:
|
|||
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
|
||||
integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
|
||||
|
||||
commander@^4.0.0:
|
||||
version "4.1.1"
|
||||
resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
|
||||
integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
|
||||
|
||||
compute-scroll-into-view@3.0.3:
|
||||
version "3.0.3"
|
||||
resolved "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-3.0.3.tgz#c418900a5c56e2b04b885b54995df164535962b1"
|
||||
|
@ -4835,6 +4877,11 @@ css-box-model@1.2.1:
|
|||
dependencies:
|
||||
tiny-invariant "^1.0.6"
|
||||
|
||||
cssesc@^3.0.0:
|
||||
version "3.0.0"
|
||||
resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
|
||||
integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
|
||||
|
||||
csstype@^3.0.2, csstype@^3.1.2:
|
||||
version "3.1.3"
|
||||
resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81"
|
||||
|
@ -4951,6 +4998,11 @@ dir-glob@^3.0.1:
|
|||
dependencies:
|
||||
path-type "^4.0.0"
|
||||
|
||||
dlv@^1.1.3:
|
||||
version "1.1.3"
|
||||
resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79"
|
||||
integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==
|
||||
|
||||
doctrine@^2.1.0:
|
||||
version "2.1.0"
|
||||
resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
|
||||
|
@ -5509,7 +5561,7 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
|
|||
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
|
||||
integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
|
||||
|
||||
fast-glob@^3.2.9:
|
||||
fast-glob@^3.2.9, fast-glob@^3.3.0:
|
||||
version "3.3.2"
|
||||
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129"
|
||||
integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==
|
||||
|
@ -5640,6 +5692,11 @@ formdata-polyfill@^4.0.10:
|
|||
dependencies:
|
||||
fetch-blob "^3.1.2"
|
||||
|
||||
fraction.js@^4.3.6:
|
||||
version "4.3.7"
|
||||
resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7"
|
||||
integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==
|
||||
|
||||
framer-motion@^10.16.12:
|
||||
version "10.16.16"
|
||||
resolved "https://registry.yarnpkg.com/framer-motion/-/framer-motion-10.16.16.tgz#a10a03e1190a717109163cfff212a84c8ad11b0c"
|
||||
|
@ -5750,6 +5807,18 @@ glob-parent@^6.0.2:
|
|||
dependencies:
|
||||
is-glob "^4.0.3"
|
||||
|
||||
glob@7.1.6:
|
||||
version "7.1.6"
|
||||
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
|
||||
integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
|
||||
dependencies:
|
||||
fs.realpath "^1.0.0"
|
||||
inflight "^1.0.4"
|
||||
inherits "2"
|
||||
minimatch "^3.0.4"
|
||||
once "^1.3.0"
|
||||
path-is-absolute "^1.0.0"
|
||||
|
||||
glob@^7.1.3:
|
||||
version "7.2.3"
|
||||
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
|
||||
|
@ -6268,7 +6337,7 @@ jdenticon@^3.2.0:
|
|||
dependencies:
|
||||
canvas-renderer "~2.2.0"
|
||||
|
||||
jiti@^1.20.0:
|
||||
jiti@^1.19.1, jiti@^1.20.0:
|
||||
version "1.21.0"
|
||||
resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.0.tgz#7c97f8fe045724e136a397f7340475244156105d"
|
||||
integrity sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==
|
||||
|
@ -6396,6 +6465,16 @@ levn@^0.4.1:
|
|||
prelude-ls "^1.2.1"
|
||||
type-check "~0.4.0"
|
||||
|
||||
lilconfig@^2.1.0:
|
||||
version "2.1.0"
|
||||
resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52"
|
||||
integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==
|
||||
|
||||
lilconfig@^3.0.0:
|
||||
version "3.0.0"
|
||||
resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.0.0.tgz#f8067feb033b5b74dab4602a5f5029420be749bc"
|
||||
integrity sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==
|
||||
|
||||
lines-and-columns@^1.1.6:
|
||||
version "1.2.4"
|
||||
resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
|
||||
|
@ -6569,7 +6648,7 @@ minimalistic-assert@^1.0.1:
|
|||
resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
|
||||
integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==
|
||||
|
||||
minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2:
|
||||
minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2:
|
||||
version "3.1.2"
|
||||
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
|
||||
integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
|
||||
|
@ -6635,6 +6714,15 @@ multiformats@^9.4.2:
|
|||
resolved "https://registry.yarnpkg.com/multiformats/-/multiformats-9.9.0.tgz#c68354e7d21037a8f1f8833c8ccd68618e8f1d37"
|
||||
integrity sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==
|
||||
|
||||
mz@^2.7.0:
|
||||
version "2.7.0"
|
||||
resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32"
|
||||
integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==
|
||||
dependencies:
|
||||
any-promise "^1.0.0"
|
||||
object-assign "^4.0.1"
|
||||
thenify-all "^1.0.0"
|
||||
|
||||
nanoid@3.3.4:
|
||||
version "3.3.4"
|
||||
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab"
|
||||
|
@ -6732,6 +6820,11 @@ normalize-path@^3.0.0, normalize-path@~3.0.0:
|
|||
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
|
||||
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
|
||||
|
||||
normalize-range@^0.1.2:
|
||||
version "0.1.2"
|
||||
resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
|
||||
integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==
|
||||
|
||||
npm-run-path@^4.0.1:
|
||||
version "4.0.1"
|
||||
resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea"
|
||||
|
@ -6785,11 +6878,16 @@ oas-validator@^5.0.8:
|
|||
should "^13.2.1"
|
||||
yaml "^1.10.0"
|
||||
|
||||
object-assign@^4.1.1:
|
||||
object-assign@^4.0.1, object-assign@^4.1.1:
|
||||
version "4.1.1"
|
||||
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
|
||||
integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
|
||||
|
||||
object-hash@^3.0.0:
|
||||
version "3.0.0"
|
||||
resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9"
|
||||
integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==
|
||||
|
||||
object-inspect@^1.13.1, object-inspect@^1.9.0:
|
||||
version "1.13.1"
|
||||
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2"
|
||||
|
@ -6985,6 +7083,11 @@ picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1:
|
|||
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
|
||||
integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
|
||||
|
||||
pify@^2.3.0:
|
||||
version "2.3.0"
|
||||
resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
|
||||
integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==
|
||||
|
||||
pify@^3.0.0:
|
||||
version "3.0.0"
|
||||
resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
|
||||
|
@ -7025,6 +7128,11 @@ pino@7.11.0:
|
|||
sonic-boom "^2.2.1"
|
||||
thread-stream "^0.15.1"
|
||||
|
||||
pirates@^4.0.1:
|
||||
version "4.0.6"
|
||||
resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9"
|
||||
integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==
|
||||
|
||||
pkg-types@^1.0.3:
|
||||
version "1.0.3"
|
||||
resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-1.0.3.tgz#988b42ab19254c01614d13f4f65a2cfc7880f868"
|
||||
|
@ -7044,7 +7152,51 @@ pony-cause@^2.1.10:
|
|||
resolved "https://registry.yarnpkg.com/pony-cause/-/pony-cause-2.1.10.tgz#828457ad6f13be401a075dbf14107a9057945174"
|
||||
integrity sha512-3IKLNXclQgkU++2fSi93sQ6BznFuxSLB11HdvZQ6JW/spahf/P1pAHBQEahr20rs0htZW0UDkM1HmA+nZkXKsw==
|
||||
|
||||
postcss@^8.4.32:
|
||||
postcss-import@^15.1.0:
|
||||
version "15.1.0"
|
||||
resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-15.1.0.tgz#41c64ed8cc0e23735a9698b3249ffdbf704adc70"
|
||||
integrity sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==
|
||||
dependencies:
|
||||
postcss-value-parser "^4.0.0"
|
||||
read-cache "^1.0.0"
|
||||
resolve "^1.1.7"
|
||||
|
||||
postcss-js@^4.0.1:
|
||||
version "4.0.1"
|
||||
resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.1.tgz#61598186f3703bab052f1c4f7d805f3991bee9d2"
|
||||
integrity sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==
|
||||
dependencies:
|
||||
camelcase-css "^2.0.1"
|
||||
|
||||
postcss-load-config@^4.0.1:
|
||||
version "4.0.2"
|
||||
resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-4.0.2.tgz#7159dcf626118d33e299f485d6afe4aff7c4a3e3"
|
||||
integrity sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==
|
||||
dependencies:
|
||||
lilconfig "^3.0.0"
|
||||
yaml "^2.3.4"
|
||||
|
||||
postcss-nested@^6.0.1:
|
||||
version "6.0.1"
|
||||
resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.0.1.tgz#f83dc9846ca16d2f4fa864f16e9d9f7d0961662c"
|
||||
integrity sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==
|
||||
dependencies:
|
||||
postcss-selector-parser "^6.0.11"
|
||||
|
||||
postcss-selector-parser@^6.0.11:
|
||||
version "6.0.13"
|
||||
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b"
|
||||
integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==
|
||||
dependencies:
|
||||
cssesc "^3.0.0"
|
||||
util-deprecate "^1.0.2"
|
||||
|
||||
postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0:
|
||||
version "4.2.0"
|
||||
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
|
||||
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
|
||||
|
||||
postcss@^8.4.23, postcss@^8.4.32:
|
||||
version "8.4.32"
|
||||
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.32.tgz#1dac6ac51ab19adb21b8b34fd2d93a86440ef6c9"
|
||||
integrity sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==
|
||||
|
@ -7371,6 +7523,13 @@ react@^18.2.0:
|
|||
dependencies:
|
||||
loose-envify "^1.1.0"
|
||||
|
||||
read-cache@^1.0.0:
|
||||
version "1.0.0"
|
||||
resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774"
|
||||
integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==
|
||||
dependencies:
|
||||
pify "^2.3.0"
|
||||
|
||||
readable-stream@^3.1.1, readable-stream@^3.5.0, readable-stream@^3.6.0:
|
||||
version "3.6.2"
|
||||
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967"
|
||||
|
@ -7470,7 +7629,7 @@ resolve-pkg-maps@^1.0.0:
|
|||
resolved "https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz#616b3dc2c57056b5588c31cdf4b3d64db133720f"
|
||||
integrity sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==
|
||||
|
||||
resolve@^1.19.0, resolve@^1.22.2, resolve@^1.22.4:
|
||||
resolve@^1.1.7, resolve@^1.19.0, resolve@^1.22.2, resolve@^1.22.4:
|
||||
version "1.22.8"
|
||||
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d"
|
||||
integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==
|
||||
|
@ -7842,6 +8001,19 @@ stylis@4.2.0:
|
|||
resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.2.0.tgz#79daee0208964c8fe695a42fcffcac633a211a51"
|
||||
integrity sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==
|
||||
|
||||
sucrase@^3.32.0:
|
||||
version "3.34.0"
|
||||
resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.34.0.tgz#1e0e2d8fcf07f8b9c3569067d92fbd8690fb576f"
|
||||
integrity sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==
|
||||
dependencies:
|
||||
"@jridgewell/gen-mapping" "^0.3.2"
|
||||
commander "^4.0.0"
|
||||
glob "7.1.6"
|
||||
lines-and-columns "^1.1.6"
|
||||
mz "^2.7.0"
|
||||
pirates "^4.0.1"
|
||||
ts-interface-checker "^0.1.9"
|
||||
|
||||
superstruct@^0.14.2:
|
||||
version "0.14.2"
|
||||
resolved "https://registry.yarnpkg.com/superstruct/-/superstruct-0.14.2.tgz#0dbcdf3d83676588828f1cf5ed35cda02f59025b"
|
||||
|
@ -7913,6 +8085,34 @@ swagger2openapi@7.0.8:
|
|||
yaml "^1.10.0"
|
||||
yargs "^17.0.1"
|
||||
|
||||
tailwindcss@^3.3.6:
|
||||
version "3.3.6"
|
||||
resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.3.6.tgz#4dd7986bf4902ad385d90d45fd4b2fa5fab26d5f"
|
||||
integrity sha512-AKjF7qbbLvLaPieoKeTjG1+FyNZT6KaJMJPFeQyLfIp7l82ggH1fbHJSsYIvnbTFQOlkh+gBYpyby5GT1LIdLw==
|
||||
dependencies:
|
||||
"@alloc/quick-lru" "^5.2.0"
|
||||
arg "^5.0.2"
|
||||
chokidar "^3.5.3"
|
||||
didyoumean "^1.2.2"
|
||||
dlv "^1.1.3"
|
||||
fast-glob "^3.3.0"
|
||||
glob-parent "^6.0.2"
|
||||
is-glob "^4.0.3"
|
||||
jiti "^1.19.1"
|
||||
lilconfig "^2.1.0"
|
||||
micromatch "^4.0.5"
|
||||
normalize-path "^3.0.0"
|
||||
object-hash "^3.0.0"
|
||||
picocolors "^1.0.0"
|
||||
postcss "^8.4.23"
|
||||
postcss-import "^15.1.0"
|
||||
postcss-js "^4.0.1"
|
||||
postcss-load-config "^4.0.1"
|
||||
postcss-nested "^6.0.1"
|
||||
postcss-selector-parser "^6.0.11"
|
||||
resolve "^1.22.2"
|
||||
sucrase "^3.32.0"
|
||||
|
||||
text-encoding-utf-8@^1.0.2:
|
||||
version "1.0.2"
|
||||
resolved "https://registry.yarnpkg.com/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz#585b62197b0ae437e3c7b5d0af27ac1021e10d13"
|
||||
|
@ -7923,6 +8123,20 @@ text-table@^0.2.0:
|
|||
resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
|
||||
integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==
|
||||
|
||||
thenify-all@^1.0.0:
|
||||
version "1.6.0"
|
||||
resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726"
|
||||
integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==
|
||||
dependencies:
|
||||
thenify ">= 3.1.0 < 4"
|
||||
|
||||
"thenify@>= 3.1.0 < 4":
|
||||
version "3.3.1"
|
||||
resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f"
|
||||
integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==
|
||||
dependencies:
|
||||
any-promise "^1.0.0"
|
||||
|
||||
thread-stream@^0.15.1:
|
||||
version "0.15.2"
|
||||
resolved "https://registry.yarnpkg.com/thread-stream/-/thread-stream-0.15.2.tgz#fb95ad87d2f1e28f07116eb23d85aba3bc0425f4"
|
||||
|
@ -7972,6 +8186,11 @@ ts-dedent@^2.2.0:
|
|||
resolved "https://registry.yarnpkg.com/ts-dedent/-/ts-dedent-2.2.0.tgz#39e4bd297cd036292ae2394eb3412be63f563bb5"
|
||||
integrity sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==
|
||||
|
||||
ts-interface-checker@^0.1.9:
|
||||
version "0.1.13"
|
||||
resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699"
|
||||
integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==
|
||||
|
||||
tsconfig-paths@^3.14.2:
|
||||
version "3.14.2"
|
||||
resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz#6e32f1f79412decd261f92d633a9dc1cfa99f088"
|
||||
|
@ -8188,7 +8407,7 @@ utf-8-validate@^5.0.2:
|
|||
dependencies:
|
||||
node-gyp-build "^4.3.0"
|
||||
|
||||
util-deprecate@^1.0.1:
|
||||
util-deprecate@^1.0.1, util-deprecate@^1.0.2:
|
||||
version "1.0.2"
|
||||
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
|
||||
integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==
|
||||
|
@ -8409,6 +8628,11 @@ yaml@^1.10.0:
|
|||
resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
|
||||
integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
|
||||
|
||||
yaml@^2.3.4:
|
||||
version "2.3.4"
|
||||
resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.4.tgz#53fc1d514be80aabf386dc6001eb29bf3b7523b2"
|
||||
integrity sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==
|
||||
|
||||
yargs-parser@^18.1.2:
|
||||
version "18.1.3"
|
||||
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0"
|
||||
|
|