Skip to content

Commit

Permalink
release version v1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MohdSaleh committed Aug 3, 2023
1 parent 52093ef commit 8440145
Show file tree
Hide file tree
Showing 1,820 changed files with 339,339 additions and 2,451 deletions.
Binary file modified .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"react-draggable": "^4.4.5",
"react-modal": "^3.16.1",
"react-scripts": "5.0.1",
"react-toastify": "^9.1.3",
"socket.io-client": "^4.6.1",
"tradingview-api": "^1.0.2"
},
Expand Down
Binary file added client/public/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/public/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
66 changes: 66 additions & 0 deletions client/public/assets/replay.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
68 changes: 68 additions & 0 deletions client/public/assets/replay_active.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/public/assets/user-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions client/public/assets/user-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/public/assets/xcule_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
63 changes: 63 additions & 0 deletions client/public/custom/css/base.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');


.loading-indicator {

background-image: url(/assets/xcule_icon.png);
background-position: center;
background-repeat: no-repeat;
background-size: 33px;


}

.tv-spinner, div[role="progressbar"] {
border-top-color: #298678;
border-left-color: #298678;

border-right: unset;
border-top: unset;

left: calc(50% - 0.53em);
top: calc(50% - 0.50em);

font-size: 95px !important;
border-width: 5px;

}

.navbar-replay-icon-container {
display: flex;
flex-direction: row;
align-items: center;
cursor: pointer;
}

.navbar-replay-icon-container.active {
color: #298678;
}

.navbar-replay-icon-container .replay-icon {
height: 23px;
width: 26px;
}

.overlay {
position: absolute;
top: 0;
bottom: 0;
right: 0;
background-color: rgba(250, 250, 250, 0.65);
/* background-color: rgba(41, 134, 120, 0.65); */
pointer-events: none; /* Allows mouse events to pass through the overlay */
/* border-left: 1px dotted #298678; */
}

#XCULE-USER {
font-family: 'TrebuchetMS-Bold', 'Trebuchet MS', 'Roboto', sans-serif;
font-size: 20px;
font-weight: 500;
letter-spacing: 0.6px;
fill: #000000;
color: #000000;
}
Binary file added client/public/eye.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/public/favicon.ico
Binary file not shown.
Binary file added client/public/fonts/trebuc.ttf
Binary file not shown.
52 changes: 39 additions & 13 deletions client/public/index.html
Original file line number Diff line number Diff line change
@@ -1,24 +1,50 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">

<link rel="manifest" href="/site.webmanifest">
<script src="%PUBLIC_URL%/datafeeds/udf/dist/bundle.js"></script>
<title>Charting Library React Demo</title>
<script type="module">
// Import the functions you need from the SDKs you need
import { initializeApp } from "https://www.gstatic.com/firebasejs/10.0.0/firebase-app.js";
import { getAnalytics } from "https://www.gstatic.com/firebasejs/10.0.0/firebase-analytics.js";
// TODO: Add SDKs for Firebase products that you want to use
// https://firebase.google.com/docs/web/setup#available-libraries

// Your web app's Firebase configuration
// For Firebase JS SDK v7.20.0 and later, measurementId is optional
const firebaseConfig = {
apiKey: "AIzaSyCZC3_tW0qz3EXnrj0MR2MUwoM8to3aLzA",
authDomain: "xculewebapp.firebaseapp.com",
projectId: "xculewebapp",
storageBucket: "xculewebapp.appspot.com",
messagingSenderId: "493422102147",
appId: "1:493422102147:web:eb4207636ff0bc6ef0bdb6",
measurementId: "G-L5B96PEBZ4"
};

// Initialize Firebase
const app = initializeApp(firebaseConfig);
const analytics = getAnalytics(app);
</script>
<title>Xcule</title>
<!-- <style>
@font-face {
font-family: 'trebuc';
src: url('fonts/trebuc.ttf') format('truetype');
}
</style> -->
<!-- <link rel="stylesheet" href="/styles.css"> -->
</head>
<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
</body>

You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.

To begin the development, run `npm start`.
To create a production bundle, use `npm run build`.
-->
</body>
</html>
Binary file added client/public/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/public/logo_vilot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions client/public/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
Binary file added client/public/trebuc.ttf
Binary file not shown.
Binary file added client/public/trebuc.woff
Binary file not shown.
Binary file added client/public/view.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 8440145

Please sign in to comment.