-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
57 lines (51 loc) · 1.16 KB
/
Copy pathtypes.ts
File metadata and controls
57 lines (51 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
export type Language = 'en' | 'he';
export enum PrototypeType {
LANDING_PAGE = 'Landing Page',
PORTFOLIO = 'Portfolio',
ECOMMERCE = 'E-commerce',
SAAS_DASHBOARD = 'SaaS Dashboard',
BLOG = 'Blog',
MEMORIAL = 'Memorial Site'
}
export interface SiteConfig {
name: string;
projectName?: string;
email?: string;
prototype: PrototypeType;
primaryColor: string;
secondaryColor: string;
accentColor?: string;
concept?: string;
description: string;
features: string[];
mongodbUri?: string;
backblazeKey?: string;
contactEmail: string;
language: Language;
prototypeType?: string;
// Memorial Specific Fields
deceasedName?: string;
dateOfPassing?: string;
hebrewDate?: string;
relationship?: string;
spiritualText?: string; // e.g., Psalms or Ashkava
appName?: string;
yearsLife?: string;
hebrewYears?: string;
motto?: string;
milestones?: Milestone[];
memorialImage?: string;
}
export interface Milestone {
year: string;
title: string;
description: string;
}
export interface GeneratedFile {
path: string;
content: string;
}
export interface GenerationResult {
files: GeneratedFile[];
instructions: string;
}