16 lines
399 B
TypeScript
16 lines
399 B
TypeScript
"use client"
|
|
|
|
import { useEffect } from "react"
|
|
|
|
export default function PresentationsRedirect() {
|
|
useEffect(() => {
|
|
window.location.replace(`https://slides.jeffemmett.com/${window.location.hash}`)
|
|
}, [])
|
|
|
|
return (
|
|
<div className="flex items-center justify-center min-h-screen bg-background text-muted-foreground">
|
|
<p>Redirecting to slides.jeffemmett.com...</p>
|
|
</div>
|
|
)
|
|
}
|