import { NextPageWithExtras } from "next"; import { WebhookInfo } from "@/components/WebhookInfo"; const SettingsPage: NextPageWithExtras = () => { return (

Settings

); }; SettingsPage.auth = true; export default SettingsPage;