Skip to content

Commit

Permalink
deploy: 98ded4f
Browse files Browse the repository at this point in the history
  • Loading branch information
Aayush259 committed Aug 9, 2024
1 parent 9aa771b commit 633b517
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 12 deletions.
32 changes: 32 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
<title>Tech Sphere</title>

<script type="text/javascript">
var pathSegmentsToKeep = 1;

var l = window.location;
l.replace(
l.protocol +
"//" +
l.hostname +
(l.port ? ":" + l.port : "") +
l.pathname
.split("/")
.slice(0, 1 + pathSegmentsToKeep)
.join("/") +
"/?/" +
l.pathname.slice(1).split("/").slice(pathSegmentsToKeep).join("/").replace(/&/g, "~and~") +
(l.search ? "&" + l.search.slice(1).replace(/&/g, "~and~") : "") +
l.hash
);
</script>
</head>

<body></body>

</html>
42 changes: 30 additions & 12 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,32 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/Tech-Sphere/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tech Sphere</title>
<script type="module" crossorigin src="/Tech-Sphere/assets/index-BBRHdr90.js"></script>
<link rel="stylesheet" crossorigin href="/Tech-Sphere/assets/index-u2YmacFB.css">
</head>
<body>
<div id="root"></div>
</body>
</html>

<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/Tech-Sphere/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tech Sphere</title>

<script type="text/javascript">
(function (l) {
if (l.search[1] === "/") {
var decoded = l.search
.slice(1)
.split("&")
.map(function (s) {
return s.replace(/~and~/g, "&");
})
.join("?");
window.history.replaceState(null, null, l.pathname.slice(0, -1) + decoded + l.hash);
}
})(window.location);
</script>
<script type="module" crossorigin src="/Tech-Sphere/assets/index-BBRHdr90.js"></script>
<link rel="stylesheet" crossorigin href="/Tech-Sphere/assets/index-u2YmacFB.css">
</head>

<body>
<div id="root"></div>
</body>

</html>

0 comments on commit 633b517

Please sign in to comment.