Skip to content

Commit

Permalink
Guidelines page
Browse files Browse the repository at this point in the history
  • Loading branch information
meisullum committed Dec 13, 2024
1 parent 92626f7 commit 1b7fd7c
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 0 deletions.
56 changes: 56 additions & 0 deletions apps/web/src/app/guidelines/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
import Link from "next/link";

export default function GuidelinesPage() {
return (
<div className="mx-auto grid h-full w-screen max-w-7xl pt-20">
<div className="flex flex-col">
<h1 className="py-8 font-eb text-6xl font-black text-utsa-blue">
Community Guidelines
</h1>

<h4 className="font-black text-utsa-blue">
Treat Everyone With Respect
</h4>
<p className="mb-4 pt-2">
Please treat everyone with respect. This website may be
utilized for anonymous reporting of professors and advisors,
however, we must address everyone politely and respectfully.
</p>

<h4 className="font-black text-utsa-blue">
Constructive Criticism and Actionable Feedback
</h4>
<p className="mb-4 pt-2">
NewBook's goal is to provide feedback and constructive
criticism to others. Please avoid insults, attacks, or
derogatory remarks. Please focus on including actionable
feedback and avoid vague comments.
</p>

<h4 className="font-black text-utsa-blue">Focus on Content</h4>
<p className="mb-4 pt-2">
Focus on content rather than the person themself!
</p>

<h4 className="font-black text-utsa-blue">Tone and Language</h4>
<p className="mb-4 pt-2">
Be mindful of keeping a respecetful tone and language.
</p>

<h4 className="font-black text-utsa-blue">
Respect Privacy and Boundaries
</h4>
<p className="mb-4 pt-2">
Please avoid sharing personal information without consent.
</p>

<h4 className="font-black text-utsa-blue">Our Team</h4>
<p className="mb-4 pt-2">
Our team will aim to moderate reports and ensure that our
community continues to stay positive and encouraging to
everyone on our website.
</p>
</div>
</div>
);
}
1 change: 1 addition & 0 deletions apps/web/src/components/shared/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export default function Navbar() {
<div className="hidden items-center justify-end gap-x-4 font-eb text-lg font-semibold text-utsa-blue md:flex">
<Link href={"https://acmutsa.org/"}>ACM</Link>
<Link href={"/about"}>About Us</Link>
<Link href={"/guidelines"}>Guidelines</Link>
<Link href={"/policy"}>Policies</Link>
<Suspense
fallback={
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@ export function SidebarFooterContent() {
</a>
</SidebarMenuButton>
</SidebarMenuItem>
<SidebarMenuItem>
<SidebarMenuButton asChild>
<a href="/guidelines">
<Users className="mr-2 h-4 w-4" />
Guidelines
</a>
</SidebarMenuButton>
</SidebarMenuItem>
<SidebarMenuItem>
<SidebarMenuButton asChild>
<a href="/policy">
Expand Down

0 comments on commit 1b7fd7c

Please sign in to comment.