fix: add missing backlink from webhooks documentation page to webhooks settings
This commit is contained in:
@@ -1,10 +1,17 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
|
import Link from "next/link";
|
||||||
|
import { ArrowLeft } from "lucide-react";
|
||||||
|
|
||||||
export const metadata: Metadata = {};
|
export const metadata: Metadata = {};
|
||||||
|
|
||||||
export default function WebhookDocsPage() {
|
export default function WebhookDocsPage() {
|
||||||
return (
|
return (
|
||||||
<div className="max-w-3xl mx-auto space-y-10 py-8">
|
<div className="max-w-3xl mx-auto space-y-10 py-8">
|
||||||
|
<Link href="/settings/webhooks" className="inline-flex items-center gap-1.5 text-sm text-muted-foreground hover:text-foreground">
|
||||||
|
<ArrowLeft className="h-3.5 w-3.5" />
|
||||||
|
Back to Webhooks
|
||||||
|
</Link>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<h1 className="text-2xl font-bold mb-2">Webhook Documentation</h1>
|
<h1 className="text-2xl font-bold mb-2">Webhook Documentation</h1>
|
||||||
<p className="text-muted-foreground">
|
<p className="text-muted-foreground">
|
||||||
|
|||||||
Reference in New Issue
Block a user