chore: standardize security and quality foundations
Magent CI/CD / verify (push) Failing after 9m34s
Magent CI/CD / deploy-beta (push) Skipped

This commit is contained in:
2026-09-17 20:03:47 +12:00
parent 5639dbcb83
commit f852e7c941
127 changed files with 17928 additions and 10741 deletions
+8 -8
View File
@@ -1,12 +1,12 @@
import type { ReactNode } from 'react'
import type { ReactNode } from "react";
type PageHeadingProps = {
title: string
description?: string
eyebrow?: string
leading?: ReactNode
actions?: ReactNode
}
title: string;
description?: string;
eyebrow?: string;
leading?: ReactNode;
actions?: ReactNode;
};
/** A flat, shared page title. Panels belong to the content below it. */
export default function PageHeading({ title, description, eyebrow, leading, actions }: PageHeadingProps) {
@@ -22,5 +22,5 @@ export default function PageHeading({ title, description, eyebrow, leading, acti
</div>
{actions && <div className="page-heading-actions">{actions}</div>}
</header>
)
);
}