-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
48 changed files
with
4,134 additions
and
24,991 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
/coverage | ||
|
||
# production | ||
/build | ||
/dist | ||
|
||
# misc | ||
.DS_Store | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
/node_modules | ||
/build | ||
/dist | ||
/public/config.js | ||
/public/assets | ||
/public/css | ||
/public/vendor | ||
/vcs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="description" content="Broken Crystals" /> | ||
|
||
<!-- Favicons --> | ||
<link | ||
rel="apple-touch-icon" | ||
sizes="180x180" | ||
href="/favicons/apple-icon-180x180.png" | ||
/> | ||
<link | ||
rel="icon" | ||
type="image/png" | ||
sizes="192x192" | ||
href="/favicons/android-icon-192x192.png" | ||
/> | ||
<link | ||
rel="icon" | ||
type="image/png" | ||
sizes="32x32" | ||
href="/favicons/favicon-32x32.png" | ||
/> | ||
<link | ||
rel="icon" | ||
type="image/png" | ||
sizes="16x16" | ||
href="/favicons/favicon-16x16.png" | ||
/> | ||
<meta name="theme-color" content="#ffffff" /> | ||
<meta | ||
name="insight-app-sec-validation" | ||
content="38936a45-0c2c-4f3c-89c0-a26817f2a5a8" | ||
/> | ||
<script id="config" type="application/json" src="/api/config"></script> | ||
|
||
<!-- | ||
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="manifest.json" /> | ||
<title>Broken Crystals</title> | ||
<!-- Google Fonts --> | ||
<link | ||
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Roboto:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" | ||
rel="stylesheet" | ||
/> | ||
|
||
<!-- Vendor CSS Files --> | ||
<link | ||
href="/assets/vendor/bootstrap/css/bootstrap.min.css" | ||
rel="stylesheet" | ||
/> | ||
<link href="/assets/vendor/icofont/icofont.min.css" rel="stylesheet" /> | ||
<link | ||
href="/assets/vendor/boxicons/css/boxicons.min.css" | ||
rel="stylesheet" | ||
/> | ||
<link href="/assets/vendor/venobox/venobox.css" rel="stylesheet" /> | ||
<link href="/assets/vendor/aos/aos.css" rel="stylesheet" /> | ||
|
||
<!-- Fontfaces CSS--> | ||
<link | ||
href="/vendor/font-awesome-4.7/css/font-awesome.min.css" | ||
rel="stylesheet" | ||
media="all" | ||
/> | ||
<link | ||
href="/vendor/font-awesome-5/css/fontawesome-all.min.css" | ||
rel="stylesheet" | ||
media="all" | ||
/> | ||
<link | ||
href="/vendor/mdi-font/css/material-design-iconic-font.min.css" | ||
rel="stylesheet" | ||
media="all" | ||
/> | ||
|
||
<!-- Vendor CSS--> | ||
<link | ||
href="/vendor/animsition/animsition.min.css" | ||
rel="stylesheet" | ||
media="all" | ||
/> | ||
<link href="/vendor/wow/animate.css" rel="stylesheet" media="all" /> | ||
<link href="/vendor/slick/slick.css" rel="stylesheet" media="all" /> | ||
|
||
<!-- Main CSS--> | ||
<link href="/assets/css/style.css" rel="stylesheet" media="all" /> | ||
<link href="/css/theme.css" rel="stylesheet" media="all" /> | ||
</head> | ||
<body> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
|
||
<!-- Vendor JS Files --> | ||
<script src="/assets/vendor/jquery/jquery.min.js"></script> | ||
<script src="/assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script> | ||
<script src="/assets/vendor/jquery.easing/jquery.easing.min.js"></script> | ||
<script src="/assets/vendor/counterup/counterup.min.js"></script> | ||
<script src="/assets/vendor/isotope-layout/isotope.pkgd.min.js"></script> | ||
<script src="/assets/vendor/venobox/venobox.min.js"></script> | ||
<script src="/assets/vendor/aos/aos.js"></script> | ||
|
||
<!-- Vendor JS --> | ||
<script src="/vendor/slick/slick.min.js"></script> | ||
<script src="/vendor/wow/wow.min.js"></script> | ||
<script src="/vendor/animsition/animsition.min.js"></script> | ||
<script src="/vendor/counter-up/jquery.waypoints.min.js"></script> | ||
<script src="/vendor/counter-up/jquery.counterup.min.js"></script> | ||
|
||
<div id="root"></div> | ||
<script type="module" src="src/index.tsx"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.