aboutsummaryrefslogtreecommitdiff
path: root/public/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'public/index.html')
-rw-r--r--public/index.html78
1 files changed, 0 insertions, 78 deletions
diff --git a/public/index.html b/public/index.html
deleted file mode 100644
index af6ea12..0000000
--- a/public/index.html
+++ /dev/null
@@ -1,78 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
- <head>
- <meta charset="utf-8" />
- <link rel="icon" href="%PUBLIC_URL%/superthumb.jpg" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta name="theme-color" content="#0f0f0f" />
- <meta name="author" content="Fuwn" />
- <meta name="description" content="Fuwn, Full-stack Node.js Developer, Reverse Engineer, YouTuber." />
- <link rel="apple-touch-icon" href="%PUBLIC_URL%/superthumb.png" />
- <!-- manifest.json provides metadata used when your web app is installed on a
- user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ -->
- <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
-
- <script src="https://code.jquery.com/jquery-3.4.1.js"></script>
-
- <!-- Bootstrap CDNs -->
- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
- <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
-
- <!-- Google Fonts -->
- <link href="https://fonts.googleapis.com/css?family=Roboto+Mono:100,100i,300,300i,400,400i,500,500i,700,700i" rel="stylesheet">
-
- <!-- Terminal Effects -->
- <script src="js/t.min.js"></script>
-
- <!-- On-scroll Animations -->
- <link rel="stylesheet" href="animate.css">
- <script src="js/wow.min.js"></script>
-
- <!-- <title></title> -->
- </head>
- <body>
- <noscript>You need to enable JavaScript to run this app.</noscript>
- <div id="root"></div>
-
- <!-- Greensock CDN -->
- <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.2/TweenMax.min.js"></script>
-
- <script type="text/javascript">
- window.addEventListener('load', function() {
- $("#toggle").click(function() {
- $(this).toggleClass('on');
- $("#resize").toggleClass("active");
- });
-
- $("#resize ul li a").click(function() {
- $(this).toggleClass('on');
- $("#resize").toggleClass("active");
- });
-
- $(".close-btn").click(function() {
- $(this).toggleClass('on');
- $("#resize").toggleClass("active");
- });
-
- TweenMax.from("#brand", 1, {
- delay: 0.4,
- y: 10,
- opacity: 0,
- ease: Expo.easeInOut
- });
-
- TweenMax.staggerFrom("#menu li a", 1, {
- delay: 0.4,
- opacity: 0,
- ease: Expo.easeInOut
- }, 0.1);
-
- new WOW().init();
- });
-
- document.addEventListener('contextmenu', function(e) {
- e.preventDefault();
- }, false);
- </script>
- </body>
-</html>