summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-ui/public
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2021-07-15 15:10:04 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2021-07-15 15:45:25 +0200
commit829be3c973f5ca837431c3ca10909412b675e668 (patch)
tree4228b7173d5a058f1a4f2fd77fb4691cf29bc90f /opendc-web/opendc-web-ui/public
parent1a2416043f0b877f570e89da74e0d0a4aff1d8ae (diff)
refactor(ui): Extract OpenDC landing page from web interface
This change extracts the landing page from the web interface in order to separate the development of the two. This allows the landing page to be developed independently of the actual OpenDC web application.
Diffstat (limited to 'opendc-web/opendc-web-ui/public')
-rw-r--r--opendc-web/opendc-web-ui/public/index.html70
1 files changed, 0 insertions, 70 deletions
diff --git a/opendc-web/opendc-web-ui/public/index.html b/opendc-web/opendc-web-ui/public/index.html
deleted file mode 100644
index 19b80e29..00000000
--- a/opendc-web/opendc-web-ui/public/index.html
+++ /dev/null
@@ -1,70 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>OpenDC</title>
-
- <!-- Standard meta tags -->
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <meta name="theme-color" content="#00A6D6">
- <meta name="description" content="Collaborative Datacenter Simulation and Exploration for Everybody">
- <meta name="author" content="@Large Research">
- <meta name="keywords" content="OpenDC, Datacenter, Simulation, Simulator, Collaborative, Distributed, Cluster">
- <link rel="manifest" href="/manifest.json">
- <link rel="shortcut icon" href="/favicon.ico">
-
- <!-- Twitter Card data -->
- <meta name="twitter:card" content="summary">
- <meta name="twitter:site" content="@LargeResearch">
- <meta name="twitter:title" content="OpenDC">
- <meta name="twitter:description" content="Collaborative Datacenter Simulation and Exploration for Everybody">
- <meta name="twitter:creator" content="@LargeResearch">
- <meta name="twitter:image" content="http://opendc.org/img/logo.png">
-
- <!-- OpenGraph meta tags -->
- <meta property="og:title" content="OpenDC">
- <meta property="og:site_name" content="OpenDC">
- <meta property="og:type" content="website">
- <meta property="og:image" content="http://opendc.org/img/logo.png">
- <meta property="og:url" content="http://opendc.org/">
- <meta property="og:description"
- content="OpenDC provides collaborative online datacenter modeling, diverse and effective datacenter
- simulation, and exploratory datacenter performance feedback.">
- <meta property="og:locale" content="en_US">
-
- <!-- Google meta tags -->
- <meta name="google-signin-client_id" content="%REACT_APP_OAUTH_CLIENT_ID%">
- <meta name="google-site-verification" content="YIR4LkQTv6WmOdWv8MkeiUKni-0Yu3WHylLp4VvUMig"/>
-
- <!-- CDN dependencies -->
- <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
- <script src="https://use.fontawesome.com/ece66a2e7c.js"></script>
-
- <!-- Google Analytics -->
- <script async src="https://www.googletagmanager.com/gtag/js?id=UA-84285092-3"></script>
- <script>
- window.dataLayer = window.dataLayer || []
-
- function gtag() {
- dataLayer.push(arguments)
- }
-
- gtag('js', new Date())
- gtag('config', 'UA-84285092-3')
- </script>
- <script>
- /* Dynamic app variables */
- window.config_overrides = {
- REACT_APP_API_BASE_URL: "$REACT_APP_API_BASE_URL",
- REACT_APP_OAUTH_CLIENT_ID: "$REACT_APP_OAUTH_CLIENT_ID",
- REACT_APP_SENTRY_DSN: "$REACT_APP_SENTRY_DSN",
- };
- </script>
-</head>
-<body>
-<noscript>
- You need to enable JavaScript to run this app.
-</noscript>
-<div id="root"></div>
-</body>
-</html>