1/* 2 * This file is part of CoCalc: Copyright © 2022 Sagemath, Inc. 3 * License: MS-RSL – see LICENSE.md for details 4 */ 5 6import Link from "next/link"; 7 8import type { JSX } from "react"; 9 10export function ssoNav(): JSX.Element[] { 11 return [ 12 <Link href={"/"}>Home</Link>, 13 <Link href={"/sso"}>Single Sign On</Link>, 14 ]; 15} 16 17