Skip to content

Commit

Permalink
add code of conduct
Browse files Browse the repository at this point in the history
  • Loading branch information
dronavallipranav committed May 15, 2024
1 parent 342d8db commit fccfb4c
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 10 deletions.
11 changes: 2 additions & 9 deletions .astro/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -261,15 +261,6 @@ declare module 'astro:content' {
collection: "events";
data: InferEntrySchema<"events">
} & { render(): Render[".md"] };
};
"resources": {
"README.md": {
id: "README.md";
slug: "readme";
body: string;
collection: "resources";
data: any
} & { render(): Render[".md"] };
};

};
Expand Down Expand Up @@ -356,6 +347,8 @@ declare module 'astro:content' {
collection: "coordinators";
data: InferEntrySchema<"coordinators">
};
};
"resources": {
};

};
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ const ROUTES: {
path: "/hours",
name: "Hours",
},
{
path: "/code-of-conduct",
name: "Code of Conduct",
},
];
---

Expand Down
24 changes: 24 additions & 0 deletions src/pages/code-of-conduct.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
import Layout from "../layouts/Layout.astro";
---

<Layout>
<h1 class="ml-2 mb-4 text-6xl font-bold">Code of Conduct</h1>
<h2 class="ml-2 mb-2 text-4xl font-semibold">Expected Behavior</h2>
<ul class="ml-4 mb-4 text-xl list-disc">
<li class="mb-2">Be Respectful - Pretty Obvious</li>
<li class="mb-2">Communicate with kindness and empathy.</li>
<li class="mb-2">Don't do anything that you wouldn't do on campus or any other school space.</li>
</ul>

<h2 class="ml-2 mb-2 text-4xl font-semibold">Unacceptable Behavior</h2>
<ul class="ml-4 mb-4 text-xl list-disc">
<li class="mb-2">Refrain from any form of harassment or discrimination.</li>
<li class="mb-2">Borrowing items from the UPL without a coordinator's permission</li>
</ul>

<ul class="ml-4 mb-4 text-xl list-disc">
<li class="mb-2">First few offenses will receive verbal warnings, repeat offenders can be removed as members at the discretion of the coordinators</li>
<li class="mb-2">Report any inappropriate behavior to the moderators at [email protected]</li>
</ul>
</Layout>

0 comments on commit fccfb4c

Please sign in to comment.