1
+ import { Community } from "@/types/community" ;
2
+ import { reward } from "./reward" ;
3
+ import { colors } from "./colors" ;
4
+
5
+
6
+ export const metadata = {
7
+ invite_id : "abc123" ,
8
+ submissions : 5 ,
9
+ bestSubmissions : [ "submission1" , "submission2" ] ,
10
+ feedbacks : 10 ,
11
+ name : "Project XYZ" ,
12
+ issuedOn : "2024-01-29T12:00:00Z" ,
13
+ image : "image_url" ,
14
+ title : "Title of the project" ,
15
+ description : "Description of the project" ,
16
+ narrative : "Narrative of the project" ,
17
+ recipientName : "John Doe" ,
18
+ issuerName : "Jane Smith" ,
19
+ comment : "This is a comment" ,
20
+ linkToWork : "link_to_work" ,
21
+ submission : "submission_details" ,
22
+ } ;
23
+
24
+ export const community : Community = {
25
+ id : "ew-43" ,
26
+ ref : "community/ref" ,
27
+ created_at : new Date ( "2022-05-01T12:00:00Z" ) ,
28
+ updated_at : new Date ( "2022-05-01T12:00:00Z" ) ,
29
+ summary : "this is the summary" ,
30
+ icon : "public/img/communities/aeternity.svg" ,
31
+ name : "aeternity" ,
32
+ image : "public/img/communities/aeternity.svg" ,
33
+ colors : colors ,
34
+ slug : "ae" ,
35
+ active : true ,
36
+ description : "this is a aeternity community" ,
37
+ metadata,
38
+ timestamp : 182044800000 ,
39
+ rewards : [ reward ] ,
40
+ reward,
41
+ courses : 3 ,
42
+ duration : 4 ,
43
+ can_mint_certificates : true ,
44
+ challenges : 3
45
+ } ;
0 commit comments