Adds Underwriter's carousel and admin features

This commit is contained in:
2026-06-23 06:50:08 +00:00
parent 9b95bef9c6
commit 2295f841c9
19 changed files with 1018 additions and 8 deletions
+9
View File
@@ -0,0 +1,9 @@
export interface Underwriter {
id: number;
name: string;
logo_url: string | null;
description: string;
website_url: string | null;
display_order: number;
active: boolean;
}