1/* 2 * This file is part of CoCalc: Copyright © 2021 Sagemath, Inc. 3 * License: MS-RSL – see LICENSE.md for details 4 */ 5 6import A from "components/misc/A"; 7 8export default function PaymentMethods() { 9 return ( 10 <div> 11 <div style={{ margin: "60px", fontSize: "15pt", textAlign: "center" }}> 12 <A href="/settings/payments">Visit the payments page instead.</A> 13 </div> 14 </div> 15 ); 16} 17 18