Newer
Older
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
export function Safety() {
return (
<>
<div className="row mt-4">
<div className="col">
<div className="bd-callout bd-callout-info">
<h4>Safety and Security Award</h4>
<p>
Synthetic biology will need to be used safely and securely if
local people are to solve local problems all around the world. The
Safety and Security Committee is challenging teams to apply
biological engineering approaches to manage risks associated with
synthetic biology. Can you take the next step in incremental
progress towards knowledge, understanding, and tools that will
make the use of synthetic biology safer and more secure?
</p>
<p>
To compete for the Safety and Security award, please describe your
work on this page and also fill out the description on the{" "}
<a href="https://competition.igem.org/deliverables/judging-form">
judging form
</a>
.
</p>
<hr />
<p>
Please see the{" "}
<a href="https://competition.igem.org/judging/awards">
2024 Awards Page
</a>{" "}
for more information.
</p>
</div>
</div>
</div>
<div className="row mt-4">
<div className="col">
<h2>What should this page contain?</h2>
<hr />
<p>
On this page of your wiki, you should write about how you are
addressing any safety issues in your project. The wiki is a place
where you can go beyond the questions on the safety forms, and write
about whatever safety topics are most interesting in your project.
(You do not need to copy your safety forms onto this wiki page.)
</p>
<div className="bd-callout bd-callout-info">
<p>
Please visit the{" "}
<a href="https://responsibility.igem.org/safety-policies/introduction">
Safety Policies page
</a>{" "}
to find this year's safety requirements & deadlines, and to learn
about safe & responsible research in iGEM.
</p>
</div>
</div>
</div>
<div className="row mt-4">
<div className="col-lg-8">
<h2>Safe Project Design</h2>
<hr />
<p>
Does your project include any safety features? Have you made certain
decisions about the design to reduce risks? Write about them here!
For example:
</p>
<ul>
<li>Choosing a non-pathogenic chassis</li>
<li>Choosing parts that will not harm humans / animals / plants</li>
<li>
Substituting safer materials for dangerous materials in a
proof-of-concept experiment
</li>
<li>Including an "induced lethality" or "kill-switch" device</li>
</ul>
</div>
<div className="col-lg-4">
<h2>Safe Lab Work</h2>
<hr />
<p>
What safety procedures do you use every day in the lab? Did you
perform any unusual experiments, or face any unusual safety issues?
Write about them here!
</p>
</div>
</div>
</>
);
}