Hey is a decentralized and permissionless social media app built with Lens Protocol 馃尶
at main 36 lines 1.3 kB view raw
1import { memo } from "react"; 2import { Link } from "react-router"; 3import PageLayout from "@/components/Shared/PageLayout"; 4import { Card, H3 } from "@/components/Shared/UI"; 5 6const Support = () => { 7 return ( 8 <PageLayout title="Support"> 9 <Card className="flex flex-col items-center p-8"> 10 <div className="linkify max-w-xl text-center"> 11 <H3>Support</H3> 12 <p className="mt-3"> 13 For assistance, please email us at{" "} 14 <Link to="mailto:support@hey.xyz">support@hey.xyz</Link> with a 15 detailed description of your issue and how we can assist you. 16 </p> 17 <div className="my-5 flex flex-col space-y-2"> 18 <Link to="/guidelines">Community Guidelines</Link> 19 <Link to="/terms">Terms of Service</Link> 20 <Link to="/privacy">Hey Privacy Policy</Link> 21 <Link target="_blank" to="https://www.lens.xyz/privacy"> 22 Lens Privacy Policy 23 </Link> 24 <Link to="/copyright">Copyright Policy</Link> 25 </div> 26 <p className="text-gray-500 text-sm"> 27 Send any legal requests to{" "} 28 <Link to="mailto:legal@hey.xyz">legal@hey.xyz</Link> 29 </p> 30 </div> 31 </Card> 32 </PageLayout> 33 ); 34}; 35 36export default memo(Support);