Hey is a decentralized and permissionless social media app built with Lens Protocol 馃尶
at main 131 lines 5.7 kB view raw
1import { memo } from "react"; 2import { Link } from "react-router"; 3import PageHeader from "@/components/Pages/PageHeader"; 4import PageLayout from "@/components/Shared/PageLayout"; 5import { H4 } from "@/components/Shared/UI"; 6 7const Guidelines = () => { 8 return ( 9 <PageLayout title="Community Guidelines"> 10 <PageHeader title="Community Guidelines" /> 11 <div className="relative"> 12 <div className="flex justify-center"> 13 <div className="relative mx-auto rounded-lg"> 14 <div className="!p-8 max-w-none text-gray-500 dark:text-gray-200"> 15 <div className="space-y-5"> 16 <p className="leading-7"> 17 To protect all users on Hey and to prevent spam, we put some 18 rules in place. Please read them carefully and remember them 19 whenever you post something on Hey or change your account. 20 </p> 21 </div> 22 {/* Safety begins */} 23 <H4 className="mt-8 mb-5">Safety</H4> 24 <div className="space-y-5"> 25 <p className="leading-7"> 26 You are not allowed to display, share, or promote any of the 27 following: 28 </p> 29 <ul className="list-inside list-disc space-y-2"> 30 <li>Violence</li> 31 <li>Abuse</li> 32 <li>Harassment</li> 33 <li>Hateful speech</li> 34 <li> 35 Harmful content (including self-harm and suicidal content) 36 </li> 37 <li>Illegal/unlawful content</li> 38 </ul> 39 </div> 40 {/* Safety ends */} 41 {/* Nudity begins */} 42 <H4 className="mt-8 mb-5">Nudity</H4> 43 <div className="space-y-5"> 44 <p className="leading-7"> 45 Hey is not a place to display, share or promote any form of 46 the following types of content: 47 </p> 48 <ul className="list-inside list-disc space-y-2"> 49 <li>Nudity</li> 50 <li>Sexual content</li> 51 </ul> 52 <p className="leading-7"> 53 Please try to keep Hey family-friendly (especially considering 54 all images, videos, audio, and links). 55 </p> 56 </div> 57 {/* Nudity ends */} 58 {/* Spam begins */} 59 <H4 className="mt-8 mb-5">Spam</H4> 60 <div className="space-y-5"> 61 <p className="leading-7"> 62 You are not allowed to use Hey as a platform to 63 </p> 64 <ul className="list-inside list-disc space-y-2"> 65 <li>Manipulate other users</li> 66 <li>Create a large number of accounts.</li> 67 <li> 68 Share excessive amounts of content of any type ("Spam") 69 </li> 70 <li>Airdrop farming</li> 71 </ul> 72 <p className="leading-7"> 73 If your account is suspended, you are not allowed to create 74 any new accounts. 75 </p> 76 </div> 77 {/* Spam ends */} 78 {/* Impersonation begins */} 79 <H4 className="mt-8 mb-5">Impersonation</H4> 80 <div className="space-y-5"> 81 <p className="leading-7"> 82 You are not allowed to impersonate other people on Hey. 83 </p> 84 <p className="leading-7"> 85 We understand that some of you like to create Accounts with 86 the names of popular persons as a parody. If you do something 87 like this, please use the "About me" section on your Account 88 to inform other users that your Account is a parody account. 89 You must do this in a way that can be easily seen and 90 understood by other users. 91 </p> 92 <H4 className="mt-8 mb-5">Suspension</H4> 93 <p className="leading-7"> 94 Account suspension applies only to Hey and not to Lens. 95 Decisions to suspend an account are made by the Hey team and 96 are not automated. 97 </p> 98 <p className="leading-7"> 99 We reserve the right to take down any account that violates 100 these guidelines, with or without prior notice. 101 </p> 102 <p className="font-bold leading-7"> 103 This is a Hey-specific decision / feature and not a 104 protocol-level decision / feature. 105 </p> 106 </div> 107 {/* Impersonation ends */} 108 {/* Copyright and Trademarks begins */} 109 <H4 className="mt-8 mb-5">Copyright and Trademarks</H4> 110 <p className="leading-7"> 111 You are not allowed to violate any intellectual property rights, 112 including copyright and trademark, of others. 113 </p> 114 {/* Copyright and Trademarks ends */} 115 {/* Feedback begins */} 116 <H4 className="mt-8 mb-5">Feedback</H4> 117 <p className="linkify leading-7"> 118 If you have any feedback on these rules or if you have any 119 questions, please{" "} 120 <Link to="mailto:support@hey.xyz">contact us</Link>. 121 </p> 122 {/* Feedback ends */} 123 </div> 124 </div> 125 </div> 126 </div> 127 </PageLayout> 128 ); 129}; 130 131export default memo(Guidelines);