add meta titles to alert pages

This commit is contained in:
miloschwartz
2026-04-22 17:27:30 -07:00
parent d463a578c2
commit 6b83d3c3f1
3 changed files with 27 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ import { and, eq, isNotNull, or, inArray, sql } from "drizzle-orm";
import { decrypt } from "@server/lib/crypto";
import logger from "@server/logger";
import cache from "#private/lib/cache";
import { build } from "@server/build";
// Define the return type for clarity and type safety
export type CertificateResult = {

View File

@@ -0,0 +1,13 @@
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Edit Alert"
};
export default function EditAlertRuleLayout({
children
}: {
children: React.ReactNode;
}) {
return <>{children}</>;
}

View File

@@ -0,0 +1,13 @@
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Create Alert"
};
export default function CreateAlertRuleLayout({
children
}: {
children: React.ReactNode;
}) {
return <>{children}</>;
}