|
| 1 | +import { motion } from "framer-motion"; |
| 2 | + |
| 3 | +export const LegalStuffPrivacy = () => { |
| 4 | + return ( |
| 5 | + <section |
| 6 | + className="lg:mb-16 w-full flex flex-col justify-center items-center bg-bgDark1" |
| 7 | + id="tos" |
| 8 | + > |
| 9 | + <div className="shape-divider-bottom-1665696614"> |
| 10 | + <svg |
| 11 | + data-name="Layer 1" |
| 12 | + xmlns="http://www.w3.org/2000/svg" |
| 13 | + viewBox="0 0 1200 120" |
| 14 | + preserveAspectRatio="none" |
| 15 | + className="bg-bgDark2 fill-bgDark2" |
| 16 | + > |
| 17 | + <path |
| 18 | + d="M1200 120L0 16.48 0 0 1200 0 1200 120z" |
| 19 | + className="bg-bgDark1 fill-bgDark1" |
| 20 | + ></path> |
| 21 | + </svg> |
| 22 | + </div> |
| 23 | + <motion.div |
| 24 | + initial={{ opacity: 0 }} |
| 25 | + whileInView={{ opacity: 1 }} |
| 26 | + viewport={{ once: true }} |
| 27 | + transition={{ duration: 0.5, delay: 0.2 }} |
| 28 | + > |
| 29 | + <div className=" 2xl:w-[1150px] xl:w-[1050px] md:w-4/5 flex justify-center bg-bgDark1 pt-12 lg:pt-24 pb-8 lg:pb-20 mx-auto flex-col"> |
| 30 | + <div className="w-3/4 lg:w-1/2 flex flex-col lg:mx-unset mx-auto"> |
| 31 | + <span className="block-subtitle">Privacy Policy</span> |
| 32 | + <h2 className="mt-10 mb-8 text-4xl lg:text-5xl block-big-title"> |
| 33 | + Privacy Policy |
| 34 | + </h2> |
| 35 | + <p className="text-secondaryText leading-loose mb-4"> |
| 36 | + Your privacy is important to us, which is why we've |
| 37 | + outlined what information is stored when using |
| 38 | + Feedr: |
| 39 | + </p> |
| 40 | + <ul className="mb-8 text-secondaryText leading-loose list-disc list-inside"> |
| 41 | + <li>What channels guilds are tracking</li> |
| 42 | + <li>What roles to ping when there's an upload</li> |
| 43 | + <li>What channel we should post uploads to</li> |
| 44 | + <li>The latest upload of each channel</li> |
| 45 | + </ul> |
| 46 | + <p className="text-secondaryText leading-loose mb-8"> |
| 47 | + That's it. No user or guild information is stored; |
| 48 | + just what is required for the bot to be functional. |
| 49 | + </p> |
| 50 | + <i className="text-secondaryText leading-loose"> |
| 51 | + Last updated 15th August 2024 |
| 52 | + </i> |
| 53 | + <button |
| 54 | + className="w-[210px] h-12 contained-button mr-10 " |
| 55 | + onClick={() => window.open("/invite/bot", "_blank")} |
| 56 | + aria-label="Get started" |
| 57 | + > |
| 58 | + Get Started |
| 59 | + </button> |
| 60 | + </div> |
| 61 | + </div> |
| 62 | + </motion.div> |
| 63 | + <div className="shape-divider-top-1665696661 w-full"> |
| 64 | + <svg |
| 65 | + data-name="Layer 1" |
| 66 | + xmlns="http://www.w3.org/2000/svg" |
| 67 | + viewBox="0 0 1200 120" |
| 68 | + preserveAspectRatio="none" |
| 69 | + className="bg-bgDark2 fill-bgDark2" |
| 70 | + > |
| 71 | + <path |
| 72 | + d="M1200 120L0 16.48 0 0 1200 0 1200 120z" |
| 73 | + className="bg-bgDark1 fill-bgDark1" |
| 74 | + ></path> |
| 75 | + </svg> |
| 76 | + </div> |
| 77 | + </section> |
| 78 | + ); |
| 79 | +}; |
0 commit comments