Initial MRP foundation scaffold

This commit is contained in:
2026-03-14 14:44:40 -05:00
commit ee833ed074
77 changed files with 10218 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
export interface BrandTheme {
primaryColor: string;
accentColor: string;
surfaceColor: string;
fontFamily: string;
logoFileId: string | null;
}
export interface CompanyProfileDto {
id: string;
companyName: string;
legalName: string;
email: string;
phone: string;
website: string;
taxId: string;
addressLine1: string;
addressLine2: string;
city: string;
state: string;
postalCode: string;
country: string;
theme: BrandTheme;
logoUrl: string | null;
updatedAt: string;
}
export type CompanyProfileInput = Omit<CompanyProfileDto, "id" | "logoUrl" | "updatedAt">;