Skip to content

Commit

Permalink
try to fix redirects
Browse files Browse the repository at this point in the history
  • Loading branch information
kaycebasques committed Feb 24, 2024
1 parent 48be26a commit 9330d61
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
3 changes: 3 additions & 0 deletions src/components/Scriptify.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
---
<slot />
12 changes: 9 additions & 3 deletions src/content/blog/generative-ai.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ description: >
documentation. This post summarizes what's going on.
---

<script>
window.location.replace('https://technicalwriting.dev/genai-outlook-2023.html');
</script>
import Scriptify from "@components/Scriptify"

<Scriptify>
{
<script>
window.location.replace('https://technicalwriting.dev/genai-outlook-2023.html');
</script>
}
</Scriptify>
12 changes: 9 additions & 3 deletions src/content/blog/stateful-assistants.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ description: >
stateful docs site assistants are possible.
---

<script>
window.location.replace('https://technicalwriting.dev/stateful-assistants.html');
</script>
import Scriptify from "@components/Scriptify"

<Scriptify>
{
<script>
window.location.replace('https://technicalwriting.dev/stateful-assistants.html');
</script>
}
</Scriptify>

0 comments on commit 9330d61

Please sign in to comment.