├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── components ├── AppFooter.js ├── AppHeader.js ├── AppMenuDrawer.js ├── AppMenuIcon.js ├── AppMenuItem.js ├── BaseCss.js ├── ChatBubble.js ├── ChatWithUs.js ├── ToggleColorMode.js └── pages │ ├── GetInTouch.js │ ├── JoinCommunity.js │ ├── ScrollTop.js │ ├── about │ ├── AboutIntroduction.js │ ├── AboutMain.js │ ├── AboutOurMission.js │ ├── AboutOurValues.js │ ├── AboutUs.js │ └── AboutVideo.js │ ├── blog │ ├── BlogInner.js │ └── BlogMain.js │ ├── careers │ ├── CareersIntro.js │ ├── CareersJoinOurTeam.js │ ├── CareersJoinOurTeamDetail.js │ ├── CareersJoinOurTeamInfo.js │ ├── CareersJoinSolicy.js │ └── CareersMain.js │ ├── contact │ └── Contact.js │ ├── home │ ├── HomeAchievements.js │ ├── HomeIntroduction.js │ ├── HomeJoinCommunity.js │ ├── HomeMain.js │ ├── HomeOurServices.js │ ├── HomeSeeAbout.js │ ├── HomeTechStack.js │ └── HomeTechStackOurClient.js │ ├── other │ ├── PrivacyPolicy.js │ └── TermsAndConditions.js │ ├── portfolio │ ├── PortfolioIntro.js │ ├── PortfolioMain.js │ └── PortfolioOurWorks.js │ └── services │ ├── BlockchainIntro.js │ ├── BlockchainMain.js │ ├── BlockchainOurServices.js │ ├── BlockchainTechStack.js │ ├── SoftwareIntro.js │ ├── SoftwareMain.js │ ├── SoftwareOurServices.js │ └── SoftwareTechStack.js ├── css ├── app.css ├── appFooter.css ├── card.css ├── cookies.css ├── joinCommunity.css ├── notification.css ├── schedule.css ├── subTitleText.css └── techCard.css ├── fonts ├── Inter-Black.ttf ├── Inter-Bold.ttf ├── Inter-ExtraBold.ttf ├── Inter-ExtraLight.ttf ├── Inter-Light.ttf ├── Inter-Medium.ttf ├── Inter-Regular.ttf ├── Inter-SemiBold.ttf ├── Inter-Thin.ttf ├── Quicksand-Bold.ttf ├── Quicksand-Light.ttf ├── Quicksand-Medium.ttf ├── Quicksand-Regular.ttf └── Quicksand-SemiBold.ttf ├── images ├── Youtube-logo-dark.svg └── Youtube-logo.svg ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js └── setupTests.js /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Getting Started with Create React App 2 | 3 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). 4 | 5 | ## Available Scripts 6 | 7 | In the project directory, you can run: 8 | 9 | ### `npm start` 10 | 11 | Runs the app in the development mode.\ 12 | Open [http://localhost:3000](http://localhost:3000) to view it in your browser. 13 | 14 | The page will reload when you make changes.\ 15 | You may also see any lint errors in the console. 16 | 17 | ### `npm test` 18 | 19 | Launches the test runner in the interactive watch mode.\ 20 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. 21 | 22 | ### `npm run build` 23 | 24 | Builds the app for production to the `build` folder.\ 25 | It correctly bundles React in production mode and optimizes the build for the best performance. 26 | 27 | The build is minified and the filenames include the hashes.\ 28 | Your app is ready to be deployed! 29 | 30 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. 31 | 32 | ### `npm run eject` 33 | 34 | **Note: this is a one-way operation. Once you `eject`, you can't go back!** 35 | 36 | If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. 37 | 38 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. 39 | 40 | You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. 41 | 42 | ## Learn More 43 | 44 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). 45 | 46 | To learn React, check out the [React documentation](https://reactjs.org/). 47 | 48 | ### Code Splitting 49 | 50 | This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) 51 | 52 | ### Analyzing the Bundle Size 53 | 54 | This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) 55 | 56 | ### Making a Progressive Web App 57 | 58 | This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) 59 | 60 | ### Advanced Configuration 61 | 62 | This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) 63 | 64 | ### Deployment 65 | 66 | This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) 67 | 68 | ### `npm run build` fails to minify 69 | 70 | This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify) 71 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "solicy", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@emotion/react": "^11.11.4", 7 | "@emotion/styled": "^11.11.0", 8 | "@fingerprintjs/fingerprintjs": "^4.2.2", 9 | "@mui/icons-material": "^5.15.14", 10 | "@mui/material": "^5.15.14", 11 | "@mui/styled-engine-sc": "^6.0.0-alpha.18", 12 | "@testing-library/jest-dom": "^5.17.0", 13 | "@testing-library/react": "^13.4.0", 14 | "@testing-library/user-event": "^13.5.0", 15 | "axios": "^1.6.8", 16 | "fingerprintjs": "^0.5.3", 17 | "react": "^18.2.0", 18 | "react-dom": "^18.2.0", 19 | "react-router-dom": "^6.22.3", 20 | "react-router-hash-link": "^2.4.3", 21 | "react-scripts": "5.0.1", 22 | "styled-components": "^6.1.8", 23 | "web-vitals": "^2.1.4" 24 | }, 25 | "scripts": { 26 | "start": "react-scripts start", 27 | "build": "react-scripts build", 28 | "test": "react-scripts test", 29 | "eject": "react-scripts eject" 30 | }, 31 | "eslintConfig": { 32 | "extends": [ 33 | "react-app", 34 | "react-app/jest" 35 | ] 36 | }, 37 | "browserslist": { 38 | "production": [ 39 | ">0.2%", 40 | "not dead", 41 | "not op_mini all" 42 | ], 43 | "development": [ 44 | "last 1 chrome version", 45 | "last 1 firefox version", 46 | "last 1 safari version" 47 | ] 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoDev88/net-front/966832fc8e4eb44740798a5146ddb4a881bfb63e/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 12 | 13 | 17 | 18 | 27 |81 | We keep up with innovations and provide a wide range of services 82 | since the high demand for blockchain development services in the 83 | market. We grow exponentially, yet preserve the values that have 84 | driven us from the first day. We aim to inhale the benefits of 85 | blockchain and software technologies into our client's business 86 | ambitions. 87 |
88 |68 | Our primary focus goes on providing high-quality services. We 69 | take the best technological advancement has to offer to build 70 | effective solutions. 71 |
72 |109 | We know a thing or two about fast delivery. We solve even the 110 | most complex issues in a comparably short time. 111 |
112 |149 | Oh, we enjoy our work; every second of it brings us joy. 150 | Perhaps that’s why we are good at what we do. 151 |
152 |189 | We care about people: not just our clients, but all of the 190 | stakeholders a project might have. We put people's safety and 191 | well-being first. Our priority for those individuals is 192 | unprecedented. 193 |
194 |231 | Our team employs strict integrity policies: intellectual 232 | property protection, non-disclosure rules, and a no-cheating 233 | code are of great significance to us. 234 |
235 |272 | In this evolving industry, we try to keep up. Learning is key 273 | to many doors, and we aim to open a lot of those. 274 |
275 |Join Solicy!
16 |Years in industry
21 |successfully done
31 |41 |
51 |
send the request via contact form
{' '} 78 |send the request to contact@solicy.net
{' '} 81 |Use the Site in violation of these Terms
159 |162 | Copy, modify, create a derivative work from, reverse 163 | engineer or reverse assemble the Site, or otherwise attempt 164 | to discover any source code, or allow any third party to do 165 | so 166 |
167 |170 | Sell, assign, sublicense, distribute, commercially exploit, 171 | grant a security interest in or otherwise transfer any right 172 | in, or make available to a third party, the Content or Site 173 | in any way 174 |
175 |178 | Use the Site in any manner that damages, disables, 179 | overburdens, or impairs Site or interferes with any other 180 | party's use and enjoyment of the Site{' '} 181 |
182 |185 | Mirror or frame the Site or any part of it on any other web 186 | site or web page 187 |
188 |Attempt to gain unauthorized access to the Site
191 |194 | Probe, scan or test the vulnerability of the Site or any 195 | network connected to the Site, nor breach the security or 196 | authentication measures on the Site or any network connected 197 | to the Site 198 |
199 |202 | Take any action that imposes an unreasonable or 203 | disproportionately large load on the infrastructure of the 204 | Site or any systems or networks connected to the Site 205 |
206 |209 | Use any device, software or routine to interfere or attempt 210 | to interfere with the proper working of the Site 211 |
212 |