Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.

Commit bc02da4

Browse files
committed
Create policy
1 parent 71036c0 commit bc02da4

2 files changed

Lines changed: 21 additions & 0 deletions

File tree

src/pages/privacy/privacy.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta http-equiv="refresh" content="0; url=/policy.html">
7+
<title>Redirecting...</title>
8+
</head>
9+
<body>
10+
<noscript>
11+
<p>You are being redirected to our <a href="/policy.html">Policy Page</a>.</p>
12+
</noscript>
13+
<p>If you are not redirected automatically, please click <a href="/policy.html">here</a>.</p>
14+
</body>
15+
</html>

src/pages/privacy/privacy.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
const redirectToPolicy = (): void => {
2+
const targetPath: string = "/policy.html";
3+
window.location.replace(targetPath);
4+
};
5+
6+
redirectToPolicy();

0 commit comments

Comments
 (0)