mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
Docs: add redirect from /usage/introduction to /usage/setup
Co-Authored-By: Craft Agent <agents-noreply@craft.do>
This commit is contained in:
12
docs/app/usage/introduction/page.tsx
Normal file
12
docs/app/usage/introduction/page.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
"use client";
|
||||
|
||||
import { useEffect } from "react";
|
||||
import { useRouter } from "next/navigation";
|
||||
|
||||
export default function Page() {
|
||||
const router = useRouter();
|
||||
useEffect(() => {
|
||||
router.replace("/usage/setup/");
|
||||
}, [router]);
|
||||
return null;
|
||||
}
|
||||
Reference in New Issue
Block a user