redirecter for ao3 that adds opengraph metadata

why is this supposed to work

Changed files
+11 -1
+11 -1
main.jsx
···
const app = new Hono()
+
function App() {
+
return (
+
<html>
+
<body>
+
<Generator />
+
</body>
+
</html>
+
)
+
}
+
app.get("/", (c) => {
return c.html(<Home />)
})
app.get("/generator", (c) => {
-
render(<Generator />)
+
render(<App />, document.getElementById('root'))
})
app.get("/works/:workId", async (c) => {