Change Redirects

This commit is contained in:
2024-04-30 18:50:07 +00:00
parent a604a82b82
commit 9e50c73c9e
3 changed files with 3 additions and 3 deletions
@@ -1,5 +1,5 @@
import { redirect } from 'next/navigation';
export default function Home() {
redirect("legacy/index.html")
redirect("/index.html")
return <div className="pl-6">Redirecting to legacy... <br/><br/> Please Wait</div>
}
@@ -1,5 +1,5 @@
import { redirect } from 'next/navigation';
export default function Home() {
redirect("legacy2021/index.html")
redirect("/index.html")
return <div className="pl-6">Redirecting to legacy... <br/><br/> Please Wait</div>
}
@@ -1,5 +1,5 @@
import { redirect } from 'next/navigation';
export default function Home() {
redirect("legacy2023/index.html")
redirect("/index.html")
return <div className="pl-6">Redirecting to legacy... <br/><br/> Please Wait</div>
}