forked from Lilly-Protocol/lily-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite.ts
More file actions
56 lines (50 loc) · 1.15 KB
/
Copy pathsite.ts
File metadata and controls
56 lines (50 loc) · 1.15 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
export type RouteSection =
"marketing" | "auth" | "legal" | "docs" | "dashboard";
export type StaticSiteRoute =
| "/"
| "/about"
| "/contribute"
| "/blog"
| "/changelog"
| "/ecosystem"
| "/security"
| "/grants"
| "/careers"
| "/contact"
| "/signin"
| "/signup"
| "/terms"
| "/privacy"
| "/cookies"
| "/docs"
| "/status"
| "/app"
| "/app/agents"
| "/app/payments"
| "/app/wallets"
| "/app/activity"
| "/app/developers"
| "/app/settings";
export type DynamicSiteRoute = '/app/agents/[id]';
export type SiteRoute = StaticSiteRoute | DynamicSiteRoute;
export type RouteScaffold = {
readonly id: string;
readonly title: string;
readonly path: SiteRoute;
readonly section: RouteSection;
readonly purpose: string;
readonly figmaScope: string;
readonly implementationAreas: readonly string[];
readonly includeInSitemap?: boolean;
readonly updatedAt?: string;
};
export type SitePage = {
readonly path: StaticSiteRoute;
readonly priority: number;
readonly updatedAt?: string;
};
export type SectionDefinition = {
readonly key: RouteSection;
readonly label: string;
readonly description: string;
};