added redirects to new docs

This commit is contained in:
2024-05-15 19:50:58 +02:00
parent 9c50ceb1fe
commit 3271920179
18 changed files with 6392 additions and 532 deletions

View File

@@ -0,0 +1,28 @@
---
interface Props {
href: string;
}
const { href } = Astro.props;
import "../styles/main.scss";
import "../styles/callout.scss";
import { ViewTransitions } from "astro:transitions";
---
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="darkreader-lock" />
<meta name="theme-color" content="#1c1427" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta http-equiv="refresh" content={"0; url=" + href} />
<title>Redirecting... | vaporvee's Website</title>
<ViewTransitions />
</head>
<body>
<a href={href}>Click if not redirecting</a>
</body>
</html>