radon games and discord emebed tags
This commit is contained in:
parent
bc73f5d3f3
commit
b81e686fc2
3 changed files with 19 additions and 1 deletions
|
|
@ -4,6 +4,13 @@
|
|||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="color-scheme" content="light dark" />
|
||||
<meta content="Nebula" property="og:title" />
|
||||
<meta
|
||||
content="A stunning and sleak web proxy frontend with support for hundreds of popular sites."
|
||||
property="og:description"
|
||||
/>
|
||||
<meta content="/logo.png" property="og:image" />
|
||||
<meta content="#191724" data-react-helmet="true" name="theme-color" />
|
||||
<script src="/uv/uv.bundle.js"></script>
|
||||
<script src="/uv/uv.config.js"></script>
|
||||
<script src="/dynamic/dynamic.config.js"></script>
|
||||
|
|
@ -20,7 +27,7 @@
|
|||
}
|
||||
</script>
|
||||
</head>
|
||||
<body style="margin: 0;">
|
||||
<body style="margin: 0">
|
||||
<div id="app"></div>
|
||||
<script type="module" src="/src/index.tsx"></script>
|
||||
</body>
|
||||
|
|
|
|||
9
src/pages/Radon.tsx
Normal file
9
src/pages/Radon.tsx
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import { HeaderRoute } from "../components/HeaderRoute";
|
||||
|
||||
export function Radon() {
|
||||
return (
|
||||
<HeaderRoute>
|
||||
<iframe src="/~/uv/https%3A%2F%2Fradon.games%2F" class="w-full h-full"></iframe>
|
||||
</HeaderRoute>
|
||||
)
|
||||
}
|
||||
|
|
@ -3,6 +3,7 @@ import { Home } from "./pages/Home";
|
|||
import { NotFound } from "./pages/_404.jsx";
|
||||
import { DiscordPage } from "./pages/discord.jsx";
|
||||
import { ProxyFrame } from "./pages/ProxyFrame.js";
|
||||
import { Radon } from "./pages/Radon";
|
||||
import { Settings } from "./pages/Settings/index.js";
|
||||
import { AboutBlank } from "./AboutBlank";
|
||||
import "./style.css";
|
||||
|
|
@ -15,6 +16,7 @@ export default function Routes() {
|
|||
<Router>
|
||||
<Route path="/" component={Home} />
|
||||
<Route path="/discord" component={DiscordPage} />
|
||||
<Route path="/games" component={Radon} />
|
||||
<Route path="/go/:url" component={ProxyFrame} />
|
||||
<Route path="/settings" component={Settings} />
|
||||
<Route path="/ab/:url" component={AboutBlank} />
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue