Some checks failed
Build and Deploy Blog / build-and-deploy-local (push) Failing after 11s
Reviewed-on: #1
26 lines
576 B
TypeScript
26 lines
576 B
TypeScript
"use client";
|
|
|
|
import { useRouter } from "next/navigation";
|
|
|
|
export default function GoBackButton() {
|
|
const router = useRouter();
|
|
|
|
const handleBack = () => {
|
|
if (window.history.length > 1) {
|
|
router.back();
|
|
} else {
|
|
router.push("/");
|
|
}
|
|
};
|
|
|
|
return (
|
|
<button
|
|
onClick={handleBack}
|
|
aria-label="Go back to previous page"
|
|
className="px-4 py-1.5 text-sm bg-gradient-to-b from-blue-100 to-blue-200 border border-blue-300 rounded hover:from-blue-200 hover:to-blue-300 transition-colors"
|
|
>
|
|
← Go Back
|
|
</button>
|
|
);
|
|
}
|